:root {
    --bg-deep: #0f172a;
    --bg-card: #1e293b;
    --bg-light: #334155;
    --primary: #f59e0b;
    --primary-hover: #d97706;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --accent-red: #ef4444;
    --accent-green: #10b981;
    --border: #334155;
    --nav-h: 80px;
    --radius: 6px;
    --font-head: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

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

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

body {
    background-color: var(--bg-deep);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

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

.top-warning-bar {
    background-color: #000;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-align: center;
    padding: 8px 0;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border);
}

.top-warning-bar i {
    margin-right: 5px;
    color: var(--primary);
}

.navbar-main {
    height: var(--nav-h);
    background-color: rgba(15, 23, 42, 0.95);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo i {
    color: var(--primary);
    font-size: 1.8rem;
}

.brand-logo span {
    color: var(--primary);
}

.menu-items {
    display: flex;
    gap: 30px;
}

.menu-items a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.menu-items a:hover {
    color: var(--primary);
}

.hidden-trigger {
    display: none;
}

.hamburger-icon {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.hamburger-icon span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: 0.3s;
}

.main-banner {
    padding: 80px 0;
    background: radial-gradient(circle at top right, #1e293b 0%, #0f172a 60%);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.banner-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.tag-date {
    display: inline-block;
    background: rgba(245, 158, 11, 0.1);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.big-headline {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.big-headline span {
    color: transparent;
    -webkit-text-stroke: 1px var(--primary);
}

.sub-headline {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.action-group {
    display: flex;
    gap: 1rem;
}

.cta-primary {
    background-color: var(--primary);
    color: #000;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.cta-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.cta-secondary {
    border: 2px solid var(--border);
    color: #fff;
    padding: 12px 30px;
    border-radius: var(--radius);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.cta-secondary:hover {
    border-color: #fff;
    background-color: rgba(255,255,255,0.05);
}

.visual-circle {
    position: relative;
    z-index: 1;
}

.visual-circle img {
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    filter: brightness(0.9);
}

.floating-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--bg-card);
    padding: 15px 25px;
    border-radius: 8px;
    border: 1px solid var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.floating-card i {
    color: var(--primary);
    font-size: 1.5rem;
}

.floating-card span {
    font-weight: 700;
    color: #fff;
}

.trust-strip {
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border);
    padding: 25px 0;
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.trust-item h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 0;
}

.trust-item p {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.content-block {
    padding: 80px 0;
}

.white-bg {
    background-color: var(--bg-deep);
}

.gray-bg {
    background-color: #0b1120;
}

.section-head {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

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

.center-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.center-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.check-list-styled {
    display: grid;
    gap: 1rem;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.03);
    padding: 12px 15px;
    border-radius: var(--radius);
    border-left: 3px solid var(--primary);
}

.check-item i {
    color: var(--primary);
    flex-shrink: 0;
}

.check-item span {
    color: var(--text-main);
    font-size: 0.95rem;
}

.image-frame {
    position: relative;
}

.image-frame img {
    border-radius: var(--radius);
    opacity: 0.8;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100px;
    height: 100px;
    border-top: 3px solid var(--primary);
    border-right: 3px solid var(--primary);
    z-index: 1;
}

.cards-flex-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.info-card {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-box i {
    font-size: 1.8rem;
    color: var(--primary);
}

.info-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.info-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.highlight-section {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--bg-deep) 0%, #151f32 100%);
}

.best-choice-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--primary);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(245, 158, 11, 0.15);
}

.ribbon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--primary);
    color: #000;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    padding: 8px 0;
    letter-spacing: 1px;
}

.choice-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    margin-top: 35px; 
}

.choice-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.choice-details {
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.choice-details h3 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #fff;
}

.verdict {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.pros-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.pros-grid span {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-green);
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.score-area {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.score-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 4px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.score-circle span {
    font-weight: 800;
    font-size: 1.4rem;
    color: #fff;
}

.user-votes p {
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0;
    color: var(--primary);
}

.user-votes small {
    color: var(--text-muted);
}

.play-btn {
    background: var(--accent-green);
    color: #fff;
    text-align: center;
    padding: 15px;
    border-radius: var(--radius);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
}

.play-btn:hover {
    background: #059669;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.reviews-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 3rem;
}

.review-bubble {
    background: var(--bg-card);
    padding: 25px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.stars {
    color: var(--primary);
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.review-bubble p {
    font-style: italic;
    color: var(--text-main);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.reviewer {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border);
    padding-top: 15px;
}

.reviewer strong {
    color: #fff;
}

.reviewer span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.disclaimer-area {
    padding: 30px 20px;
    background: #000;
}

.alert-box {
    border: 1px solid var(--border);
    background: #0f172a;
    padding: 20px;
    border-radius: var(--radius);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.alert-icon {
    font-size: 2rem;
    color: var(--text-muted);
}

.alert-content h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.alert-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.small-disclaimer {
    font-size: 0.75rem !important;
    opacity: 0.7;
}

.bold-warning {
    color: #fff !important;
    font-weight: 600;
}

.site-footer {
    background: var(--bg-card);
    padding: 60px 0 20px;
    border-top: 1px solid var(--border);
}

.footer-columns {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 40px;
}

.col-brand p {
    color: var(--text-muted);
    margin-top: 15px;
    font-size: 0.9rem;
}

.col-links h5, .col-legal h5 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.col-links ul li, .col-legal ul li {
    margin-bottom: 10px;
}

.col-links a, .col-legal a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.footer-bottom-bar {
    border-top: 1px solid var(--border);
    padding-top: 25px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

@media (max-width: 992px) {
    .banner-layout {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .sub-headline {
        margin-left: auto;
        margin-right: auto;
    }

    .action-group {
        justify-content: center;
    }

    .choice-layout {
        grid-template-columns: 1fr;
    }

    .choice-visual {
        height: 200px;
    }

    .split-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger-icon {
        display: flex;
    }

    .menu-items {
        position: absolute;
        top: var(--nav-h);
        left: 0;
        width: 100%;
        background: var(--bg-card);
        flex-direction: column;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: 0.4s ease;
        gap: 0;
        border-bottom: 1px solid var(--border);
    }

    .menu-items li {
        width: 100%;
    }

    .menu-items a {
        display: block;
        padding: 20px;
        text-align: center;
        border-top: 1px solid rgba(255,255,255,0.05);
    }

    #mobile-menu-btn:checked ~ .menu-items {
        max-height: 400px;
    }

    .big-headline {
        font-size: 2.5rem;
    }

    .trust-grid {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}