/* ======= BDG WIN AI Predictor Theme System ======= */
:root {
    --bg: #050911;
    --panel: rgba(13, 20, 31, .85);
    --panel-strong: rgba(9, 15, 24, .95);
    --line: rgba(125, 157, 184, .18);
    --line-blue: rgba(0, 194, 255, .58);
    --cyan: #21c8ff;
    --gold: #ffd15c;
    --green: #5cf078;
    --red: #ff5d5d;
    --violet: #a66cff;
    --text: #f7fbff;
    --muted: #8c98aa;
    --dark: #02050a;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

html {
    background: var(--dark);
    color-scheme: dark;
}

body {
    min-height: 100vh;
    color: var(--text);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background:
        radial-gradient(circle at 50% 0%, rgba(33, 200, 255, 0.12), transparent 40%),
        radial-gradient(circle at 100% 50%, rgba(255, 209, 92, 0.05), transparent 30%),
        linear-gradient(180deg, rgba(11, 18, 29, .94), rgba(2, 5, 10, 1) 75%);
    background-attachment: fixed;
    overflow-x: hidden;
    user-select: none;
    -webkit-user-select: none;
}

/* Background Cyber Grid Overlay */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: linear-gradient(to bottom, black, transparent 80%);
    z-index: 0;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }

/* Main Shell Container (Mobile First Layout) */
.app-shell {
    width: min(100%, 470px);
    margin: 0 auto;
    min-height: 100vh;
    padding: 18px 16px 105px;
    position: relative;
    z-index: 1;
}

/* Top Header Bar */
.topbar {
    display: grid;
    grid-template-columns: 42px 1fr auto auto;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.icon-btn {
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255,255,255,.045);
    color: var(--text);
    display: grid;
    place-items: center;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
    transition: all 0.2s ease;
    position: relative;
}

.icon-btn:active {
    transform: scale(0.94);
    background: rgba(33, 200, 255, 0.15);
}

.notify-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 8px var(--red);
}

.brand-link {
    display: flex;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-emblem {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--gold), #d4af37);
    color: #000;
    display: grid;
    place-items: center;
    font-size: 16px;
    box-shadow: 0 0 14px rgba(255, 209, 92, 0.4);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 26px;
    line-height: .9;
    font-weight: 900;
    letter-spacing: .04em;
}

.brand-title span {
    color: var(--cyan);
    text-shadow: 0 0 18px rgba(33,200,255,.4);
}

.brand-sub {
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
    margin-top: 3px;
}

.wallet-pill {
    min-width: 110px;
    height: 42px;
    padding: 0 10px;
    border-radius: 15px;
    border: 1px solid var(--line);
    background: rgba(7, 12, 20, .78);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #eaf6ff;
    font-weight: 800;
    font-size: 13.5px;
    box-shadow: 0 12px 28px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.07);
    transition: all 0.2s ease;
}

.wallet-pill:active {
    transform: scale(0.96);
    border-color: var(--cyan);
}

.wallet-pill i { color: var(--cyan); }

.wallet-add {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--cyan);
    color: #00131d;
    font-size: 11px;
    margin-left: 2px;
    box-shadow: 0 0 10px rgba(33, 200, 255, 0.4);
}

/* User Profile Row */
.profile-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.profile-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    cursor: pointer;
}

.avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--cyan);
    font-size: 22px;
    font-weight: 900;
    background: linear-gradient(145deg, rgba(33,200,255,.22), rgba(33,200,255,.04));
    border: 2px solid rgba(33,200,255,.75);
    box-shadow: 0 0 22px rgba(33,200,255,.25);
}

.profile-name {
    font-size: 17px;
    font-weight: 800;
    max-width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.profile-role {
    color: var(--cyan);
    font-weight: 700;
    font-size: 12.5px;
    margin-top: 2px;
}

.vip-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 14px;
    color: var(--gold);
    background: linear-gradient(135deg, rgba(255,209,92,.16), rgba(255,209,92,.04));
    border: 1px solid rgba(255,209,92,.6);
    font-weight: 900;
    font-size: 13px;
    box-shadow: 0 0 20px rgba(255,209,92,.12);
    white-space: nowrap;
    transition: all 0.2s ease;
}

.vip-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 26px rgba(255,209,92,.25);
}

/* Game Category Tabs */
.game-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 18px;
    background: rgba(9, 15, 24, 0.7);
    padding: 5px;
    border-radius: 16px;
    border: 1px solid var(--line);
}

.game-tab {
    height: 38px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 800;
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.25s ease;
}

.game-tab.active {
    color: var(--text);
    background: linear-gradient(135deg, rgba(33, 200, 255, 0.25), rgba(33, 200, 255, 0.08));
    border: 1px solid var(--line-blue);
    box-shadow: 0 0 16px rgba(33, 200, 255, 0.2);
}

/* Live Signal Prediction Card */
.signal-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    padding: 20px 18px;
    background:
        linear-gradient(145deg, rgba(9,17,28,.96), rgba(4,9,15,.92)),
        radial-gradient(circle at 28% 45%, rgba(33,200,255,.18), transparent 40%);
    border: 1px solid var(--line-blue);
    box-shadow: 0 22px 52px rgba(0,0,0,.4), 0 0 30px rgba(33,200,255,.15);
    margin-bottom: 20px;
}

.signal-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.live-title {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: .03em;
}

.live-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 18px rgba(255,93,93,.9);
    animation: pulse 1.4s ease-in-out infinite;
}

.round-id {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.round-id span {
    color: var(--cyan);
    font-weight: 800;
}

.signal-body {
    display: grid;
    grid-template-columns: 165px 1fr;
    gap: 16px;
    align-items: center;
}

/* Prediction Orbit Dial */
.orbit-container {
    display: flex;
    justify-content: center;
}

.signal-orbit {
    aspect-ratio: 1;
    width: 155px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    position: relative;
    background:
        radial-gradient(circle, rgba(33,200,255,.12) 0 45%, transparent 46%),
        conic-gradient(from 25deg, var(--cyan) 0 32%, transparent 32% 39%, var(--cyan) 39% 60%, transparent 60% 69%, var(--cyan) 69% 88%, transparent 88%);
    padding: 10px;
    filter: drop-shadow(0 0 20px rgba(33,200,255,.35));
    transition: transform 0.4s ease;
}

.signal-orbit.scanning {
    animation: rotateScan 1.2s linear infinite;
}

.signal-orbit::before {
    content: "";
    position: absolute;
    inset: 9px;
    border-radius: 50%;
    border: 1px solid rgba(33,200,255,.4);
    background: radial-gradient(circle, rgba(8,15,24,.98) 48%, rgba(33,200,255,.1));
    box-shadow: inset 0 0 26px rgba(33,200,255,.2);
}

.signal-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.signal-sub-label {
    font-size: 9px;
    font-weight: 800;
    color: var(--muted);
    letter-spacing: 0.14em;
    margin-bottom: 2px;
}

.signal-word {
    font-family: 'Rajdhani', sans-serif;
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(255, 209, 92, 0.6);
    letter-spacing: 0.04em;
}

.signal-word.big { color: var(--gold); text-shadow: 0 0 20px rgba(255,209,92,.6); }
.signal-word.small { color: var(--cyan); text-shadow: 0 0 20px rgba(33,200,255,.6); }
.signal-word.red { color: var(--red); text-shadow: 0 0 20px rgba(255,93,93,.6); }
.signal-word.green { color: var(--green); text-shadow: 0 0 20px rgba(92,240,120,.6); }

.signal-extra {
    font-size: 10px;
    font-weight: 800;
    color: var(--cyan);
    margin-top: 2px;
    letter-spacing: 0.06em;
}

.signal-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.confidence-title {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 700;
    color: var(--muted);
}

.confidence-title strong {
    color: var(--cyan);
    font-size: 15px;
}

/* 10-bar LED Meter */
.meter {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 3px;
    height: 10px;
}

.meter span {
    border-radius: 3px;
    background: rgba(255,255,255,.08);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.meter span.on {
    background: var(--cyan);
    box-shadow: 0 0 8px rgba(33, 200, 255, 0.6);
}

.timer-block {
    margin-top: 4px;
}

.next-label {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 2px;
}

.timer {
    font-family: 'Rajdhani', sans-serif;
    font-size: 26px;
    font-weight: 900;
    color: var(--text);
    letter-spacing: 0.05em;
}

.btn-predict-action {
    width: 100%;
    height: 40px;
    margin-top: 4px;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--cyan), #0099cc);
    color: #00131d;
    font-weight: 900;
    font-size: 12.5px;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 6px 20px rgba(33, 200, 255, 0.3);
    transition: all 0.2s ease;
}

.btn-predict-action:active {
    transform: scale(0.97);
}

/* Section Header Rows */
.section-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 22px 0 12px;
}

.section-row h2 {
    font-size: 17px;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.btn-text {
    color: var(--cyan);
    font-size: 12.5px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Recent Prediction Results Strip */
.results-strip {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
}

.results-strip::-webkit-scrollbar { display: none; }

.result-pill {
    flex: 0 0 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    font-weight: 900;
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(12, 19, 30, .8);
}

.result-pill small {
    font-family: 'Inter', sans-serif;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin-top: -2px;
}

.result-green {
    border-color: rgba(92,240,120,.5);
    color: var(--green);
    background: rgba(92,240,120,.08);
}

.result-red {
    border-color: rgba(255,93,93,.5);
    color: var(--red);
    background: rgba(255,93,93,.08);
}

.result-violet {
    border-color: rgba(166,108,255,.5);
    color: var(--violet);
    background: rgba(166,108,255,.08);
}

/* Stats Cards Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 14px;
}

.stat-card {
    background: rgba(9, 15, 24, .82);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 12px 10px;
}

.stat-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
}

.stat-icon {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    background: rgba(33, 200, 255, 0.1);
    color: var(--cyan);
    display: grid;
    place-items: center;
    font-size: 11px;
}

.stat-icon.streak-icon {
    background: rgba(255, 209, 92, 0.12);
    color: var(--gold);
}

.stat-value {
    font-family: 'Rajdhani', sans-serif;
    font-size: 24px;
    font-weight: 900;
    margin-top: 6px;
}

.stat-note {
    font-size: 10px;
    font-weight: 700;
    color: var(--muted);
    margin-top: 2px;
}

.stat-note.good { color: var(--green); }

/* Live Games Cards */
.games-grid {
    display: grid;
    gap: 12px;
}

.game-card {
    display: grid;
    grid-template-columns: 76px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 12px 14px;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: rgba(9, 15, 24, .85);
    cursor: pointer;
    transition: all 0.25s ease;
}

.game-card:hover {
    border-color: var(--line-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.game-card-icon {
    width: 76px;
    height: 68px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    font-size: 28px;
}

.wingo-bg {
    background: linear-gradient(135deg, rgba(33,200,255,.25), rgba(33,200,255,.05));
    color: var(--cyan);
    border: 1px solid rgba(33,200,255,.3);
}

.d5-bg {
    background: linear-gradient(135deg, rgba(255,209,92,.25), rgba(255,209,92,.05));
    color: var(--gold);
    border: 1px solid rgba(255,209,92,.3);
}

.k3-bg {
    background: linear-gradient(135deg, rgba(92,240,120,.25), rgba(92,240,120,.05));
    color: var(--green);
    border: 1px solid rgba(92,240,120,.3);
}

.game-kicker {
    color: var(--green);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.game-info h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
}

.game-info p {
    color: var(--muted);
    font-size: 11.5px;
    font-weight: 700;
    margin-top: 4px;
}

.play-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #00131d;
    background: var(--cyan);
    box-shadow: 0 0 16px rgba(33,200,255,.3);
    font-size: 14px;
}

/* Live Winners Feed */
.winners-card {
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 16px 18px;
    background: rgba(12, 19, 30, .8);
    margin-top: 22px;
}

.winners-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 10px;
}

.winner-trophy {
    color: var(--gold);
    font-size: 18px;
}

.winners-head h2 {
    font-size: 17px;
    font-weight: 900;
    flex: 1;
}

.live-badge {
    background: rgba(92,240,120,.15);
    color: var(--green);
    border: 1px solid rgba(92,240,120,.4);
    font-size: 9px;
    font-weight: 900;
    padding: 3px 7px;
    border-radius: 8px;
    letter-spacing: 0.08em;
}

.winners-list {
    max-height: 240px;
    overflow-y: auto;
    scrollbar-width: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.winners-list::-webkit-scrollbar { display: none; }

.winner-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 13px;
    animation: winnerFadeIn 0.4s ease-in-out;
}

.winner-phone {
    font-weight: 700;
    color: #eaf6ff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.winner-phone i {
    color: var(--green);
    font-size: 11px;
}

.winner-game {
    color: var(--muted);
    font-size: 11.5px;
}

.winner-amount {
    font-weight: 900;
    color: var(--gold);
}

/* VIP Card Banner */
.vip-card {
    margin-top: 22px;
    display: grid;
    grid-template-columns: 50px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 209, 92, 0.5);
    background: linear-gradient(135deg, rgba(255,209,92,.14), rgba(255,209,92,.03));
}

.vip-emblem {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--gold), #d4af37);
    color: #000;
    display: grid;
    place-items: center;
    font-size: 22px;
    box-shadow: 0 0 20px rgba(255, 209, 92, 0.3);
}

.vip-content h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: var(--gold);
}

.vip-content p {
    font-size: 11.5px;
    color: var(--muted);
    margin-top: 2px;
    font-weight: 700;
}

.manage-btn {
    padding: 8px 14px;
    border-radius: 12px;
    background: var(--gold);
    color: #000;
    font-weight: 900;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Trust Row */
.trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 22px;
    padding: 14px;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: rgba(9, 15, 24, .6);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-item i {
    color: var(--cyan);
    font-size: 20px;
}

.trust-item strong {
    display: block;
    font-size: 12px;
    line-height: 1.2;
}

.trust-item span {
    color: var(--muted);
    font-size: 9.5px;
    font-weight: 700;
}

/* Fixed Bottom Mobile Navigation */
.bottom-nav {
    position: fixed;
    left: 50%;
    bottom: 14px;
    z-index: 100;
    transform: translateX(-50%);
    width: min(calc(100% - 24px), 446px);
    height: 72px;
    border-radius: 24px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    padding: 6px 8px;
    background: rgba(12, 18, 27, .94);
    border: 1px solid var(--line);
    backdrop-filter: blur(18px);
    box-shadow: 0 -10px 38px rgba(0,0,0,.4);
}

.nav-item {
    height: 56px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: #87919f;
    font-size: 10.5px;
    font-weight: 800;
    transition: all 0.2s ease;
}

.nav-item i { font-size: 19px; }

.nav-item.active {
    color: var(--cyan);
    background: rgba(33,200,255,.08);
}

.nav-item.predict-fab {
    width: 64px;
    height: 64px;
    margin-top: -26px;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, #08111c, #0d1e30);
    border: 2px solid var(--cyan);
    box-shadow: 0 0 24px rgba(33,200,255,.3);
    align-self: center;
    justify-self: center;
}

.nav-item.predict-fab i { font-size: 24px; color: var(--cyan); }

/* Overlays and Modals */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 18px;
    font-size: 24px;
    color: var(--muted);
    z-index: 10;
}

/* Auth Card Styling */
.auth-wrap {
    width: 100%;
    max-width: 400px;
}

.animated-border {
    position: relative;
}

.animated-border::after {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--gold), var(--cyan));
    background-size: 300% 100%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: gradientBorder 4s linear infinite;
    pointer-events: none;
    border-radius: 20px;
}

.card {
    background: var(--panel-strong);
    border-radius: 20px;
    padding: 30px 22px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    position: relative;
}

.logo-section {
    text-align: center;
    margin-bottom: 22px;
}

.modal-logo-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--gold), #d4af37);
    color: #000;
    font-size: 24px;
    display: grid;
    place-items: center;
    margin: 0 auto 12px;
    box-shadow: 0 0 20px rgba(255, 209, 92, 0.4);
}

.modal-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 24px;
    font-weight: 900;
}

.logo-sub {
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 0.1em;
    margin-top: 4px;
}

.input-row {
    margin-bottom: 16px;
}

.label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text);
    font-weight: 700;
    margin-bottom: 6px;
    display: block;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 14px;
    color: var(--muted);
    font-size: 14px;
}

.country-prefix {
    position: absolute;
    left: 38px;
    color: var(--cyan);
    font-weight: 800;
    font-size: 13.5px;
    border-right: 1px solid var(--line);
    padding-right: 8px;
    height: 16px;
    display: flex;
    align-items: center;
}

.input {
    width: 100%;
    height: 46px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font-size: 14px;
    outline: none;
    transition: all 0.2s ease;
}

.input-phone {
    padding-left: 84px;
    padding-right: 15px;
}

.input-pass {
    padding-left: 40px;
    padding-right: 40px;
}

.input:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 14px rgba(33, 200, 255, 0.25);
    background: rgba(255, 255, 255, 0.07);
}

.toggle-password {
    position: absolute;
    right: 14px;
    cursor: pointer;
    color: var(--muted);
    font-size: 14px;
}

.actions {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-main {
    width: 100%;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--cyan), #0099cc);
    color: #00131d;
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.btn-ghost {
    width: 100%;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--text);
    font-size: 13.5px;
    font-weight: 700;
}

.tg-container {
    display: flex;
    justify-content: center;
    margin-top: 18px;
}

.tg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #229ed9;
    color: #ffffff;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 22px;
    box-shadow: 0 4px 16px rgba(34, 158, 217, 0.4);
    transition: transform 0.2s ease;
}

.tg-btn:hover {
    transform: scale(1.08);
}

/* VIP Dialog Modal */
.vip-dialog {
    width: 100%;
    max-width: 400px;
    background: var(--panel-strong);
    border: 1px solid var(--gold);
    border-radius: 24px;
    padding: 26px 20px;
    position: relative;
    box-shadow: 0 0 40px rgba(255, 209, 92, 0.25);
    text-align: center;
}

.gold-crown {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 10px;
    filter: drop-shadow(0 0 14px rgba(255, 209, 92, 0.6));
}

.vip-dialog-header h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 26px;
    font-weight: 900;
    color: var(--gold);
}

.vip-dialog-header p {
    font-size: 12px;
    color: var(--muted);
    margin-top: 6px;
    font-weight: 700;
}

.vip-features {
    text-align: left;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vip-feat {
    font-size: 12.5px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vip-feat i { color: var(--gold); }

.vip-price-box {
    margin-bottom: 20px;
}

.price-old {
    text-decoration: line-through;
    color: var(--muted);
    font-size: 14px;
    margin-right: 8px;
}

.price-new {
    font-size: 28px;
    font-weight: 900;
    color: var(--gold);
    font-family: 'Rajdhani', sans-serif;
}

.price-new span {
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    color: var(--muted);
}

.btn-vip-buy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--gold), #d4af37);
    color: #000;
    font-weight: 900;
    font-size: 13.5px;
    box-shadow: 0 6px 20px rgba(255, 209, 92, 0.35);
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(.75); opacity: .6; }
}

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

@keyframes gradientBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes winnerFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Responsive Tweaks */
@media (max-width: 400px) {
    .app-shell { padding-left: 10px; padding-right: 10px; }
    .signal-body { grid-template-columns: 1fr; text-align: center; }
    .confidence-title { justify-content: center; gap: 8px; }
    .timer-block { margin-top: 8px; }
    .stat-value { font-size: 20px; }
    .trust-row { grid-template-columns: 1fr; }
}
