:root {
    --bg-dark: #0D1B2A;
    --accent: #F7941D;
    --accent-hover: #e08316;
    --card-bg: #FFFFFF;
    --text-main: #1A1A1A;
    --text-muted: #555555;
    --bg-light: #F4F6F8;
    --success: #2E7D32;
    --info: #0277BD;
    --radius: 8px;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background: var(--bg-light);
    line-height: 1.6;
}

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

ul {
    list-style: none;
}


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

.btn {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: var(--accent);
    color: #fff;
}

.badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
}

.badge-18 {
    background: #E53935;
}

.badge-reg {
    background: var(--success);
}

.badge-info {
    background: var(--info);
}

.risk-warning-bar {
    background: #FFF3CD;
    color: #856404;
    text-align: center;
    padding: 10px;
    font-size: 0.85rem;
    border-bottom: 1px solid #FFEEBA;
}

.affiliate-disclosure {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    padding: 10px 0;
}


header {
    background: var(--bg-dark);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links a:hover {
    color: var(--accent);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}


.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('../img/hero.png') center center/cover no-repeat;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    color: #B0BEC5;
    margin-bottom: 30px;
    max-width: 800px;
    margin-inline: auto;
}

.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.trust-badges span {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #CFD8DC;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}


section {
    padding: 60px 0 !important;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}


.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}


.card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.feature-card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.feature-card h3 {
    margin-bottom: 10px;
}


.platform-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.pc-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pc-logo-placeholder {
    height: 60px;
}

.pc-logo-placeholder img {
    height: 100%;
}

.pc-rating {
    background: var(--accent);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: bold;
}

.pc-body {
    padding: 20px;
    flex-grow: 1;
}

.pc-tagline {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-main);
}

.pc-details {
    list-style: none;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.pc-details li {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.pc-details i {
    color: var(--success);
    margin-top: 3px;
}

.pc-footer {
    padding: 20px;
    background: #FAFAFA;
    display: flex;
    flex-direction: column;
    gap: 10px;
}


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

.step-num {
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 15px;
    font-size: 1.2rem;
}


.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--card-bg);
    padding: 40px;
    border-radius: var(--radius);
    max-width: 500px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.modal-content h2 {
    margin-bottom: 15px;
    color: var(--bg-dark);
}

.modal-content p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}


.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--bg-dark);
    color: #fff;
    padding: 20px;
    z-index: 999;
    transform: translateY(100%);
    transition: var(--transition);
    display: flex;
    justify-content: center;
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
}


.review-hero {
    background: var(--bg-dark);
    color: #fff;
    padding: 60px 0;
}

.review-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.pro-box {
    background: #E8F5E9;
    padding: 20px;
    border-radius: var(--radius);
    border-left: 4px solid var(--success);
}

.con-box {
    background: #FFEBEE;
    padding: 20px;
    border-radius: var(--radius);
    border-left: 4px solid #E53935;
}

.pro-box ul li::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
    margin-right: 10px;
}

.con-box ul li::before {
    content: '✕';
    color: #E53935;
    font-weight: bold;
    margin-right: 10px;
}

.content-block {
    margin-bottom: 40px;
}

.content-block h2 {
    margin-bottom: 15px;
    color: var(--bg-dark);
}


footer {
    background: #0A141E;
    color: #CFD8DC;
    padding: 60px 0 20px;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-links h4 {
    color: #fff;
    margin-bottom: 15px;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #1c2e3d;
}

.legal-warning {
    background: #112233;
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 30px;
    font-size: 0.85rem;
}


@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-dark);
        padding: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .pros-cons {
        grid-template-columns: 1fr;
    }

    .pc-footer {
        flex-direction: column;
    }
}

.footer-logo {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

.footer-logo img {
    height: 60px;
    background: #ffffff;
    padding: 5px;
    border-radius: 5px;
}

.platform-logo {
    height: 80px;
    margin-bottom: 20px;
}

.platform-logo img {
    height: 100%;
    background: #fff;
    border-radius: 6px;
    padding: 5px;
}