:root {
    /* Color System */
    --bg-dark: #0b0f19;
    --bg-card: #151c2c;
    --bg-elevated: #1e293b;
    --primary: #d4a843; /* Elegant Gold */
    --primary-hover: #bda038;
    --accent: #e30a17; /* Turkish Red */
    --accent-glow: rgba(227, 10, 23, 0.4);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border-color: rgba(148, 163, 184, 0.1);
    --border-hover: rgba(212, 168, 67, 0.3);
    
    /* Gradients */
    --gold-gradient: linear-gradient(135deg, #f59e0b, #d4a843);
    --red-gradient: linear-gradient(135deg, #dc2626, #b91c1c);
    --dark-gradient: linear-gradient(180deg, #151c2c 0%, #0b0f19 100%);
    --card-glow: radial-gradient(circle at top right, rgba(212, 168, 67, 0.08), transparent 70%);

    /* Fonts */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Metrics */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --container-max: 1200px;
    --container-narrow: 800px;
    --header-height: 80px;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Base Reset & Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* Layout Containers */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.container-narrow {
    max-width: var(--container-narrow);
}

/* Header & Navigation */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--gold-gradient);
    z-index: 1001;
    width: 0;
    transition: width 0.1s linear;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(11, 15, 25, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    height: 70px;
    background: rgba(11, 15, 25, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 0 5px var(--primary));
}

.logo-text {
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--primary);
    font-weight: 800;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.search-toggle {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition-smooth);
    border-radius: 50%;
}

.search-toggle:hover {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-smooth);
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 15, 25, 0.95);
    backdrop-filter: blur(20px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.search-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.search-overlay-inner {
    width: 90%;
    max-width: 600px;
    text-align: center;
}

.search-overlay input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--primary);
    color: var(--text-primary);
    font-size: 2rem;
    padding: 1rem 0;
    outline: none;
    font-family: var(--font-heading);
}

.search-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.search-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

/* Main Layout */
.main-content {
    margin-top: var(--header-height);
    min-height: calc(100vh - var(--header-height) - 400px);
    padding-bottom: 5rem;
}

/* Hero Section */
.hero {
    padding: 8rem 0 6rem 0;
    background: radial-gradient(circle at center, rgba(212, 168, 67, 0.1) 0%, transparent 60%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 168, 67, 0.08);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem auto;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-bounce);
    outline: none;
    border: none;
}

.btn-primary {
    background: var(--gold-gradient);
    color: #0b0f19;
    box-shadow: 0 4px 20px rgba(212, 168, 67, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 168, 67, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: rgba(212, 168, 67, 0.08);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--primary);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sections */
.section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem auto;
}

.section-label {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Custom Search Input */
.search-page-input {
    display: flex;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 3rem auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0.4rem;
    transition: var(--transition-smooth);
}

.search-page-input:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(212, 168, 67, 0.1);
}

.search-page-input input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    padding: 1rem;
    font-size: 1.05rem;
    font-family: var(--font-sans);
}

/* Grids & Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
}

.series-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-bounce);
    display: flex;
    flex-direction: column;
    position: relative;
}

.series-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--card-glow);
    pointer-events: none;
}

.series-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-image {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.card-image-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.card-icon {
    font-size: 4rem;
    transition: var(--transition-bounce);
}

.series-card:hover .card-icon {
    transform: scale(1.15) rotate(5deg);
}

.card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-badge {
    align-self: flex-start;
    padding: 0.35rem 1rem;
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.badge-historical {
    background: rgba(227, 10, 23, 0.1);
    color: #f87171;
    border: 1px solid rgba(227, 10, 23, 0.3);
}

.badge-romance {
    background: rgba(236, 72, 153, 0.1);
    color: #f472b6;
    border: 1px solid rgba(236, 72, 153, 0.3);
}

.badge-action {
    background: rgba(14, 165, 233, 0.1);
    color: #38bdf8;
    border: 1px solid rgba(14, 165, 233, 0.3);
}

.badge-default {
    background: rgba(148, 163, 184, 0.1);
    color: #cbd5e1;
    border: 1px solid rgba(148, 163, 184, 0.3);
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.card-excerpt {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex: 1;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    margin-top: auto;
}

.meta-year {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Star Ratings style */
.star-rating {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.star {
    color: var(--text-muted);
    font-size: 1rem;
}

.star.filled {
    color: var(--primary);
    text-shadow: 0 0 5px rgba(212, 168, 67, 0.5);
}

.star.half {
    position: relative;
    color: var(--text-muted);
}

.star.half::after {
    content: '★';
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    overflow: hidden;
    color: var(--primary);
}

.rating-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-left: 0.5rem;
    font-weight: 600;
}

/* Category Grid & Header */
.category-header {
    text-align: center;
    padding: 4rem 0;
    background: radial-gradient(circle at bottom, rgba(212, 168, 67, 0.05) 0%, transparent 60%);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 4rem;
}

.category-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.article-count {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.25rem 1rem;
    border-radius: var(--radius-xl);
}

/* Breadcrumbs style */
.breadcrumbs {
    padding: 1.5rem 0;
    font-size: 0.875rem;
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.breadcrumb-item {
    color: var(--text-secondary);
    display: flex;
    align-items: center;
}

.breadcrumb-item a:hover {
    color: var(--primary);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    margin-right: 0.5rem;
    color: var(--text-muted);
}

.breadcrumb-item.active {
    color: var(--text-primary);
    font-weight: 500;
}

/* Sidebar and Main Layout */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 4rem;
    margin-top: 2rem;
}

.article-header {
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2rem;
}

.article-header h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.15;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-body {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.article-body h2, .article-body h3 {
    color: var(--text-primary);
    font-family: var(--font-heading);
    margin: 3rem 0 1.5rem 0;
}

.article-body h2 { font-size: 2.25rem; }
.article-body h3 { font-size: 1.75rem; }

.article-body p {
    margin-bottom: 2rem;
}

.article-body ul, .article-body ol {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.article-body li {
    margin-bottom: 0.5rem;
}

.article-body strong {
    color: var(--text-primary);
}

/* Info Box */
.info-box {
    padding: 2rem;
    border-radius: var(--radius-md);
    margin: 3rem 0;
    border-left: 4px solid var(--primary);
    background: var(--bg-card);
}

.info-box.tip {
    border-left-color: var(--primary);
    background: linear-gradient(to right, rgba(212, 168, 67, 0.05), transparent);
}

.info-box.alert {
    border-left-color: var(--accent);
    background: linear-gradient(to right, rgba(227, 10, 23, 0.05), transparent);
}

/* Sidebar Elements */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.sidebar-widget {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: var(--radius-lg);
}

.sidebar-widget h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.75rem;
}

/* Table of Contents */
.toc-widget ol {
    list-style: none;
    padding-left: 0;
}

.toc-widget li {
    margin-bottom: 0.75rem;
}

.toc-widget a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.toc-widget a:hover {
    color: var(--primary);
    padding-left: 5px;
}

/* Dynamic Details Table */
.details-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2.5rem 0;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.details-table th, .details-table td {
    padding: 1.25rem 1.5rem;
    text-align: left;
}

.details-table th {
    background: rgba(255, 255, 255, 0.02);
    font-weight: 600;
    color: var(--text-primary);
    border-bottom: 2px solid var(--border-color);
}

.details-table td {
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.details-table tr:last-child td {
    border-bottom: none;
}

/* Pros and Cons Box */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.pros-box, .cons-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: var(--radius-md);
}

.pros-box h4, .cons-box h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pros-box h4 { color: #10b981; }
.cons-box h4 { color: var(--accent); }

.pros-box ul, .cons-box ul {
    list-style: none;
    padding-left: 0;
}

.pros-box li, .cons-box li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.pros-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
}

.cons-box li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* Comments Styling */
.comments-container {
    margin-top: 4rem;
}

.comments-list {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comment-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.comment-author {
    font-weight: 600;
}

.comment-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.comment-body {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Forms Styling */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 1rem;
    border-radius: var(--radius-md);
    color: var(--text-primary);
    outline: none;
    font-family: var(--font-sans);
    transition: var(--transition-smooth);
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* FAQ Accordion Styling */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    color: var(--text-primary);
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition-smooth);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-answer-inner {
    padding: 0 2rem 1.5rem 2rem;
    color: var(--text-secondary);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

/* Footer Section */
.site-footer {
    background: #070a10;
    border-top: 1px solid var(--border-color);
    padding-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 4rem;
    padding-bottom: 5rem;
}

.footer-widget h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold-gradient);
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-desc {
    color: var(--text-secondary);
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.social-links a:hover {
    background: var(--gold-gradient);
    color: #0b0f19;
    transform: translateY(-3px);
}

.newsletter-widget p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    color: var(--text-primary);
    outline: none;
}

.newsletter-form input:focus {
    border-color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 2rem 0;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Error page */
.error-page {
    text-align: center;
    padding: 8rem 0;
}

.error-code {
    font-size: 8rem;
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: 1;
    margin-bottom: 2rem;
}

/* Responsive Adaptations */
@media (max-width: 1024px) {
    .article-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .sidebar {
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.75rem;
    }
    
    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: var(--bg-dark);
        flex-direction: column;
        align-items: center;
        padding: 4rem 2rem;
        gap: 2.5rem;
        transition: var(--transition-smooth);
        border-top: 1px solid var(--border-color);
    }
    
    .main-nav.open {
        left: 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .menu-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-bottom-inner {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .pros-cons-grid {
        grid-template-columns: 1fr;
    }
}
