@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700;800&family=Source+Sans+3:wght@400;600&display=swap');

:root {
    --primary: #4F46E5;
    --primary-dark: #312E81;
    --primary-light: #E0E7FF;
    --accent: #F59E0B;
    --bg-body: #F8FAFC;
    --white: #ffffff;
    --text-main: #0F172A;
    --text-muted: #64748B;
    --border-color: #E2E8F0;
    --radius: 10px;
    --shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 12px 32px -4px rgba(79, 70, 229, 0.2);
    --font-head: 'Manrope', sans-serif;
    --font-body: 'Source Sans 3', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    scroll-behavior: smooth;
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.65;
}

a { text-decoration: none; color: inherit; transition: 0.25s ease; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

.usp-bar {
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #fff;
    font-size: 0.78rem;
    padding: 10px 0;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.usp-bar .container { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.usp-bar i { margin-right: 5px; }

.header {
    background: var(--white);
    padding: 18px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-inner { display: flex; justify-content: space-between; align-items: center; }

.logo {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    display: flex; align-items: center; gap: 8px;
}
.logo span { color: var(--primary); }
.logo-badge {
    font-size: 0.55rem; background: var(--primary-light); color: var(--primary-dark);
    padding: 3px 7px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.8px; font-weight: 700;
}

.nav ul { display: flex; gap: 28px; list-style: none; }
.nav a { font-weight: 600; font-family: var(--font-head); color: var(--text-main); font-size: 0.95rem; }
.nav a:hover { color: var(--primary); }
.burger { display: none; font-size: 1.5rem; cursor: pointer; }

.hero {
    text-align: center;
    padding: 70px 0 55px;
    background: linear-gradient(180deg, #fff 0%, var(--bg-body) 100%);
    border-bottom: 1px solid var(--border-color);
}
.hero h1 { font-family: var(--font-head); font-size: 2.75rem; margin-bottom: 18px; line-height: 1.15; color: var(--text-main); }
.hero p { font-size: 1.15rem; color: var(--text-muted); max-width: 680px; margin: 0 auto 28px; }

.hero-btn {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-family: var(--font-head);
    transition: 0.25s ease;
}
.hero-btn:hover { background: var(--primary-dark); transform: translateY(-2px); }

.content-section { padding: 55px 20px; background: #fff; border-bottom: 1px solid var(--border-color); }
.section-title { text-align: center; font-family: var(--font-head); font-size: 2rem; margin-bottom: 45px; color: var(--text-main); }
.section-title i { color: var(--accent); margin-right: 10px; }

.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.trust-card { text-align: center; padding: 28px 20px; background: var(--bg-body); border-radius: var(--radius); border: 1px solid var(--border-color); transition: 0.25s ease; }
.trust-card:hover { border-color: var(--primary); transform: translateY(-3px); }
.trust-icon { font-size: 1.4rem; color: var(--primary); margin-bottom: 12px; display: inline-flex; align-items: center; justify-content: center; background: var(--primary-light); width: 60px; height: 60px; border-radius: 50%; }
.trust-card h3 { font-family: var(--font-head); margin-bottom: 8px; font-size: 1.05rem; }
.trust-card p { font-size: 0.88rem; color: var(--text-muted); }

.audit-row { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin-bottom: 50px; }
.audit-text h3 { font-family: var(--font-head); font-size: 1.65rem; margin-bottom: 18px; color: var(--primary-dark); }
.audit-text p { margin-bottom: 14px; color: var(--text-muted); }
.check-list { list-style: none; }
.check-list li { padding-left: 26px; position: relative; margin-bottom: 10px; font-weight: 600; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--primary); font-weight: 800; }
.audit-box { background: var(--primary-light); padding: 35px; border-radius: var(--radius); text-align: center; border: 2px dashed var(--primary); }
.audit-stat { font-size: 2.8rem; font-weight: 800; color: var(--primary); display: block; line-height: 1; }

.list-header { text-align: center; margin-bottom: 35px; }
.list-header h2 { font-family: var(--font-head); font-size: 2.2rem; color: var(--primary-dark); }
.list-header p { color: var(--text-muted); margin-top: 8px; }

.verdict-card {
    background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
    display: grid; grid-template-columns: 70px 2fr 2fr 1.5fr;
    margin-bottom: 25px; overflow: hidden; border: 1px solid var(--border-color); transition: 0.3s ease;
}
.verdict-card:hover { transform: translateY(-4px); border-color: var(--primary); box-shadow: var(--shadow-hover); }

.v-rank { background: #F1F5F9; display: flex; flex-direction: column; justify-content: center; align-items: center; border-right: 1px solid var(--border-color); }
.rank-num { font-size: 1.8rem; font-weight: 800; color: #CBD5E1; font-family: var(--font-head); }

.v-brand { padding: 22px; display: flex; flex-direction: column; justify-content: center; gap: 10px; }
.v-logo { width: 110px; }
.verified-tag { background: var(--primary-light); color: var(--primary-dark); padding: 4px 10px; border-radius: 4px; font-size: 0.75rem; font-weight: 700; width: fit-content; display: flex; align-items: center; gap: 5px; }
.verified-tag i { font-size: 0.8rem; }

.v-features { padding: 22px; display: flex; flex-direction: column; justify-content: center; border-left: 1px solid #F1F5F9; }
.v-features li { font-size: 0.88rem; margin-bottom: 5px; color: var(--text-muted); }

.v-action { padding: 22px; background: var(--primary-light); display: flex; flex-direction: column; justify-content: center; text-align: center; border-left: 1px solid #C7D2FE; }
.bonus-text { font-weight: 800; font-size: 1.05rem; color: var(--primary-dark); margin-bottom: 10px; font-family: var(--font-head); }
.btn-go { background: var(--primary); color: #fff; padding: 11px; border-radius: 8px; font-weight: 700; display: block; width: 100%; transition: 0.25s ease; font-family: var(--font-head); }
.btn-go:hover { background: var(--primary-dark); }
.tnc-mini { font-size: 0.62rem; color: var(--text-muted); margin-top: 8px; line-height: 1.25; }

.footer {
    background: var(--primary-dark);
    color: #C7D2FE;
    padding: 45px 0 20px;
    font-size: 0.85rem;
    margin-top: 50px;
}

.footer-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 22px;
    margin-bottom: 35px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 28px;
}

.footer-nav a {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    font-family: var(--font-head);
}

.footer-nav a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.footer-disclaimer {
    color: #A5B4FC;
    margin-bottom: 28px;
    line-height: 1.75;
    font-size: 0.78rem;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.footer-disclaimer h4 {
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 14px;
    font-size: 0.88rem;
}

.compliance-links {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.72rem;
    color: #A5B4FC;
    margin-bottom: 18px;
}

.compliance-links a:hover { color: #fff; }
.separator { opacity: 0.5; }

.copyright {
    font-size: 0.68rem;
    opacity: 0.6;
}

@media (max-width: 700px) {
    .footer-nav { flex-direction: column; gap: 14px; }
    .compliance-links { flex-direction: column; gap: 10px; }
    .separator { display: none; }
}

.risk-box { background: rgba(255,255,255,0.05); padding: 22px; border-radius: 8px; margin-bottom: 28px; border: 1px solid rgba(255,255,255,0.1); }
.risk-box h5 { color: #fff; margin-bottom: 10px; text-transform: uppercase; font-size: 0.82rem; display: flex; align-items: center; gap: 8px; }
.risk-box h5::before { content: "18+"; background: #EF4444; padding: 2px 6px; border-radius: 4px; }

.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(49, 46, 129, 0.95); z-index: 9999; display: flex; justify-content: center; align-items: center; padding: 20px;}
.modal-box { background: #fff; padding: 38px; border-radius: 14px; text-align: center; max-width: 460px; }

.safety-card { text-align: center; padding: 28px; background: var(--bg-body); border-radius: var(--radius); border: 1px solid var(--border-color); }
.safety-icon { font-size: 1.5rem; color: var(--primary); margin-bottom: 14px; display: inline-flex; align-items: center; justify-content: center; background: var(--primary-light); width: 65px; height: 65px; border-radius: 50%; }
.safety-card h3 { font-family: var(--font-head); margin-bottom: 10px; font-size: 1.1rem; }
.safety-card p { font-size: 0.9rem; color: var(--text-muted); }

@media (max-width: 900px) {
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .audit-row, .verdict-card { grid-template-columns: 1fr; }
    .nav { display: none; } .burger { display: block; }
    .verdict-card { text-align: center; }
    .v-rank { padding: 15px; border-right: none; border-bottom: 1px solid var(--border-color); }
    .v-features, .v-action { border: none; border-top: 1px solid #F1F5F9; }
    .hero h1 { font-size: 2rem; }

    .nav.active {
        display: block; position: absolute; top: 68px; left:0; width:100%; background:#fff; padding:20px; border-bottom:1px solid var(--border-color); box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }
    .nav.active ul { flex-direction: column; align-items: center; }
}

@media (max-width: 500px) {
    .trust-grid { grid-template-columns: 1fr; }
    .usp-bar .container { flex-direction: column; gap: 8px; }
}