:root {
    --bg-primary: #121215;
    --bg-secondary: #1a1a1f;
    --bg-card: #222228;
    --bg-elevated: #2a2a32;
    --text-primary: #f0f0f2;
    --text-secondary: #9a9aa5;
    --text-muted: #5a5a65;
    --accent: #c9a66b;
    --accent-hover: #dbb87d;
    --accent-subtle: rgba(201, 166, 107, 0.12);
    --border-color: rgba(255,255,255,0.08);
    --gradient-hero: linear-gradient(135deg, #121215 0%, #1f1a15 50%, #121215 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.3);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.4);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Source Sans 3', sans-serif;
    --font-accent: 'Playfair Display', serif;
    --font-mono: 'JetBrains Mono', monospace;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

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

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

.page-loader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s, visibility 0.3s;
}
.page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid var(--border-color);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(18, 18, 21, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}
.site-header .navbar { padding: 12px 0; }
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.brand-icon {
    width: 44px;
    height: 44px;
    background: var(--accent);
    color: var(--bg-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
}
.brand-text {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
}
.navbar-toggler {
    border: none;
    padding: 8px;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.toggler-line {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: 0.3s;
}
.navbar-toggler.active .toggler-line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar-toggler.active .toggler-line:nth-child(2) { opacity: 0; }
.navbar-toggler.active .toggler-line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.navbar-nav { gap: 8px; }
.nav-link {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary) !important;
    padding: 10px 16px !important;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}
.nav-link:hover, .nav-link.active { background: var(--accent-subtle); color: var(--accent) !important; }
.dropdown-toggle { cursor: pointer; }
.dropdown-menu {
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 8px;
    min-width: 200px;
}
.dropdown-item {
    color: var(--text-secondary);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 14px;
}
.dropdown-item:hover { background: var(--accent-subtle); color: var(--accent); }

.hero-section {
    position: relative;
    padding: 140px 0 80px;
    min-height: 85vh;
    display: flex;
    align-items: center;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: -1;
}
.hero-bg::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201,166,107,0.1) 0%, transparent 70%);
}
.hero-section h1 {
    font-family: var(--font-accent);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 24px;
}
.hero-lead {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 560px;
}
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.stat-item { display: flex; flex-direction: column; }
.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
}
.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reviews-section { padding: 80px 0; }
.reviews-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 12px;
}
.section-subtitle { color: var(--text-secondary); margin-bottom: 48px; }

.reviews-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 32px;
}
.reviews-side { display: flex; flex-direction: column; gap: 32px; }
.review-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.review-featured { display: flex; flex-direction: column; }
.review-featured .card-image { height: 300px; }
.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.review-card:hover .card-image img { transform: scale(1.05); }
.image-source {
    position: absolute;
    bottom: 8px;
    right: 8px;
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    background: rgba(0,0,0,0.5);
    padding: 4px 8px;
    border-radius: 4px;
}
.card-content { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.card-category {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 12px;
}
.card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 12px;
}
.card-content h3 a:hover { color: var(--accent); }
.card-content p { color: var(--text-secondary); font-size: 15px; flex: 1; }
.card-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    font-size: 13px;
}
.card-rating { color: var(--accent); font-weight: 600; font-family: var(--font-heading); }
.card-footer time { color: var(--text-muted); }

.about-preview { padding: 80px 0; background: var(--bg-secondary); }
.about-preview h2 {
    font-family: var(--font-accent);
    font-size: 2rem;
    margin-bottom: 24px;
}
.about-preview p { color: var(--text-secondary); margin-bottom: 20px; }
.about-image { border-radius: var(--radius-lg); overflow: hidden; }
.about-image img { width: 100%; height: 450px; object-fit: cover; }
.btn-link {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--accent);
    padding-bottom: 4px;
    border-bottom: 2px solid var(--accent);
    margin-top: 12px;
    transition: 0.2s;
}
.btn-link:hover { color: var(--accent-hover); border-color: var(--accent-hover); }

.site-footer { padding: 60px 0 24px; border-top: 1px solid var(--border-color); }
.footer-brand { margin-bottom: 24px; }
.footer-brand .brand-icon { margin-bottom: 16px; }
.footer-brand p { color: var(--text-secondary); font-size: 14px; max-width: 280px; }
.site-footer h4 {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.site-footer ul li { margin-bottom: 10px; }
.site-footer ul a { color: var(--text-secondary); font-size: 14px; }
.site-footer ul a:hover { color: var(--accent); }
.site-footer .col-lg-4 p { color: var(--text-secondary); font-size: 14px; margin-bottom: 8px; }
.update-date { color: var(--text-muted) !important; font-size: 13px !important; margin-top: 12px !important; }
.footer-bottom {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
}

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    max-width: 420px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    z-index: 2000;
    box-shadow: var(--shadow-lg);
    display: none;
}
.cookie-banner.show { display: block; }
.cookie-content h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 12px;
}
.cookie-content > p { font-size: 14px; color: var(--text-secondary); margin-bottom: 20px; }
.cookie-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-cookie {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 18px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: 0.2s;
}
.btn-accept { background: var(--accent); color: var(--bg-primary); }
.btn-accept:hover { background: var(--accent-hover); }
.btn-reject { background: transparent; color: var(--text-secondary); border: 1px solid var(--border-color); }
.btn-reject:hover { border-color: var(--text-secondary); color: var(--text-primary); }
.btn-settings { background: transparent; color: var(--accent); }
.btn-settings:hover { text-decoration: underline; }
.cookie-settings { display: none; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border-color); }
.cookie-settings.show { display: block; }
.cookie-option { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; font-size: 14px; cursor: pointer; }
.cookie-option input { width: 18px; height: 18px; accent-color: var(--accent); }
.btn-save { margin-top: 12px; background: var(--accent); color: var(--bg-primary); }

.article-header { padding: 140px 0 40px; background: var(--bg-secondary); }
.article-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 16px;
}
.article-header h1 {
    font-family: var(--font-accent);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 800px;
}
.article-meta {
    display: flex;
    gap: 24px;
    color: var(--text-muted);
    font-size: 14px;
}
.article-hero { position: relative; margin-bottom: 48px; }
.article-hero img { width: 100%; max-height: 500px; object-fit: cover; }
.article-content { padding: 0 0 80px; }
.article-content .container { max-width: 800px; }
.article-content .lead { font-size: 1.2rem; color: var(--text-secondary); margin-bottom: 32px; line-height: 1.8; }
.article-content h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin: 40px 0 20px;
}
.article-content p { margin-bottom: 20px; color: var(--text-secondary); }
.article-content ul { margin: 20px 0; padding-left: 24px; }
.article-content li { margin-bottom: 10px; color: var(--text-secondary); list-style: disc; }

.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 40px 0; }
.pros, .cons { padding: 24px; border-radius: var(--radius-md); }
.pros { background: rgba(76, 175, 80, 0.1); border: 1px solid rgba(76, 175, 80, 0.2); }
.cons { background: rgba(244, 67, 54, 0.1); border: 1px solid rgba(244, 67, 54, 0.2); }
.pros h3 { color: #81c784; font-family: var(--font-heading); font-size: 1rem; margin-bottom: 16px; }
.cons h3 { color: #e57373; font-family: var(--font-heading); font-size: 1rem; margin-bottom: 16px; }
.pros ul, .cons ul { padding-left: 20px; }
.pros li, .cons li { margin-bottom: 8px; font-size: 14px; }

.rating-box {
    text-align: center;
    padding: 32px;
    background: var(--accent-subtle);
    border-radius: var(--radius-md);
    margin: 40px 0;
}
.final-rating {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}
.rating-box p { color: var(--text-secondary); margin: 0; }

.external-links { margin-top: 40px; padding: 24px; background: var(--bg-card); border-radius: var(--radius-md); }
.external-links h3 { font-family: var(--font-heading); font-size: 1rem; margin-bottom: 16px; }
.external-links ul { padding-left: 20px; }
.external-links li { margin-bottom: 8px; }
.external-links a { color: var(--accent); }
.external-links a:hover { text-decoration: underline; }

.related-section { padding: 60px 0; background: var(--bg-secondary); }
.related-section h2 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 32px; }
.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.related-card {
    display: block;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: 0.3s;
}
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.related-card img { width: 100%; height: 160px; object-fit: cover; }
.related-card h3 { padding: 16px; font-family: var(--font-heading); font-size: 1rem; }
.related-card:hover h3 { color: var(--accent); }

.about-page { padding: 140px 0 80px; }
.about-hero { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; margin-bottom: 60px; }
.about-photo { border-radius: var(--radius-lg); overflow: hidden; }
.about-photo img { width: 100%; height: 400px; object-fit: cover; }
.about-intro h1 {
    font-family: var(--font-accent);
    font-size: 2.5rem;
    margin-bottom: 24px;
}
.about-intro p { color: var(--text-secondary); margin-bottom: 16px; }

.contact-page { padding: 140px 0 80px; }
.contact-page h1 { font-family: var(--font-accent); font-size: 2.5rem; margin-bottom: 16px; }
.contact-intro { color: var(--text-secondary); margin-bottom: 48px; max-width: 600px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-form .form-group { margin-bottom: 20px; }
.contact-form label { display: block; font-size: 14px; margin-bottom: 8px; color: var(--text-secondary); }
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 15px;
    transition: 0.2s;
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
}
.contact-form textarea { min-height: 150px; resize: vertical; }
.btn-submit {
    background: var(--accent);
    color: var(--bg-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 32px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: 0.2s;
}
.btn-submit:hover { background: var(--accent-hover); }
.contact-info h3 { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 20px; }
.contact-info p { color: var(--text-secondary); margin-bottom: 12px; }

.policy-page { padding: 140px 0 80px; }
.policy-page h1 { font-family: var(--font-accent); font-size: 2.5rem; margin-bottom: 16px; }
.policy-page .update { color: var(--text-muted); margin-bottom: 40px; }
.policy-content h2 { font-family: var(--font-heading); font-size: 1.3rem; margin: 32px 0 16px; }
.policy-content p { color: var(--text-secondary); margin-bottom: 16px; }
.policy-content ul { padding-left: 24px; margin-bottom: 20px; }
.policy-content li { color: var(--text-secondary); margin-bottom: 8px; list-style: disc; }

@media (max-width: 991px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        height: 100vh;
        background: var(--bg-elevated);
        padding: 80px 24px 24px;
        transition: right 0.3s;
        border-left: 1px solid var(--border-color);
        display: block;
    }
    .navbar-collapse.show { right: 0; }
    .navbar-nav { flex-direction: column; }
    .dropdown-menu { position: static; background: transparent; border: none; padding: 0 0 0 16px; }
    .reviews-layout { grid-template-columns: 1fr; }
    .about-hero { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .pros-cons { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
    .hero-section { padding: 120px 0 60px; min-height: auto; }
    .hero-section h1 { font-size: 1.8rem; }
    .hero-stats { gap: 24px; }
    .stat-number { font-size: 2rem; }
    .about-image img { height: 300px; }
    .cookie-banner { left: 12px; right: 12px; bottom: 12px; max-width: none; }
}
