/* ============================================
   NAO-BET.COM - Satellite Theme
   ============================================ */

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

:root {
    --primary: #7C3AED;
    --primary-hover: #6D28D9;
    --accent: #A78BFA;
    --accent-light: #C4B5FD;
    --bg: #0D0B14;
    --bg-card: #161228;
    --bg-card-hover: #1E1835;
    --bg-section: #110E1C;
    --text: #F0ECF9;
    --text-sec: #A8A0C0;
    --text-muted: #6B6185;
    --border: #2A2245;
    --success: #34D399;
    --warning: #FBBF24;
    --cta: #10B981;
    --cta-hover: #059669;
    --radius: 14px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-light); }

img { max-width: 100%; height: auto; }

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

h1, h2, h3, h4 { color: var(--text); line-height: 1.3; }
h1 { font-size: 2.4rem; font-weight: 800; }
h2 { font-size: 1.8rem; font-weight: 700; margin: 40px 0 16px; }
h3 { font-size: 1.3rem; font-weight: 600; margin: 30px 0 12px; }
h4 { font-size: 1.1rem; font-weight: 600; margin: 24px 0 10px; }
p { color: var(--text-sec); margin-bottom: 16px; }

/* ---- HEADER ---- */
.header {
    background: rgba(13,11,20,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0 20px;
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    max-width: 1100px;
    margin: 0 auto;
}
.header__logo img { height: 36px; width: auto; }
.logo-mobile { display: none; }
.header__actions { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.header__nav { display: flex; gap: 6px; list-style: none; }
.header__nav a {
    padding: 8px 14px;
    color: var(--text-sec);
    font-size: 0.88rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s;
}
.header__nav a:hover { color: var(--text); background: var(--bg-card); }
.header__lang {
    padding: 6px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-sec);
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.header__lang:hover { border-color: var(--primary); color: var(--text); }

.header__nav-lang { display: none; }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; transition: 0.3s; }

/* ---- HERO ---- */
.hero {
    position: relative;
    padding: 80px 0 60px;
    text-align: center;
    background: #1a1040;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: center;
}
.hero__bg {
    position: absolute; inset: 0;
    background: url('../img/hero-banner.jpg') 75% center/cover no-repeat;
}
.hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(13,11,20,0.92) 0%, rgba(13,11,20,0.7) 40%, rgba(13,11,20,0.15) 75%, transparent 100%);
}
.hero__content {
    position: relative; z-index: 2; text-align: left; max-width: 550px;
    background: rgba(13,11,20,0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 30px 35px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
}
.hero__badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(124,58,237,0.15);
    border: 1px solid rgba(124,58,237,0.3);
    border-radius: 20px;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.hero h1 { margin-bottom: 16px; }
.hero h1 span { color: var(--primary); }
.hero__sub { font-size: 1.1rem; color: var(--text-sec); max-width: 500px; margin: 0 0 30px; }

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 32px;
    border: none; border-radius: 10px;
    font-family: var(--font); font-size: 1rem; font-weight: 700;
    cursor: pointer; text-decoration: none;
    transition: all 0.25s;
}
.btn--cta {
    background: var(--cta); color: #fff;
    box-shadow: 0 4px 20px rgba(16,185,129,0.3);
}
.btn--cta:hover { background: var(--cta-hover); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 25px rgba(16,185,129,0.4); }
.btn--primary { background: var(--primary); color: #fff; }
.btn--primary:hover { background: var(--primary-hover); color: #fff; transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--text); border: 2px solid var(--border); }
.btn--outline:hover { border-color: var(--primary); color: var(--primary); }
.btn--full { width: 100%; }
.btn--lg { padding: 16px 40px; font-size: 1.05rem; }
.btn--sm { padding: 8px 20px; font-size: 0.85rem; border-radius: 8px; }

/* ---- SECTIONS ---- */
.section { padding: 50px 0; }
.section--alt { background: var(--bg-section); }
.section__header { text-align: center; margin-bottom: 32px; }
.section__header h2 { margin-top: 0; }

/* ---- CARD ---- */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 20px;
    transition: border-color 0.2s;
}
.card:hover { border-color: var(--primary); }

/* ---- BONUS CARD ---- */
.bonus-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    gap: 24px;
    align-items: center;
    margin-bottom: 20px;
    transition: all 0.3s;
}
.bonus-card:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.3); }
.bonus-card__icon { flex-shrink: 0; width: 70px; height: 70px; }
.bonus-card__icon img { width: 100%; height: 100%; object-fit: contain; }
.bonus-card__content { flex: 1; }
.bonus-card__title { font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.bonus-card__desc { color: var(--text-sec); font-size: 0.9rem; margin: 0; }
.bonus-card__value {
    flex-shrink: 0;
    text-align: center;
    padding: 12px 20px;
    background: rgba(124,58,237,0.1);
    border: 1px solid rgba(124,58,237,0.2);
    border-radius: 10px;
}
.bonus-card__value strong { display: block; font-size: 1.3rem; color: var(--primary); }
.bonus-card__value span { font-size: 0.75rem; color: var(--text-muted); }

/* ---- TABLES ---- */
.table-wrap { overflow-x: auto; margin: 20px 0; }
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
th, td { padding: 14px 18px; text-align: left; }
th {
    background: rgba(124,58,237,0.1);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border);
}
td {
    color: var(--text-sec);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border);
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(124,58,237,0.03); }

/* Key Info Table */
.key-info-table td:first-child {
    color: var(--text-muted);
    font-weight: 600;
    width: 200px;
    white-space: nowrap;
}
.key-info-table td:last-child { color: var(--text); }

/* ---- FEATURE GRID ---- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin: 24px 0;
}
.feature-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    transition: border-color 0.2s;
}
.feature-item:hover { border-color: var(--primary); }
.feature-item__num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 28px; height: 28px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.feature-item h4 { margin: 0 0 6px; font-size: 0.95rem; }
.feature-item p { font-size: 0.85rem; margin: 0; }

/* ---- MEDIA TEXT ---- */
.media-text {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    align-items: center;
    margin: 24px 0;
}
.media-text--reverse { grid-template-columns: 1fr auto; }
.media-text__img { max-width: 200px; }
.media-text__img img { border-radius: var(--radius); }

/* ---- FAQ ---- */
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 10px;
    overflow: hidden;
}
.faq-item__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
    transition: background 0.2s;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: var(--font);
}
.faq-item__q:hover { background: var(--bg-card-hover); }
.faq-item__q svg { flex-shrink: 0; transition: transform 0.3s; }
.faq-item--open .faq-item__q svg { transform: rotate(180deg); }
.faq-item__a {
    display: none;
    padding: 0 20px 16px;
    color: var(--text-sec);
    font-size: 0.9rem;
    line-height: 1.6;
}
.faq-item--open .faq-item__a { display: block; }

/* ---- FOOTER ---- */
.footer {
    background: #08060E;
    border-top: 1px solid var(--border);
    padding: 40px 0 24px;
    margin-top: 60px;
}
.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.footer__logo img { height: 30px; opacity: 0.7; }
.footer__links { display: flex; gap: 20px; list-style: none; }
.footer__links a { color: var(--text-muted); font-size: 0.85rem; }
.footer__links a:hover { color: var(--accent); }
.footer__copy { color: var(--text-muted); font-size: 0.8rem; width: 100%; text-align: center; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); }

/* ---- GAME PROVIDERS ---- */
.providers-strip { margin: 20px 0; opacity: 0.7; }
.providers-strip img { width: 100%; }

/* ---- LIST STYLED ---- */
.styled-list { list-style: none; padding: 0; margin: 16px 0; }
.styled-list li {
    position: relative;
    padding: 8px 0 8px 28px;
    color: var(--text-sec);
    font-size: 0.95rem;
}
.styled-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

/* ---- BANKING GRID ---- */
.banking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: 20px 0;
}
.banking-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
}
.banking-card h5 {
    color: var(--accent);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 8px;
}
.banking-card p { font-size: 0.85rem; margin: 0; color: var(--text-sec); }

/* ---- INFO BAR ---- */
.info-bar {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--text-muted);
}
.info-bar span { font-weight: 600; color: var(--text-sec); }

/* ---- PAGE (about, terms, privacy) ---- */
.page-content { padding: 40px 0; }
.page-content h1 { margin-bottom: 24px; }
.page-content h2 { font-size: 1.4rem; margin: 32px 0 12px; }
.page-content p, .page-content li { color: var(--text-sec); }
.page-content ul { margin: 12px 0 12px 24px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
    .header__nav { display: none; }
    .logo-desktop { display: none !important; }
    .logo-mobile { display: block !important; height: 26px !important; }
    .header__lang { display: inline-flex !important; padding: 4px 8px; font-size: 0.7rem; }
    .header__nav-lang { display: none; }
    .mobile-toggle { display: flex; flex-direction: column; }
    .header .btn--sm { padding: 5px 10px; font-size: 0.7rem; white-space: nowrap; }
    .header__actions { gap: 4px; }
    .header__nav--active {
        display: flex; flex-direction: column;
        position: absolute; top: 68px; left: 0; right: 0;
        background: var(--bg); border-bottom: 1px solid var(--border);
        padding: 16px; z-index: 999;
    }
    .header__nav--active::after {
        content: '';
        display: block;
        padding: 12px 0;
        margin-top: 8px;
        border-top: 1px solid var(--border);
    }
    .header__inner { gap: 10px; }
    .header__logo img { height: 28px; }
    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.3rem; }
    .hero { padding: 50px 0 40px; min-height: auto; }
    .hero__bg { background-position: 80% center; }
    .hero__overlay { background: rgba(13,11,20,0.6); }
    .hero__content {
        text-align: center; max-width: 100%;
        background: rgba(13,11,20,0.7);
        padding: 24px 20px;
        border-radius: 14px;
    }
    .hero__sub { font-size: 0.95rem; margin: 0 auto 24px; }
    .hero__badge { font-size: 0.7rem; }
    .btn--lg { padding: 12px 28px; font-size: 0.95rem; }
    .bonus-card { flex-direction: column; text-align: center; }
    .bonus-card__value { width: 100%; }
    .media-text { grid-template-columns: 1fr; text-align: center; }
    .media-text--reverse { grid-template-columns: 1fr; }
    .media-text__img { max-width: 160px; margin: 0 auto; }
    .features-grid { grid-template-columns: 1fr; }
    .banking-grid { grid-template-columns: 1fr 1fr; }
    .footer__inner { justify-content: center; text-align: center; }
    .footer__links { justify-content: center; }
    .key-info-table td:first-child { width: auto; white-space: normal; }
    .section { padding: 30px 0; }
}

@media (max-width: 480px) {
    .banking-grid { grid-template-columns: 1fr; }
    h1 { font-size: 1.4rem; }
    .features-grid { gap: 10px; }
}
