/* HaberAjans v2 - Professional News Portal */
:root {
    --primary: #0d1b2a;
    --secondary: #1b263b;
    --accent: #c1121f;
    --accent-dark: #9b1018;
    --text: #1a1a1a;
    --text-light: #5a5a5a;
    --bg: #f5f5f5;
    --white: #ffffff;
    --border: #e0e0e0;
    --shadow: 0 2px 20px rgba(0,0,0,0.06);
    --shadow-lg: 0 15px 50px rgba(0,0,0,0.1);
    --radius: 4px;
    --font-title: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

a { color: inherit; text-decoration: none; transition: color 0.2s; }
img { max-width: 100%; height: auto; }

/* Top Bar */
.top-bar {
    background: var(--primary);
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-left { display: flex; gap: 20px; opacity: 0.8; }
.top-bar-right { display: flex; align-items: center; gap: 15px; }
.lang-switcher { display: flex; gap: 8px; }
.lang-switcher a {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    opacity: 0.7;
}
.lang-switcher a.active, .lang-switcher a:hover { opacity: 1; background: rgba(255,255,255,0.1); }
.btn-login {
    background: var(--accent);
    color: #fff;
    padding: 6px 16px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
}
.btn-login:hover { background: var(--accent-dark); }

/* Header */
.header {
    background: var(--white);
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}
.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-title);
    font-size: 28px;
    font-weight: 900;
    border-radius: 8px;
}
.logo-text strong {
    display: block;
    font-family: var(--font-title);
    font-size: 22px;
    color: var(--primary);
}
.logo-text small {
    font-size: 12px;
    color: var(--text-light);
}
.main-nav {
    display: flex;
    gap: 5px;
}
.main-nav a {
    padding: 10px 16px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text);
    border-radius: 6px;
    transition: all 0.2s;
}
.main-nav a:hover, .main-nav a.active {
    background: var(--primary);
    color: #fff;
}
.header-actions { display: flex; gap: 10px; }
.header-actions button {
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    color: var(--text);
    border-radius: 6px;
}
.header-actions button:hover { background: var(--bg); }
.mobile-menu-toggle { display: none; }

/* Breaking News Bar */
.breaking-bar {
    background: var(--accent);
    color: #fff;
    padding: 12px 0;
    overflow: hidden;
}
.breaking-bar .container {
    display: flex;
    align-items: center;
    gap: 20px;
}
.breaking-label {
    background: #fff;
    color: var(--accent);
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.breaking-ticker-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
}
.breaking-ticker {
    display: flex;
    gap: 50px;
    animation: ticker 25s linear infinite;
    white-space: nowrap;
}
.breaking-ticker a {
    font-size: 15px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 50px;
}
.breaking-ticker a::after {
    content: '•';
    margin-left: 50px;
    opacity: 0.5;
}
.breaking-ticker a:last-child::after {
    display: none;
}
.breaking-ticker a:hover { text-decoration: underline; }
@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Main Content */
.main-content { padding: 30px 0; }
.content-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 30px;
}
.content-main { min-width: 0; }

/* Featured Slider */
.featured-section { margin-bottom: 40px; }
.featured-slider {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--primary);
    aspect-ratio: 16/9;
    max-height: 500px;
}
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s;
}
.slide.active { opacity: 1; }
.slide-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.slide-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 30%, rgba(0,0,0,0.8));
}
.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    color: #fff;
    z-index: 1;
}
.category-badge {
    display: inline-block;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 15px;
}
.slide-content h2 {
    font-family: var(--font-title);
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 12px;
}
.slide-content h2 a:hover { text-decoration: underline; }
.slide-content p {
    font-size: 16px;
    opacity: 0.9;
    max-width: 600px;
}
.slide-meta {
    margin-top: 15px;
    font-size: 13px;
    opacity: 0.7;
    display: flex;
    gap: 20px;
}
.slider-dots {
    position: absolute;
    bottom: 20px;
    right: 40px;
    display: flex;
    gap: 8px;
    z-index: 2;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}
.dot.active, .dot:hover {
    background: #fff;
    transform: scale(1.2);
}

/* Live Section */
.live-section {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}
.live-section .section-header h3 {
    display: flex;
    align-items: center;
    gap: 10px;
}
.live-dot {
    width: 10px;
    height: 10px;
    background: #e74c3c;
    border-radius: 50%;
    animation: livePulse 1.5s infinite;
}
@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}
.live-embed {
    aspect-ratio: 16/9;
    background: #000;
    border-radius: var(--radius);
    overflow: hidden;
    margin: 15px 0;
}
.live-embed iframe { width: 100%; height: 100%; }
.live-section h4 { font-size: 16px; }

/* Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
}
.section-header h3 {
    font-family: var(--font-title);
    font-size: 20px;
    padding-left: 15px;
    border-left: 4px solid var(--accent);
}
.see-all {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
}
.see-all:hover { text-decoration: underline; }

/* Category Section */
.category-section {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

/* Article Grid */
.article-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.article-card {
    display: flex;
    flex-direction: column;
}
.article-card.large {
    grid-column: span 2;
}
.article-card.large .article-image {
    aspect-ratio: 16/9;
}
.article-image {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--border);
}
.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.article-card:hover .article-image img { transform: scale(1.05); }
.article-image .category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
}
.article-content { padding: 15px 0 0; }
.article-content h4 {
    font-family: var(--font-title);
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 8px;
}
.article-card.large .article-content h4 { font-size: 22px; }
.article-content h4 a:hover { color: var(--accent); }
.article-content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 10px;
}
.article-meta {
    font-size: 12px;
    color: var(--text-light);
    display: flex;
    gap: 15px;
}

/* Podcast Section */
.podcast-section {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}
.podcast-list { display: flex; flex-direction: column; gap: 15px; }
.podcast-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: var(--bg);
    border-radius: var(--radius);
}
.podcast-cover {
    width: 80px;
    height: 80px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}
.podcast-cover img { width: 100%; height: 100%; object-fit: cover; }
.play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.4);
    color: #fff;
    border: none;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s;
}
.podcast-item:hover .play-btn { opacity: 1; }
.podcast-info h4 { font-size: 15px; margin-bottom: 5px; }
.podcast-info p { font-size: 13px; color: var(--text-light); }

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 25px; }
.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
}
.widget-title {
    font-family: var(--font-title);
    font-size: 16px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
}

/* Authors Widget */
.authors-list { display: flex; flex-direction: column; gap: 12px; }
.author-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: var(--radius);
    transition: background 0.2s;
}
.author-item:hover { background: var(--bg); }
.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--border);
}
.author-info strong { display: block; font-size: 14px; margin-bottom: 2px; }
.author-info small { font-size: 12px; color: var(--text-light); }
.btn-outline {
    display: block;
    text-align: center;
    padding: 10px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.2s;
}
.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Popular Widget */
.popular-list { display: flex; flex-direction: column; gap: 10px; }
.popular-item {
    display: flex;
    gap: 15px;
    padding: 12px;
    border-radius: var(--radius);
    transition: background 0.2s;
}
.popular-item:hover { background: var(--bg); }
.rank {
    width: 28px;
    height: 28px;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    border-radius: 6px;
    flex-shrink: 0;
}
.popular-content h4 { font-size: 14px; line-height: 1.4; margin-bottom: 4px; }
.popular-content .views { font-size: 12px; color: var(--text-light); }

/* Categories Widget */
.categories-list { display: flex; flex-direction: column; gap: 8px; }
.category-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: var(--radius);
    transition: background 0.2s;
}
.category-item:hover { background: var(--bg); }
.cat-icon {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.cat-name { font-size: 14px; font-weight: 500; }

/* Newsletter Widget */
.newsletter-widget p { font-size: 14px; color: var(--text-light); margin-bottom: 15px; }
.newsletter-form input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    margin-bottom: 10px;
}
.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent);
}
.newsletter-form button {
    width: 100%;
    padding: 12px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.newsletter-form button:hover { background: var(--accent-dark); }

/* Forum Widget */
.forum-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius);
    font-weight: 600;
    transition: background 0.2s;
}
.forum-link:hover { background: var(--secondary); }

/* Footer */
.footer {
    background: var(--primary);
    color: #fff;
    padding: 60px 0 0;
    margin-top: 50px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { margin-bottom: 15px; }
.footer-brand .logo-icon { background: var(--accent); }
.footer-brand p { font-size: 14px; opacity: 0.7; margin-bottom: 20px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background 0.2s;
}
.social-links a:hover { background: var(--accent); }
.footer-links h4, .footer-contact h4 {
    font-size: 16px;
    margin-bottom: 20px;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    font-size: 14px;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.footer-links a:hover { opacity: 1; }
.footer-contact p { font-size: 14px; opacity: 0.7; margin-bottom: 8px; }
.footer-bottom {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    opacity: 0.6;
}
.footer-bottom-links { display: flex; gap: 20px; }

/* Responsive */
@media (max-width: 1024px) {
    .content-grid { grid-template-columns: 1fr; }
    .sidebar { display: grid; grid-template-columns: repeat(2, 1fr); }
    .main-nav { display: none; }
    .mobile-menu-toggle { display: block; }
}
@media (max-width: 768px) {
    .top-bar-left { display: none; }
    .slide-content h2 { font-size: 22px; }
    .slide-content { padding: 20px; }
    .article-grid { grid-template-columns: 1fr; }
    .article-card.large { grid-column: span 1; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .sidebar { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .header .logo-text { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 10px; }
}


/* Article Detail Page */
.article-detail { max-width: 800px; }
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 25px;
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { opacity: 0.5; }
.article-header { margin-bottom: 30px; }
.article-header .category-badge { margin-bottom: 15px; }
.article-header h1 {
    font-family: var(--font-title);
    font-size: 38px;
    line-height: 1.25;
    margin-bottom: 20px;
    color: var(--primary);
}
.article-meta-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-info img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}
.author-info strong { display: block; font-size: 15px; }
.author-info span { font-size: 13px; color: var(--text-light); }
.article-stats {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--text-light);
}
.article-stats span {
    display: flex;
    align-items: center;
    gap: 6px;
}
.article-featured-image {
    margin: 0 0 30px;
    border-radius: var(--radius);
    overflow: hidden;
}
.article-featured-image img {
    width: 100%;
    height: auto;
}
.article-body {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text);
}
.article-body p { margin-bottom: 20px; }
.article-share {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 25px 0;
    border-top: 1px solid var(--border);
    margin-top: 30px;
}
.article-share span { font-weight: 600; font-size: 14px; }
.share-btn {
    padding: 8px 16px;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}
.share-btn.twitter { background: #1da1f2; }
.share-btn.facebook { background: #1877f2; }
.share-btn.whatsapp { background: #25d366; }
.share-btn:hover { opacity: 0.9; }
.author-box {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--bg);
    border-radius: var(--radius);
    margin: 30px 0;
}
.author-box img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}
.author-box-content h4 { font-size: 18px; margin-bottom: 8px; }
.author-box-content p { font-size: 14px; color: var(--text-light); margin-bottom: 10px; }
.author-box-content a { font-size: 14px; color: var(--accent); font-weight: 600; }
.related-articles { margin-top: 80px !important; }
.related-articles h3 {
    font-family: var(--font-title);
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.related-item {
    display: block;
}
.related-item img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 10px;
}
.related-item h4 {
    font-size: 15px;
    line-height: 1.4;
}
.related-item:hover h4 { color: var(--accent); }

/* Category Page */
.category-header {
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 30px;
    border-left: 5px solid var(--accent);
    box-shadow: var(--shadow);
}
.category-header h1 {
    font-family: var(--font-title);
    font-size: 32px;
    margin-bottom: 10px;
}
.category-header p {
    color: var(--text-light);
    margin-bottom: 10px;
}
.article-count {
    font-size: 13px;
    color: var(--accent);
    font-weight: 600;
}
.articles-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.article-list-item {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 25px;
    padding: 25px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.article-list-item.featured {
    grid-template-columns: 1fr;
}
.article-list-item.featured .article-image {
    aspect-ratio: 16/9;
}
.article-list-item .article-image {
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    overflow: hidden;
}
.article-list-item .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.article-list-item:hover .article-image img { transform: scale(1.05); }
.article-list-item .article-content h2 {
    font-family: var(--font-title);
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 10px;
}
.article-list-item.featured .article-content h2 { font-size: 28px; }
.article-list-item .article-content h2 a:hover { color: var(--accent); }
.article-list-item .article-content p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}
.article-list-item .article-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--text-light);
}
.article-list-item .article-meta .author {
    display: flex;
    align-items: center;
    gap: 8px;
}
.article-list-item .article-meta .author img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}
.no-articles {
    padding: 60px;
    text-align: center;
    background: var(--white);
    border-radius: var(--radius);
}
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}
.pagination a {
    padding: 10px 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
}
.pagination a.active, .pagination a:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

/* 404 Page */
.error-page {
    text-align: center;
    padding: 100px 20px;
}
.error-page h1 {
    font-family: var(--font-title);
    font-size: 120px;
    color: var(--accent);
    margin-bottom: 20px;
}
.error-page h2 {
    font-size: 28px;
    margin-bottom: 15px;
}
.error-page p {
    color: var(--text-light);
    margin-bottom: 30px;
}
.error-page a {
    display: inline-block;
    padding: 12px 30px;
    background: var(--accent);
    color: #fff;
    border-radius: var(--radius);
    font-weight: 600;
}

/* Mobile Nav Active */
.main-nav.active {
    display: flex !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    z-index: 99;
}

@media (max-width: 768px) {
    .article-header h1 { font-size: 26px; }
    .article-body { font-size: 16px; }
    .related-grid { grid-template-columns: 1fr; }
    .article-list-item { grid-template-columns: 1fr; }
    .author-box { flex-direction: column; text-align: center; }
}

/* Author Profile Page */
.author-profile {
    display: flex;
    gap: 30px;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}
.author-profile-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.author-profile-info h1 {
    font-family: var(--font-title);
    font-size: 32px;
    margin-bottom: 15px;
}
.author-profile-info p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}
.author-social {
    display: flex;
    gap: 15px;
}
.author-social a {
    padding: 8px 16px;
    background: var(--bg);
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
}
.author-social a:hover {
    background: var(--accent);
    color: #fff;
}
.author-articles h2 {
    font-family: var(--font-title);
    font-size: 22px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border);
}
.author-articles .article-list-item h3 {
    font-size: 18px;
    margin: 10px 0;
}
.author-articles .article-list-item h3 a:hover { color: var(--accent); }

@media (max-width: 768px) {
    .author-profile { flex-direction: column; text-align: center; align-items: center; }
    .author-profile-avatar { width: 120px; height: 120px; }
}

/* Static Pages */
.page-content {
    max-width: 900px;
    margin: 0 auto;
}
.static-page {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.static-page h1 {
    font-family: var(--font-title);
    font-size: 36px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border);
}
.page-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
}
.page-body h2 {
    font-family: var(--font-title);
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--primary);
}
.page-body h3 {
    font-size: 20px;
    margin: 25px 0 12px;
    color: var(--primary);
}
.page-body p { margin-bottom: 15px; }
.page-body ul, .page-body ol {
    margin: 15px 0;
    padding-left: 25px;
}
.page-body li { margin-bottom: 8px; }
.page-body a { color: var(--accent); }
.page-body a:hover { text-decoration: underline; }

@media (max-width: 768px) {
    .static-page { padding: 30px 20px; }
    .static-page h1 { font-size: 28px; }
}

/* Authors Page */
.authors-page h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}
.page-subtitle {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 40px;
}
.authors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.author-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}
.author-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.author-card-image {
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
}
.author-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.author-card:hover .author-card-image img {
    transform: scale(1.05);
}
.author-card-content {
    padding: 25px;
}
.author-card-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
.author-card-content h3 a:hover {
    color: var(--accent);
}
.author-card-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}
.author-card-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
}
.author-card-meta a {
    color: var(--accent);
}
.btn-view-author {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
    transition: background 0.2s;
}
.btn-view-author:hover {
    background: var(--accent);
}

@media (max-width: 1024px) {
    .authors-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .authors-grid { grid-template-columns: 1fr; }
}

/* Forum Page */
.forum-header {
    text-align: center;
    padding: 40px 0;
    margin-bottom: 30px;
}
.forum-header h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}
.forum-header p {
    color: var(--text-light);
    font-size: 16px;
}
.forum-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
}
.forum-main section {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--shadow);
}
.forum-main h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}
.forum-categories-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.forum-category-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--bg);
    border-radius: var(--radius);
    transition: all 0.2s;
}
.forum-category-card:hover {
    background: var(--primary);
    color: #fff;
}
.forum-category-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.forum-category-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}
.forum-category-info {
    flex: 1;
}
.forum-category-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}
.forum-category-info p {
    font-size: 13px;
    opacity: 0.7;
}
.forum-category-stats {
    text-align: center;
}
.topic-count {
    display: block;
    font-size: 24px;
    font-weight: 700;
}
.topic-label {
    font-size: 12px;
    opacity: 0.7;
}
.forum-empty {
    text-align: center;
    padding: 40px;
    color: var(--text-light);
}
.forum-topics-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.forum-topic-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--bg);
    border-radius: var(--radius);
}
.topic-icon {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.topic-icon svg {
    width: 20px;
    height: 20px;
    color: var(--text-light);
}
.topic-content {
    flex: 1;
}
.topic-content h4 {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 5px;
}
.topic-content h4 a:hover {
    color: var(--accent);
}
.topic-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: var(--text-light);
}
.topic-category {
    background: var(--accent);
    color: #fff;
    padding: 2px 8px;
    border-radius: 3px;
}
.topic-stats {
    font-size: 12px;
    color: var(--text-light);
}
.forum-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.forum-widget {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
}
.forum-widget h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}
.forum-widget ul {
    list-style: none;
    font-size: 13px;
    color: var(--text-light);
}
.forum-widget li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}
.forum-widget li:last-child {
    border-bottom: none;
}
.forum-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.forum-stat {
    text-align: center;
    padding: 15px;
    background: var(--bg);
    border-radius: var(--radius);
}
.stat-num {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}
.stat-label {
    font-size: 12px;
    color: var(--text-light);
}
.btn-forum-login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: var(--accent);
    color: #fff;
    border-radius: var(--radius);
    font-weight: 600;
    transition: background 0.2s;
}
.btn-forum-login:hover {
    background: var(--accent-dark);
}

@media (max-width: 900px) {
    .forum-layout { grid-template-columns: 1fr; }
    .forum-sidebar { order: -1; }
}

/* Podcast Page */
.podcast-page { max-width: 1000px; margin: 0 auto; }
.podcast-header {
    text-align: center;
    padding: 40px 0;
}
.podcast-header h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}
.podcast-header p {
    color: var(--text-light);
    font-size: 16px;
}
.podcast-empty {
    text-align: center;
    padding: 80px 20px;
    background: var(--white);
    border-radius: var(--radius);
}
.podcast-empty svg {
    color: var(--text-light);
    margin-bottom: 20px;
}
.podcast-empty p {
    color: var(--text-light);
}
.podcast-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}
.podcast-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.podcast-card-image {
    position: relative;
    aspect-ratio: 16/9;
}
.podcast-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.podcast-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, background 0.2s;
}
.podcast-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--accent-dark);
}
.podcast-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}
.podcast-card-content {
    padding: 20px;
}
.podcast-card-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}
.podcast-card-content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.5;
}
.podcast-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    margin-bottom: 10px;
}
.podcast-card-meta img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}
.podcast-date {
    color: var(--text-light);
}
.podcast-card-stats {
    font-size: 12px;
    color: var(--text-light);
}

/* Live Stream Page */
.live-page { max-width: 1000px; margin: 0 auto; }
.live-active {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
}
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
}
.live-badge .live-dot {
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    animation: livePulse 1.5s infinite;
}
.live-active h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}
.live-player {
    aspect-ratio: 16/9;
    background: #000;
    border-radius: var(--radius);
    overflow: hidden;
}
.live-player iframe {
    width: 100%;
    height: 100%;
}
.live-inactive {
    text-align: center;
    padding: 100px 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.live-inactive-icon {
    color: var(--text-light);
    margin-bottom: 25px;
}
.live-inactive h1 {
    font-size: 28px;
    margin-bottom: 15px;
}
.live-inactive p {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 25px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}
.btn-back-home {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius);
    font-weight: 600;
}
.btn-back-home:hover {
    background: var(--accent);
}
.past-streams {
    margin-top: 80px !important;
}
.past-streams h2 {
    font-size: 22px;
    margin-bottom: 20px;
}
.past-streams-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.past-stream-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.past-stream-thumb {
    width: 60px;
    height: 60px;
    background: var(--bg);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}
.past-stream-info h4 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
}
.past-stream-info span {
    font-size: 12px;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .podcast-grid { grid-template-columns: 1fr; }
    .past-streams-grid { grid-template-columns: 1fr; }
}

/* Video Page */
.video-page { max-width: 1200px; margin: 0 auto; }
.video-header {
    text-align: center;
    padding: 30px 0 40px;
}
.video-header h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}
.video-header p {
    color: var(--text-light);
    font-size: 16px;
}

/* Featured Videos */
.featured-videos {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 20px;
    margin-bottom: 40px;
}
.featured-video-main {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.video-player-wrapper {
    aspect-ratio: 16/9;
    background: #000;
}
.video-player-wrapper iframe {
    width: 100%;
    height: 100%;
}
.video-info {
    padding: 20px;
}
.video-info h2 {
    font-size: 20px;
    font-weight: 600;
    margin: 10px 0;
}
.video-info p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 10px;
}
.video-meta {
    font-size: 13px;
    color: var(--text-light);
    display: flex;
    gap: 15px;
}
.featured-video-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.featured-video-item {
    display: flex;
    gap: 12px;
    padding: 10px;
    background: var(--white);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
}
.featured-video-item:hover {
    background: var(--bg);
}
.featured-video-item.active {
    border-color: var(--accent);
}
.video-thumb {
    width: 120px;
    height: 70px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}
.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-duration {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 500;
}
.video-item-info h4 {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.video-item-info span {
    font-size: 11px;
    color: var(--text-light);
}

/* Video Filter */
.video-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}
.filter-btn {
    padding: 10px 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 25px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

/* All Videos */
.all-videos h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}
.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.video-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.2s;
}
.video-card:hover {
    transform: translateY(-5px);
}
.video-card-thumb {
    display: block;
    position: relative;
    aspect-ratio: 16/9;
}
.video-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transition: opacity 0.2s;
}
.video-card:hover .play-overlay {
    opacity: 1;
}
.video-card-content {
    padding: 15px;
}
.category-badge.small {
    font-size: 10px;
    padding: 3px 8px;
}
.video-card-content h4 {
    font-size: 14px;
    font-weight: 500;
    margin: 8px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.video-card-meta {
    font-size: 12px;
    color: var(--text-light);
    display: flex;
    gap: 10px;
}

/* Video Modal */
.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.video-modal.active {
    opacity: 1;
    visibility: visible;
}
.video-modal-content {
    width: 90%;
    max-width: 1000px;
    position: relative;
}
.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
}
.video-modal-player {
    aspect-ratio: 16/9;
    background: #000;
    border-radius: var(--radius);
    overflow: hidden;
}
.video-modal-player iframe {
    width: 100%;
    height: 100%;
}

@media (max-width: 1024px) {
    .featured-videos { grid-template-columns: 1fr; }
    .featured-video-list { flex-direction: row; overflow-x: auto; }
    .featured-video-item { min-width: 250px; }
    .video-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .video-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .video-grid { grid-template-columns: 1fr; }
}


/* Author Sidebar - Centered Layout */
.author-item-full {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}
.author-item-full:last-child {
    border-bottom: none;
}
.author-item-full .author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.author-item-full .author-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}
.author-item-full .author-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    line-height: 1.3;
}
.author-item-full .author-name:hover {
    color: var(--secondary);
}
.author-item-full .author-latest {
    font-size: 13px;
    color: var(--text-light);
    text-decoration: none;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.author-item-full .author-latest:hover {
    color: var(--secondary);
}

/* İlk kategori bölümü (Gündem) - üstten boşluk */
.hp-section:first-of-type {
    margin-top: 80px !important;
}

/* Gündem (ilk kategori bölümü) - üstten boşluk */
.category-section:first-of-type {
    margin-top: 80px !important;
}

/* Manset sonrası ilk bölüm (Gündem) - üstten boşluk */
.manset + .hp-section {
    margin-top: 80px !important;
}

/* ==================== SEARCH PAGE ==================== */
.search-page {
    padding: 40px 0;
}
.search-header {
    text-align: center;
    margin-bottom: 40px;
}
.search-header h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary);
}
.search-form-large {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    gap: 10px;
}
.search-form-large input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}
.search-form-large input:focus {
    outline: none;
    border-color: var(--secondary);
}
.search-form-large button {
    padding: 15px 30px;
    background: var(--secondary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
}
.search-form-large button:hover {
    background: #b71c1c;
}
.search-info {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 30px;
}
.search-results {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.search-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}
.search-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.search-item-image {
    flex-shrink: 0;
    width: 200px;
    height: 140px;
    border-radius: 8px;
    overflow: hidden;
}
.search-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.search-item-content {
    flex: 1;
}
.search-item-content h3 {
    margin: 10px 0;
    font-size: 18px;
}
.search-item-content h3 a {
    color: var(--primary);
    text-decoration: none;
}
.search-item-content h3 a:hover {
    color: var(--secondary);
}
.search-item-content p {
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.5;
}
.search-item-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: var(--text-light);
}
.no-results {
    text-align: center;
    padding: 60px 20px;
}
.no-results svg {
    margin-bottom: 20px;
}
.no-results h3 {
    margin-bottom: 10px;
    color: var(--primary);
}
.no-results p {
    color: var(--text-light);
}
.search-suggestions {
    text-align: center;
    padding: 40px;
}
.search-suggestions h3 {
    margin-bottom: 20px;
}
.suggestion-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}
.suggestion-tags a {
    padding: 10px 20px;
    background: #f5f5f5;
    color: var(--primary);
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s;
}
.suggestion-tags a:hover {
    background: var(--secondary);
    color: white;
}

/* Search Modal */
.search-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 10000;
    justify-content: center;
    align-items: flex-start;
    padding-top: 100px;
}
.search-modal.active {
    display: flex;
}
.search-modal-content {
    width: 90%;
    max-width: 600px;
    background: white;
    border-radius: 12px;
    padding: 20px;
}
.search-modal-form {
    display: flex;
    gap: 10px;
}
.search-modal-form input {
    flex: 1;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
}
.search-modal-form button {
    padding: 15px 25px;
    background: var(--secondary);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}
.search-modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .search-item {
        flex-direction: column;
    }
    .search-item-image {
        width: 100%;
        height: 200px;
    }
    .search-form-large {
        flex-direction: column;
    }
}

/* Social Links Enhancement */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s;
}
.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

/* ==================== RESPONSIVE IMPROVEMENTS ==================== */

/* Tablet */
@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    .sidebar {
        display: none;
    }
    .hp-section__content .style-magazine {
        grid-template-columns: 1fr;
    }
    .magazine-list {
        grid-template-columns: repeat(2, 1fr);
    }
    .style-grid-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Top Bar */
    .top-bar {
        padding: 8px 0;
    }
    .top-bar-left .weather {
        display: none;
    }
    .lang-switcher {
        gap: 5px;
    }
    .lang-switcher a {
        padding: 3px 6px;
        font-size: 11px;
    }
    
    /* Header */
    .header {
        padding: 10px 0;
    }
    .logo-text small {
        display: none;
    }
    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--primary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        z-index: 9999;
    }
    .main-nav.active {
        display: flex;
    }
    .main-nav a {
        font-size: 20px;
        color: white;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .mobile-menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: white;
        font-size: 30px;
        cursor: pointer;
    }
    
    /* Breaking News */
    .breaking-news {
        padding: 8px 0;
    }
    .breaking-label {
        font-size: 11px;
        padding: 4px 10px;
    }
    
    /* Manset/Slider */
    .manset {
        margin-bottom: 20px;
    }
    .fs-main {
        height: 300px;
    }
    .fs-content h2 {
        font-size: 20px;
    }
    .fs-sidebar {
        display: none;
    }
    
    /* Sections */
    .hp-section {
        margin-bottom: 30px;
    }
    .hp-section__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .hp-section__title {
        font-size: 20px;
    }
    .magazine-list {
        grid-template-columns: 1fr;
    }
    .style-grid-cards {
        grid-template-columns: 1fr;
    }
    .grid-card .card-image {
        height: 180px;
    }
    
    /* Video Grid */
    .style-video-grid {
        grid-template-columns: 1fr;
    }
    
    /* Podcast */
    .style-podcast-horizontal {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-brand {
        margin-bottom: 20px;
    }
    .social-links {
        justify-content: center;
    }
    .footer-links ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .footer-bottom-links {
        justify-content: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .fs-main {
        height: 250px;
    }
    .fs-content h2 {
        font-size: 18px;
    }
    .fs-content p {
        display: none;
    }
    .category-badge {
        font-size: 10px;
        padding: 3px 8px;
    }
    .hp-section__title {
        font-size: 18px;
    }
    .search-form-large input,
    .search-form-large button {
        padding: 12px 15px;
    }
}

/* Mobile Menu JavaScript */
