/* Tema escuro unificado */
:root {
    /* Base escura (alinhada com header #0f172a) */
    --skin__bg_1: #0f172a;
    --skin__bg_2: #0a0f1a;
    --skin__border: rgba(255, 255, 255, 0.12);
    --skin__ddt_bg: #131c2e;
    --skin__text_primary: #FFFFFF;
    --skin__neutral_1: rgba(255, 255, 255, 0.65);
    --skin__neutral_2: rgba(255, 255, 255, 0.45);
    --skin__primary: #3b82f6;
    --skin__accent_1: #60a5fa;
    --skin__accent_2: #ef4444;
    --skin__accent_3: #fbbf24;
    --skin__web_topbg_1: #3b82f6;
    --skin__web_topbg_3: #2563eb;

    /* Mapeamento para o CSS existente */
    --bg: linear-gradient(180deg, #0a0f1a 0%, #0f172a 50%, #131c2e 100%);
    --panel: rgba(255,255,255,0.04);
    --glass: rgba(255,255,255,0.06);
    --stroke: rgba(255,255,255,0.10);
    --gold: #fbbf24;
    --primary: #3b82f6;
    --primary-strong: #60a5fa;
    --accent: #60a5fa;
    --text: #ffffff;
    --muted: rgba(255, 255, 255, 0.65);
    --shadow: 0 18px 40px rgba(0,0,0,0.55);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { width: 100%; max-width: 100vw; overflow-x: hidden; }

/* Top Banner - Barra de anúncio */
.top-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #000000;
    padding: 10px 16px;
    position: relative;
    z-index: 50;
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
}

.top-banner-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
    flex-shrink: 0;
}

.top-banner-close:hover {
    color: #fff;
}

.top-banner-content {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.top-banner-logo {
    height: 24px;
    width: auto;
    flex-shrink: 0;
}

.top-banner-text {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.top-banner-btn {
    background: #22c55e;
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
    flex-shrink: 0;
}

.top-banner-btn:hover {
    background: #16a34a;
}

body {
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    padding-bottom: 86px;
    position: relative;
    letter-spacing: 0.01em;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 20% 15%, rgba(59, 130, 246, 0.08), transparent 55%),
        radial-gradient(circle at 80% 5%, rgba(96, 165, 250, 0.06), transparent 55%),
        linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.25) 100%);
    z-index: 0;
    opacity: 1;
}

a { color: inherit; text-decoration: none; }

/* =============================
   Tela inicial (CPF-only)
   ============================= */
body[data-page="cpf-only"] {
    background: linear-gradient(180deg, #0a0f1a 0%, #0f172a 50%, #131c2e 100%);
    color: #ffffff;
    padding-bottom: 0;
}

body[data-page="cpf-only"]::after {
    content: none;
}

body[data-page="cpf-only"] .vs-shell {
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr;
}

body[data-page="cpf-only"] .vs-top {
    background: #0a0f1a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
}

body[data-page="cpf-only"] .vs-logo {
    height: 78px;
    display: flex;
    align-items: center;
}

body[data-page="cpf-only"] .vs-logo-img {
    height: 42px;
    width: auto;
    max-width: min(260px, 78vw);
    display: block;
    object-fit: contain;
}

/* Menu Hamburger Button */
.vs-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-left: auto;
}

.vs-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #22c55e;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* =============================
   Página Parabéns - Header novo
   ============================= */
body[data-page="parabens"] .vs-shell {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

body[data-page="parabens"] .vs-top {
    position: sticky;
    top: 0;
    z-index: 60;
    background: #0f172a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 10px 24px rgba(2, 6, 23, 0.25);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
}

body[data-page="parabens"] .vs-logo {
    height: 68px;
    display: flex;
    align-items: center;
}

body[data-page="parabens"] .vs-logo-img {
    height: 38px;
    width: auto;
    max-width: min(220px, 70vw);
    display: block;
    object-fit: contain;
}

body[data-page="cpf-only"] .vs-logo-text {
    font-weight: 900;
    letter-spacing: 0.06em;
    font-size: 30px;
    background: linear-gradient(180deg, #00a3ff 0%, #0b5cff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

body[data-page="cpf-only"] .vs-main {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 26px 18px 0;
    min-height: calc(100vh - 78px);
    display: flex;
    flex-direction: column;
}

body[data-page="cpf-only"] .vs-hero {
    flex: 0 0 auto;
}

body[data-page="cpf-only"] .vs-title {
    font-size: clamp(28px, 8vw, 44px);
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
    color: #ffffff;
}

body[data-page="cpf-only"] .vs-subtitle {
    font-size: clamp(14px, 4vw, 18px);
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 600;
    margin-bottom: 18px;
}

body[data-page="cpf-only"] .vs-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

body[data-page="cpf-only"] .vs-form {
    display: grid;
    gap: 12px;
}

body[data-page="cpf-only"] .vs-label {
    font-weight: 800;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    margin-top: 2px;
}

body[data-page="cpf-only"] .vs-input {
    width: 100%;
    height: 54px;
    padding: 0 14px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    font-size: 16px;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    outline: none;
}

body[data-page="cpf-only"] .vs-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
}

body[data-page="cpf-only"] .vs-input:focus {
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
    background: rgba(59, 130, 246, 0.08);
}

body[data-page="cpf-only"] .btn-primary.vs-btn {
    width: 100%;
    height: 56px;
    border-radius: 10px;
    border: 0;
    cursor: pointer;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
    box-shadow: 0 14px 28px rgba(59, 130, 246, 0.3);
}

body[data-page="cpf-only"] .btn-primary.vs-btn:hover {
    filter: brightness(1.08);
    box-shadow: 0 16px 32px rgba(59, 130, 246, 0.4);
}

body[data-page="cpf-only"] .cpf-feedback {
    min-height: 18px;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.65);
}

body[data-page="cpf-only"] .cpf-feedback.error {
    color: #ef4444;
}

body[data-page="cpf-only"] .cpf-feedback.success {
    color: #22c55e;
}

body[data-page="cpf-only"] .vs-recaptcha {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.45);
}

body[data-page="cpf-only"] .vs-link {
    color: #0b5cff;
    text-decoration: none;
    font-weight: 800;
}

body[data-page="cpf-only"] .vs-link:hover {
    text-decoration: underline;
}

body[data-page="cpf-only"] .vs-banner {
    flex: 1 1 auto;
    padding: 0;
    margin-top: -20px;
    display: flex;
    align-items: flex-start;
    width: 100%;
    overflow: visible;
    min-height: 200px;
}

body[data-page="cpf-only"] .vs-banner-img {
    width: 100%;
    height: auto;
    max-height: 100%;
    display: block;
    object-fit: contain;
    object-position: top center;
}

/* Responsive - CPF Page */
@media (max-width: 380px) {
    body[data-page="cpf-only"] .vs-main {
        padding: 16px 14px 0;
    }
    body[data-page="cpf-only"] .vs-card {
        padding: 14px;
    }
    body[data-page="cpf-only"] .vs-input {
        height: 48px;
        font-size: 15px;
    }
    body[data-page="cpf-only"] .btn-primary.vs-btn {
        height: 50px;
        font-size: 16px;
    }
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 18px;
    background: rgba(22,22,22,0.96);
    border-bottom: 1px solid var(--skin__border);
    box-shadow: 0 10px 26px rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: sticky;
}

.header::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--skin__web_topbg_1), var(--skin__web_topbg_3));
    opacity: 0.95;
}

/* Header estilo 389win */
.header.header-389 {
    display: block;
    padding: 0;
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.header.header-389::after {
    content: none;
}

.top-promo {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: rgba(0,0,0,0.55);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.brand-mini {
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
    font-weight: 900;
    line-height: 1;
}

.brand-mini-389 {
    color: var(--skin__text_primary);
    font-size: 18px;
}

.brand-mini-win {
    color: var(--skin__web_topbg_1);
    font-size: 18px;
}

.top-promo-text {
    color: var(--skin__text_primary);
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 0.2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.top-promo-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 10px;
    background: linear-gradient(180deg, var(--skin__web_topbg_1) 0%, var(--skin__web_topbg_3) 100%);
    color: var(--skin__text_primary);
    font-weight: 900;
    font-size: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 20px rgba(13,145,63,0.28);
}

.nav-main {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(22,22,22,0.96);
    border-bottom: 1px solid var(--skin__border);
}

.nav-menu {
    width: 48px;
    height: 44px;
    display: grid;
    place-items: center;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.menu-lines {
    width: 28px;
    display: grid;
    gap: 6px;
}

.menu-lines > span {
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--skin__web_topbg_1), var(--skin__web_topbg_3));
    box-shadow: 0 6px 18px rgba(13,145,63,0.22);
}

.brand-large {
    display: inline-flex;
    align-items: baseline;
    justify-content: flex-start;
    gap: 2px;
    font-weight: 900;
    line-height: 1;
}

.brand-large-389 {
    color: var(--skin__text_primary);
    font-size: 52px;
    letter-spacing: -1px;
}

.brand-large-win {
    color: var(--skin__web_topbg_1);
    font-size: 44px;
    letter-spacing: -0.5px;
}

.brand-large-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--skin__web_topbg_1);
    transform: translateY(-4px);
    box-shadow: 0 0 0 4px rgba(13,145,63,0.18);
}

.nav-auth {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.auth-pill {
    display: inline-flex;
    align-items: center;
    padding: 5px;
    border-radius: 999px;
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.10);
}

.auth-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--skin__web_topbg_1) 0%, var(--skin__web_topbg_3) 100%);
    color: var(--skin__text_primary);
    font-weight: 900;
    font-size: 16px;
    min-width: 92px;
}

.auth-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    color: var(--skin__web_topbg_1);
    font-weight: 900;
    font-size: 16px;
}

.auth-tag {
    position: absolute;
    right: 0;
    top: -10px;
    transform: translateY(-50%);
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(13,145,63,0.20);
    border: 1px solid rgba(13,145,63,0.38);
    color: rgba(255,255,255,0.92);
    font-weight: 900;
    font-size: 14px;
}

.nav-sub {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(22,22,22,0.96);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.sub-left {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--skin__neutral_1);
    min-width: 0;
}

.sub-left i {
    color: var(--skin__neutral_2);
    font-size: 18px;
}

.sub-text {
    font-weight: 700;
    font-size: 18px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sub-win {
    color: var(--skin__web_topbg_1);
    font-weight: 900;
}

.sub-right {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--skin__neutral_1);
}

.sub-offer {
    font-weight: 700;
    font-size: 18px;
    color: var(--skin__neutral_2);
}

.mail-btn {
    position: relative;
    width: 54px;
    height: 44px;
    border-radius: 12px;
    background: rgba(0,0,0,0.20);
    border: 1px solid rgba(255,255,255,0.10);
    color: var(--skin__web_topbg_1);
    display: grid;
    place-items: center;
    cursor: pointer;
}

.mail-btn i {
    font-size: 22px;
}

.mail-badge {
    position: absolute;
    right: -6px;
    top: -6px;
    min-width: 26px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--skin__accent_2);
    color: #fff;
    font-weight: 900;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(22,22,22,0.96);
}

@media (max-width: 520px) {
    .top-promo-text { font-size: 16px; }
    .brand-large-389 { font-size: 44px; }
    .brand-large-win { font-size: 38px; }
    .auth-login { min-width: 84px; font-size: 15px; padding: 9px 14px; }
    .auth-register { font-size: 15px; padding: 9px 10px; }
    .sub-text, .sub-offer { font-size: 16px; }
}

.logo.logo-center { width: 100%; justify-content: center; }

/* CPF brand (nome apenas) */
.cpf-brand {
    position: relative;
    z-index: 1;
    text-align: center;
    font-weight: 900;
    letter-spacing: 0.8px;
    font-size: 30px;
    background: linear-gradient(90deg, var(--skin__text_primary) 0%, var(--skin__text_primary) 55%, var(--skin__web_topbg_1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 10px 26px rgba(0,0,0,0.55);
    margin-bottom: 16px;
}

.cpf-subtitle {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--skin__neutral_1);
    font-weight: 700;
    font-size: 14px;
    line-height: 1.35;
    margin-bottom: 14px;
}

.menu-btn, .btn-search {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(41,225,106,0.35);
    color: var(--text);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
}

.menu-btn:hover, .btn-search:hover { color: var(--primary); border-color: var(--primary); box-shadow: 0 10px 18px rgba(41,225,106,0.25); }

.logo { display: flex; align-items: baseline; gap: 4px; font-weight: 900; letter-spacing: 0.7px; }
.logo-text { color: #2df66f; font-size: 21px; text-shadow: 0 6px 18px rgba(0,0,0,0.6); }
.logo-accent { color: #9dfcae; font-size: 13px; text-transform: uppercase; }

/* Logo texto no padrão dark/clean */
.logo-text {
    color: var(--skin__text_primary);
    font-weight: 900;
    letter-spacing: 0.6px;
}

.btn-login, .btn-register {
    border: 1px solid rgba(41,225,106,0.35);
    background: rgba(255,255,255,0.06);
    color: var(--text);
    padding: 10px 16px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-login:hover { color: var(--primary); border-color: var(--primary); }
.btn-register {
    background: linear-gradient(135deg, #2df66f 0%, #1fce63 60%, #0f9c4b 100%);
    color: #04130a;
    border: none;
    box-shadow: 0 12px 26px rgba(41,225,106,0.35);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(180deg, var(--skin__web_topbg_1) 0%, var(--skin__web_topbg_3) 100%);
    color: var(--skin__text_primary);
    border: none;
    padding: 14px 16px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 14px 28px rgba(13,145,63,0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    white-space: nowrap;
}

.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 18px 36px rgba(13,145,63,0.42); }
.btn-primary:active { transform: translateY(0); }
.btn-primary:focus-visible {
    outline: none;
    box-shadow: 0 18px 36px rgba(13,145,63,0.42), 0 0 0 4px rgba(13,145,63,0.18);
}
.btn-primary.btn-success { background: linear-gradient(135deg, #7dfca1 0%, #32d57a 50%, #0fa34f 100%); color: #04130a; box-shadow: 0 16px 30px rgba(25,196,112,0.42); }
.btn-primary.btn-compact { width: auto; padding: 12px 16px; border-radius: 12px; }

.btn-text { letter-spacing: 0.4px; white-space: nowrap; }
.btn-primary.btn-success { background: linear-gradient(135deg, #7dfca1 0%, #32d57a 50%, #0fa34f 100%); color: #04130a; box-shadow: 0 16px 30px rgba(25,196,112,0.42); }
.btn-primary.btn-compact { width: auto; padding: 12px 16px; border-radius: 12px; }

/* Layout */
.main-content { width: 100%; position: relative; z-index: 1; }
.main-content.simple-centered { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 26px 18px 40px; gap: 18px; }

/* Announcement */
.announcement-bar {
    width: 100%;
    max-width: 980px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    margin: 0 18px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(37, 99, 235, 0.18));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    box-sizing: border-box;
    width: calc(100% - 36px);
}

.announcement-compact { margin-top: 8px; }
.announcement-icon, .announcement-mail { color: var(--primary); font-size: 18px; }
.announcement-mail { position: relative; }
.announcement-mail::after {
    content: '';
    position: absolute;
    top: -4px;
    right: -4px;
    width: 9px;
    height: 9px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(59, 130, 246, 0.22);
}
.announcement-text { color: var(--text); font-size: 13px; }

/* CPF Capture */
.cpf-section { width: 100%; max-width: 520px; padding: 6px; }


.cpf-card {
    position: relative;
    background:
        radial-gradient(circle at 18% 12%, rgba(13,145,63,0.10), transparent 40%),
        linear-gradient(180deg, rgba(36,36,36,0.94), rgba(22,22,22,0.94));
    border: 1px solid var(--skin__border);
    border-radius: 18px;
    padding: 24px 22px;
    box-shadow: 0 22px 50px rgba(0,0,0,0.44);
    overflow: hidden;
}

.cpf-card::before, .cpf-card::after {
    content: '';
    position: absolute;
    filter: blur(42px);
    opacity: 0.55;
    pointer-events: none;
}

.cpf-card::before { width: 220px; height: 220px; background: radial-gradient(circle, rgba(41,225,106,0.35), transparent 55%); top: -80px; right: -40px; }
.cpf-card::after  { width: 180px; height: 180px; background: radial-gradient(circle, rgba(34,193,105,0.28), transparent 55%); bottom: -60px; left: -30px; }

.cpf-card::before {
    background: radial-gradient(circle, rgba(13,145,63,0.22), transparent 60%);
}

.cpf-card::after {
    background: radial-gradient(circle, rgba(17,162,72,0.18), transparent 60%);
}

.cpf-card-header { display: flex; gap: 14px; align-items: center; margin-bottom: 14px; position: relative; z-index: 1; }

.cpf-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: radial-gradient(circle at 30% 30%, rgba(41,225,106,0.26), rgba(17,98,59,0.9));
    border: 1px solid rgba(41,225,106,0.35);
    display: grid;
    place-items: center;
    color: var(--text);
    font-size: 22px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05), 0 12px 30px rgba(0,0,0,0.4);
}

.cpf-copy h2 { color: var(--primary); font-size: 20px; letter-spacing: 0.4px; }
.cpf-copy p  { color: var(--muted); font-size: 13px; line-height: 1.5; }

.cpf-form { display: flex; flex-direction: column; gap: 14px; position: relative; z-index: 1; }
.cpf-label { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: 0.3px; font-weight: 800; }

.cpf-input-wrapper {
    width: 100%;
}

.cpf-input-shell {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0,0,0,0.18);
    border: 1px solid var(--skin__border);
    border-radius: 12px;
    min-height: 52px;
    padding: 12px 14px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cpf-input-shell:focus-within {
    border-color: rgba(13,145,63,0.9);
    background: rgba(0,0,0,0.26);
    box-shadow: inset 0 0 0 1px rgba(13,145,63,0.22), 0 0 0 4px rgba(13,145,63,0.10);
}

.cpf-input-shell.has-error {
    border-color: rgba(201,50,50,0.95);
    background: rgba(0,0,0,0.26);
    box-shadow: inset 0 0 0 1px rgba(201,50,50,0.18), 0 0 0 4px rgba(201,50,50,0.10), 0 14px 28px rgba(0,0,0,0.35);
}

.cpf-input-prefix {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--skin__neutral_1);
    padding: 4px 2px;
    min-width: 52px;
}

.cpf-flag {
    width: 30px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.10);
    font-size: 15px;
}

.cpf-prefix-text {
    color: var(--skin__neutral_1);
    font-weight: 800;
    letter-spacing: 0.2px;
}

.cpf-input-divider {
    width: 1px;
    align-self: stretch;
    background: rgba(255,255,255,0.12);
}

.cpf-input-shell.has-error .cpf-input-divider {
    background: rgba(201,50,50,0.55);
}

.cpf-input-wrapper input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 16px;
    font-weight: 600;
    outline: none;
    padding: 2px 0;
}

.cpf-input-wrapper input::placeholder { color: var(--skin__neutral_2); }
.cpf-input-wrapper input.input-error { border-bottom: 2px solid var(--skin__accent_2); }

.cpf-meta { display: flex; flex-wrap: wrap; gap: 10px; color: var(--muted); font-size: 12px; }
.cpf-meta span { padding: 8px 10px; border-radius: 12px; background: rgba(255,255,255,0.05); border: 1px solid rgba(41,225,106,0.2); display: inline-flex; align-items: center; gap: 8px; }
.cpf-meta i { color: var(--primary); }
.cpf-feedback { min-height: 18px; font-size: 13px; font-weight: 800; color: var(--skin__accent_1); text-align: center; }
.cpf-feedback.error { color: var(--skin__accent_2); }

/* Banner */
.banner-carousel { padding: 18px; }
.banner-slide { display: none; }
.banner-slide.active { display: block; }
.banner-img { width: 100%; max-height: 190px; object-fit: cover; border-radius: 18px; box-shadow: var(--shadow); border: 1px solid rgba(255, 255, 255, 0.12); }

/* Jackpot */
.jackpot-section { padding: 0 18px 14px; }
.jackpot-container {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    padding: 14px 12px;
    background: linear-gradient(145deg, #0a0f1a 0%, #0f172a 50%, #131c2e 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 
        0 0 15px rgba(0, 0, 0, 0.3),
        0 16px 35px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.jackpot-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(255, 255, 255, 0.03) 60deg,
        transparent 120deg
    );
    animation: jackpotSpin 8s linear infinite;
    pointer-events: none;
}

.jackpot-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.06), transparent 45%),
        radial-gradient(circle at 70% 80%, rgba(100, 150, 255, 0.05), transparent 45%);
    pointer-events: none;
}

@keyframes jackpotSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes jackpotPulse {
    0%, 100% { 
        text-shadow: 0 0 6px rgba(255, 255, 255, 0.3);
        transform: scale(1);
    }
    50% { 
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        transform: scale(1.01);
    }
}

.jackpot-display { 
    text-align: center; 
    position: relative; 
    z-index: 1; 
}

.jackpot-title { 
    color: rgba(255, 255, 255, 0.85);
    font-size: 10px; 
    letter-spacing: 4px; 
    margin-bottom: 8px;
    font-weight: 800;
    text-transform: uppercase;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.jackpot-numbers { 
    display: flex; 
    justify-content: center; 
    align-items: center;
    gap: 3px;
    flex-wrap: wrap;
}

.jackpot-digit {
    background: linear-gradient(180deg, #0a0f1a 0%, #050810 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    width: 22px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 900;
    font-family: 'Inter', 'Courier New', monospace;
    box-shadow: 
        inset 0 -3px 8px rgba(0, 0, 0, 0.7),
        inset 0 1px 3px rgba(255, 255, 255, 0.03),
        0 5px 12px rgba(0, 0, 0, 0.4);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
    animation: jackpotPulse 2.5s ease-in-out infinite;
}

.jackpot-separator {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 900;
    padding: 0 1px;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.2);
    animation: jackpotPulse 2.5s ease-in-out infinite;
}

.jackpot-label {
    margin-top: 8px;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Search Bar */
.search-bar-container {
    padding: 12px 18px 0;
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    transition: all 0.2s ease;
}

.search-bar:focus-within {
    border-color: var(--primary);
    background: rgba(59, 130, 246, 0.08);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.search-icon {
    color: var(--muted);
    font-size: 16px;
    flex-shrink: 0;
}

.search-bar:focus-within .search-icon {
    color: var(--primary);
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text);
    font-size: 15px;
    font-family: inherit;
    font-weight: 600;
}

.search-input::placeholder {
    color: var(--muted);
    font-weight: 500;
}

/* Tabs & Games */
.category-tabs { display: flex; gap: 12px; padding: 12px 18px; overflow-x: auto; -webkit-overflow-scrolling: touch; border-bottom: 1px solid rgba(255, 255, 255, 0.10); }

.tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    color: var(--muted);
    border: 1px solid rgba(255, 255, 255, 0.12);
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 800;
}

.tab-btn i { font-size: 16px; }
.tab-btn.active { color: #ffffff; border-color: var(--primary); background: rgba(59, 130, 246, 0.15); box-shadow: 0 8px 20px rgba(59, 130, 246, 0.25); }
.tab-btn.active i { color: var(--primary); }

.games-section { padding: 18px; }
.section-header { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.fire-icon { color: #ef4444; font-size: 22px; }
.section-header h3 { color: #ffffff; font-weight: 900; letter-spacing: 0.4px; }

.games-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }

.game-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255,255,255,0.04);
    box-shadow: 0 16px 32px rgba(0,0,0,0.45);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.game-card:hover { transform: translateY(-4px); box-shadow: 0 18px 34px rgba(0,0,0,0.55); }
.game-card img { width: 100%; height: 100%; object-fit: cover; }
.game-badge { position: absolute; top: 8px; left: 8px; padding: 6px 8px; background: rgba(59, 130, 246, 0.25); border: 1px solid rgba(255, 255, 255, 0.15); color: #ffffff; font-size: 10px; border-radius: 10px; }
.game-favorite { position: absolute; top: 8px; right: 8px; color: var(--primary); font-size: 14px; text-shadow: 0 0 10px rgba(59, 130, 246, 0.6); }
.game-title { position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 8px 10px; background: linear-gradient(180deg, transparent 0%, rgba(10, 15, 26, 0.90) 90%); text-align: center; color: var(--text); font-size: 10px; font-weight: 900; letter-spacing: 0.2px; }

/* Bottom Nav */
.bottom-nav {
    position: fixed;
    inset: auto 0 0;
    display: flex;
    justify-content: space-around;
    padding: 12px 10px 16px;
    background: linear-gradient(180deg, rgba(10, 15, 26, 0.85) 0%, rgba(10, 15, 26, 0.98) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px);
    z-index: 50;
}

.nav-item {
    color: var(--muted);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    padding: 8px 10px;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.nav-item i { font-size: 18px; }
.nav-item.active { color: #ffffff; background: rgba(59, 130, 246, 0.15); box-shadow: 0 8px 20px rgba(59, 130, 246, 0.20); }

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(216,29,29,0.14), transparent 35%), rgba(5, 4, 7, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
    z-index: 100;
    backdrop-filter: blur(8px);
}

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

.modal-content {
    position: relative;
    width: min(420px, 100%);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(10, 15, 26, 0.98));
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
    box-shadow: 0 26px 60px rgba(0,0,0,0.6);
    transform: translateY(26px) scale(0.98);
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    backdrop-filter: blur(8px);
}

.modal-overlay.active .modal-content { transform: translateY(0) scale(1); }
.modal-glow { position: absolute; inset: 0; background: radial-gradient(circle at 70% 20%, rgba(59, 130, 246, 0.10), transparent 50%); pointer-events: none; }

.modal-header {
    padding: 26px 20px 24px;
    text-align: center;
    background: linear-gradient(135deg, #0a0f1a 0%, #0f172a 60%, #131c2e 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    overflow: hidden;
}

.header-decoration .coin { position: absolute; opacity: 0.55; font-size: 22px; }
.coin-1 { top: 12%; left: 10%; }
.coin-2 { top: 24%; right: 8%; }
.coin-3 { bottom: 18%; left: 28%; }

.trophy-container { position: relative; display: inline-block; margin-bottom: 8px; }
.trophy-glow { position: absolute; inset: -16px; background: radial-gradient(circle, rgba(59, 130, 246, 0.30), transparent 60%); filter: blur(10px); }
.trophy-emoji { position: relative; font-size: 48px; z-index: 1; text-shadow: 0 6px 18px rgba(0,0,0,0.45); }

.verified-seal {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-flex;
    gap: 6px;
    align-items: center;
    padding: 8px 10px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.30);
    border-radius: 999px;
    color: #22c55e;
    font-size: 10px;
    letter-spacing: 0.4px;
}

.modal-title { 
    color: #ffffff; 
    font-size: 22px; 
    font-weight: 900; 
    letter-spacing: 0.4px; 
    text-shadow: 0 6px 18px rgba(0,0,0,0.5); 
    white-space: nowrap;
    text-align: center;
}
.modal-subtitle { 
    color: var(--muted); 
    margin-top: 6px; 
    font-size: 13px; 
    text-align: center;
    line-height: 1.4;
}
.modal-subtitle #userName { color: #22c55e; font-weight: 600; }
.modal-cpf { 
    color: rgba(255,255,255,0.5); 
    font-size: 12px; 
    margin-top: 4px; 
    font-family: monospace; 
    text-align: center;
}

.modal-body { padding: 18px; }

.prize-container { position: relative; margin-bottom: 18px; }
.prize-glow-effect { position: absolute; inset: -10px; background: radial-gradient(circle, rgba(245,211,109,0.18), transparent 60%); filter: blur(18px); }
.prize-inner {
    position: relative;
    background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 18px;
    text-align: center;
    z-index: 1;
    box-shadow: 0 16px 32px rgba(0,0,0,0.4);
}

.prize-label { color: var(--muted); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; }
.prize-value { display: flex; justify-content: center; gap: 6px; align-items: flex-end; margin: 6px 0; }
.prize-currency { color: var(--muted); font-size: 18px; font-weight: 700; }
.prize-amount { color: #ffffff; font-size: 40px; font-weight: 900; text-shadow: 0 0 18px rgba(59, 130, 246, 0.4); }
.prize-badge { display: inline-flex; gap: 8px; align-items: center; padding: 8px 12px; border-radius: 12px; background: rgba(59, 130, 246, 0.15); color: var(--text); border: 1px solid rgba(59, 130, 246, 0.3); font-size: 11px; }

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 12px; }
.feature-item { background: rgba(255,255,255,0.04); border: 1px solid rgba(255, 255, 255, 0.10); border-radius: 12px; padding: 12px 8px; text-align: center; }
.feature-icon { width: 40px; height: 40px; border-radius: 12px; background: rgba(59, 130, 246, 0.15); display: grid; place-items: center; margin: 0 auto 8px; color: var(--primary); }
.feature-text { color: var(--text); font-size: 11px; font-weight: 800; }

.live-counter { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 12px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255, 255, 255, 0.10); border-radius: 12px; margin-bottom: 12px; }
.live-dot { width: 12px; height: 12px; border-radius: 50%; background: #22c55e; position: relative; }
.live-dot::after { content: ''; position: absolute; inset: -6px; border-radius: 50%; background: rgba(34, 197, 94, 0.25); animation: pulse 1.4s ease-out infinite; }
.live-text { color: var(--muted); font-weight: 800; }
.live-number { color: #ffffff; font-size: 16px; font-weight: 900; }

.winners-list { background: rgba(255,255,255,0.03); border: 1px solid rgba(255, 255, 255, 0.10); border-radius: 14px; padding: 10px; box-shadow: inset 0 1px 0 rgba(255,255,255,0.03); }
.winner-item { display: flex; align-items: center; gap: 10px; padding: 10px; border-radius: 12px; background: rgba(0,0,0,0.30); border: 1px solid rgba(255, 255, 255, 0.08); margin-bottom: 8px; }
.winner-item:last-child { margin-bottom: 0; }
.winner-avatar { width: 40px; height: 40px; border-radius: 12px; background: linear-gradient(135deg, #3b82f6, #2563eb); display: grid; place-items: center; font-weight: 900; color: #ffffff; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2); }
.winner-name { color: var(--text); font-size: 12px; font-weight: 800; display: block; }
.winner-value { color: #22c55e; font-size: 11px; font-weight: 800; display: block; }
.winner-time { color: var(--muted); font-size: 11px; }

.modal-footer { padding: 16px 18px 22px; text-align: center; }
.security-badges { margin-top: 12px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.security-badges span { color: var(--muted); font-size: 11px; display: inline-flex; gap: 6px; align-items: center; white-space: nowrap; }
.security-badges i { color: var(--primary); }

/* Step 2 */
.header-step2 { padding-bottom: 12px; }
.step-progress { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 14px; }
.step-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.step-circle { width: 32px; height: 32px; border-radius: 50%; border: 2px solid rgba(255, 255, 255, 0.15); display: grid; place-items: center; color: var(--muted); font-weight: 800; background: rgba(255,255,255,0.05); }
.step-item.completed .step-circle { background: var(--primary); color: #ffffff; border-color: var(--primary); }
.step-item.active .step-circle { background: #fff; color: #0f172a; box-shadow: 0 10px 24px rgba(255,255,255,0.25); }
.step-line { width: 36px; height: 3px; background: rgba(255, 255, 255, 0.12); border-radius: 2px; }
.step-line.completed { background: var(--primary); }
.step-item span { color: var(--muted); font-size: 10px; }
.step-item.active span { color: #ffffff; font-weight: 800; }

.summary-card { 
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(10, 15, 26, 0.98)); 
    border: 1px solid rgba(255, 255, 255, 0.08); 
    border-radius: 20px; 
    overflow: hidden; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.5); 
    margin-bottom: 16px; 
}
.summary-header { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    padding: 14px 18px; 
    background: rgba(59, 130, 246, 0.08); 
    border-bottom: 1px solid rgba(255, 255, 255, 0.06); 
    color: #ffffff; 
    font-weight: 700; 
    font-size: 15px;
}
.summary-header i { color: var(--primary); font-size: 16px; }
.summary-rows { padding: 18px; }
.summary-row { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 14px 0; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.summary-row:last-child { border-bottom: none; }
.summary-label { 
    display: flex; 
    gap: 10px; 
    align-items: center; 
    color: rgba(255, 255, 255, 0.7); 
    font-size: 14px; 
    font-weight: 500;
}
.summary-label i { 
    width: 32px; 
    height: 32px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    background: rgba(59, 130, 246, 0.15); 
    border-radius: 10px; 
    color: var(--primary); 
    font-size: 14px;
}
.summary-value { font-weight: 700; color: var(--text); font-size: 16px; }
.summary-value.positive { color: #22c55e; font-size: 18px; font-weight: 800; }
.summary-value.negative { color: #ef4444; font-weight: 600; }
.summary-divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent); margin: 6px 0; }
.summary-row.total { 
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(34, 197, 94, 0.05)); 
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 14px; 
    padding: 16px; 
    margin: 12px -6px -6px;
    border-bottom: none;
}
.summary-row.total .summary-label { color: #ffffff; font-weight: 600; }
.summary-row.total .summary-label i { background: rgba(34, 197, 94, 0.2); color: #22c55e; }
.summary-value.highlight { color: #22c55e; font-size: 22px; font-weight: 800; }

/* Info Box */
.info-box {
    display: flex;
    gap: 12px;
    padding: 14px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 14px;
    margin-bottom: 12px;
    align-items: flex-start;
}
.info-box i {
    color: var(--primary);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}
.info-box p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

/* Countdown Box */
.countdown-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.15);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}
.countdown-box i {
    color: #ef4444;
    font-size: 14px;
}
.countdown-box strong {
    color: #ef4444;
    font-weight: 700;
}

.info-alert { display: flex; gap: 12px; padding: 12px; background: rgba(59, 130, 246, 0.10); border: 1px solid rgba(59, 130, 246, 0.25); border-radius: 14px; margin-bottom: 12px; }
.alert-icon { width: 38px; height: 38px; border-radius: 12px; background: rgba(255,255,255,0.06); display: grid; place-items: center; color: var(--primary); }
.alert-content strong { color: #ffffff; font-size: 13px; }
.alert-content p { color: var(--muted); font-size: 12px; line-height: 1.5; margin-top: 4px; }

.guarantee-card { display: flex; gap: 12px; align-items: center; padding: 12px; background: rgba(34, 197, 94, 0.10); border: 1px solid rgba(34, 197, 94, 0.25); border-radius: 14px; margin-bottom: 12px; }
.guarantee-icon { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,0.08); display: grid; place-items: center; color: #22c55e; }
.guarantee-content strong { color: var(--text); font-size: 13px; }
.guarantee-content p { color: var(--muted); font-size: 12px; line-height: 1.4; margin-top: 3px; }
.guarantee-badge { width: 32px; height: 32px; border-radius: 50%; background: rgba(59, 130, 246, 0.20); display: grid; place-items: center; color: var(--primary); }

.timer-urgency { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 11px; background: rgba(239, 68, 68, 0.10); border: 1px solid rgba(239, 68, 68, 0.25); border-radius: 12px; margin-bottom: 8px; color: #ffffff; font-weight: 800; }
.timer-urgency i { color: #ef4444; }
.timer-urgency strong { color: #ef4444; }

.payment-methods { display: flex; gap: 10px; align-items: center; justify-content: center; margin-top: 10px; color: var(--muted); font-size: 12px; }
.methods-icons { display: inline-flex; gap: 6px; align-items: center; padding: 6px 10px; border-radius: 10px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255, 255, 255, 0.12); color: var(--text); }

/* PIX Form Styles */
.pix-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pix-type-selector {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.pix-type-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pix-type-option input {
    display: none;
}

.pix-type-option i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
}

.pix-type-option span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    transition: color 0.2s;
}

.pix-type-option:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.pix-type-option.active {
    background: rgba(59, 130, 246, 0.15);
    border-color: var(--primary);
}

.pix-type-option.active i {
    color: var(--primary);
}

.pix-type-option.active span {
    color: #ffffff;
}

.pix-input-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pix-input-label {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.pix-input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.2s ease;
}

.pix-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(59, 130, 246, 0.08);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.pix-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.pix-input-hint {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.pix-info-card {
    display: flex;
    gap: 12px;
    padding: 14px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.15);
    border-radius: 14px;
    align-items: flex-start;
}

.pix-info-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, 0.15);
    border-radius: 10px;
    flex-shrink: 0;
}

.pix-info-icon i {
    color: #22c55e;
    font-size: 16px;
}

.pix-info-text strong {
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.pix-info-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    line-height: 1.4;
    margin: 0;
}

.btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 8px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

/* Animations */
@keyframes pulse { from { transform: scale(1); opacity: 1; } to { transform: scale(1.8); opacity: 0; } }

/* Responsive */
@media (max-width: 520px) {
    .main-content.simple-centered { padding-top: 18px; }
    .cpf-input-shell { padding: 12px 12px; }
    .cpf-input-prefix { min-width: 78px; }
    .games-grid { grid-template-columns: repeat(2, 1fr); }
    .tab-btn { white-space: nowrap; font-size: 12px; padding: 10px 14px; }
    
    /* Top Banner Mobile */
    .top-banner {
        padding: 8px 12px;
        gap: 8px;
    }
    .top-banner-logo { height: 20px; }
    .top-banner-text { font-size: 12px; }
    .top-banner-btn { padding: 6px 12px; font-size: 11px; }
    
    /* Modal Mobile */
    .modal-content { margin: 10px; }
    .modal-title { font-size: 18px; }
    .modal-subtitle { font-size: 12px; }
    .modal-header { padding: 16px 14px; }
    .modal-body { padding: 14px; }
    .modal-footer { padding: 14px; }
    
    /* Prize */
    .prize-amount { font-size: 32px; }
    .prize-currency { font-size: 14px; }
    .prize-label { font-size: 10px; }
    .prize-badge { font-size: 10px; padding: 6px 10px; }
    
    /* Steps */
    .step-progress { gap: 4px; }
    .step-circle { width: 26px; height: 26px; font-size: 12px; }
    .step-line { width: 24px; }
    .step-item span { font-size: 9px; }
    
    /* Summary */
    .summary-header { padding: 10px 12px; font-size: 13px; }
    .summary-rows { padding: 12px; }
    .summary-row { padding: 10px 0; }
    .summary-label { font-size: 12px; gap: 8px; }
    .summary-label i { width: 26px; height: 26px; font-size: 12px; }
    .summary-value { font-size: 14px; }
    .summary-value.positive { font-size: 16px; }
    .summary-value.highlight { font-size: 18px; }
    .summary-row.total { padding: 12px; }
    
    /* Buttons */
    .btn-primary { padding: 12px 14px; font-size: 13px; }
    .btn-secondary { padding: 10px; font-size: 13px; }
    
    /* PIX Form */
    .pix-type-selector { grid-template-columns: repeat(4, 1fr); gap: 6px; }
    .pix-type-option { padding: 10px 6px; }
    .pix-type-option i { font-size: 16px; }
    .pix-type-option span { font-size: 10px; }
    .pix-input { padding: 12px 14px; font-size: 15px; }
    .pix-input-label { font-size: 13px; }
    
    /* Info boxes */
    .info-box { padding: 12px; }
    .info-box p { font-size: 12px; }
    .countdown-box { padding: 10px; font-size: 13px; }
    
    /* Winners */
    .winners-list { gap: 8px; }
    .winner-avatar { width: 34px; height: 34px; }
    .winner-name { font-size: 11px; }
    .winner-value { font-size: 10px; }
    
    /* Live counter */
    .live-counter { padding: 10px 14px; }
    .live-text { font-size: 12px; }
    
    /* Jackpot */
    .jackpot-card { padding: 16px; }
    .jackpot-value { font-size: 28px; }
    .jackpot-label { font-size: 10px; }
    
    /* Announcement */
    .announcement-bar { margin: 0 12px; width: calc(100% - 24px); font-size: 12px; }
    
    /* Search */
    .search-bar-container { margin: 0 12px 12px; }
    .search-input { font-size: 14px; }
    
    /* Security badges */
    .security-badges { gap: 8px; }
    .security-badges span { font-size: 10px; }
    
    /* Payment methods */
    .payment-methods { font-size: 11px; }
}

@media (max-width: 360px) {
    .modal-title { font-size: 16px; }
    .prize-amount { font-size: 28px; }
    .pix-type-option span { display: none; }
    .pix-type-option { padding: 12px 8px; }
    .step-line { width: 18px; }
    .top-banner-text { font-size: 11px; }
}

@media (min-width: 640px) { .games-grid { grid-template-columns: repeat(4, 1fr); } }

