/* Core CSS - Reset & Utility */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-base, #060d1a);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

/* APP LOADER - F1.2 */
#app-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

#app-loader.slide-up {
    transform: translateY(-100%);
}

#loader-logo {
    width: 120px;
    height: auto;
    opacity: 0;
    border-radius: 20px;
    transition: opacity 0.4s ease-in-out;
}

#loader-logo.fade-in {
    opacity: 1;
}

.loader-bar {
    width: 80px;
    height: 4px;
    background-color: var(--color-primary, #00c4ff);
    margin-top: 24px;
    border-radius: 4px;
    animation: pulse-bar 1.2s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

@keyframes pulse-bar {
    0% { transform: scaleX(0.4); opacity: 0.5; }
    100% { transform: scaleX(1.4); opacity: 1; }
}

/* MAIN APP CONTAINER */
#app {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* GLOBALS */
.btn-gradient {
    background: var(--gradient-brand, linear-gradient(135deg, var(--color-primary), var(--color-secondary)));
    border: none;
    color: white;
    padding: 14px 24px;
    border-radius: var(--radius-button, 12px);
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-gradient:active {
    opacity: 0.8;
}

.btn-block {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    padding: 14px 24px;
    border-radius: var(--radius-button, 12px);
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-outline:active {
    opacity: 0.8;
}

/* --- TOAST NOTIFICATION (F2.3) --- */
.toast-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 90%;
    max-width: 400px;
}

.toast {
    background: var(--bg-surface, #111827);
    color: #fff;
    padding: 14px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 4px solid var(--color-primary);
    animation: toast-slide-in 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards, toast-fade-out 0.3s forwards 2.7s;
    font-size: 14px;
    font-weight: 500;
}

.toast.success { border-left-color: #22c55e; }
.toast.error { border-left-color: #ef4444; }

@keyframes toast-slide-in {
    from { transform: translateY(-150%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
@keyframes toast-fade-out {
    from { opacity: 1; }
    to { opacity: 0; transform: translateY(-50px); }
}

/* --- ONBOARDING (F2.7) --- */
.onboarding-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 32px 24px;
    text-align: center;
    background: var(--bg-base);
}

.ob-image {
    width: 160px;
    height: 160px;
    margin-bottom: 40px;
    background: var(--gradient-brand);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 40px var(--color-glow, rgba(0,0,0,0.5));
}

.ob-image svg {
    width: 80px;
    height: 80px;
    color: #fff;
}

.ob-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}

.ob-desc {
    font-size: 15px;
    color: #a0a0a0;
    line-height: 1.5;
    margin-bottom: 40px;
}

.ob-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 40px;
}

.ob-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transition: all 0.3s;
}

.ob-dot.active {
    background: var(--color-primary);
    width: 24px;
    border-radius: 12px;
}

/* --- AUTH PAGES (F1.3, F1.4, F1.6, F1.7) --- */
.page-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
    padding: 24px;
    position: relative;
}

.auth-header {
    text-align: center;
    margin-top: 8vh;
    margin-bottom: 32px;
}

.auth-header img {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    margin-bottom: 16px;
    object-fit: cover;
}

.auth-header h1 {
    font-size: 24px;
    font-weight: 700;
}

.guide-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.guide-card {
    background: var(--bg-surface, rgba(255, 255, 255, 0.05));
    border-radius: var(--radius-card, 12px);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.guide-card-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.guide-card-text {
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
    line-height: 1.4;
}

.auth-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 13px;
    color: #a0a0a0;
    font-weight: 500;
}

.form-control {
    width: 100%;
    background: var(--bg-surface, rgba(255, 255, 255, 0.05));
    border: 1px solid transparent;
    border-radius: var(--radius-input, 10px);
    padding: 14px 16px;
    color: #ffffff;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-control:focus {
    border-color: var(--color-primary);
}

textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-wrapper input {
    padding-right: 48px;
}

.password-toggle {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    color: #a0a0a0;
    cursor: pointer;
    padding: 4px;
    display: flex;
}

.accordion {
    margin-top: -8px;
    margin-bottom: 24px;
}

.accordion-header {
    background: none;
    border: none;
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
}

.accordion-body {
    font-size: 13px;
    color: #a0a0a0;
    padding-top: 10px;
    line-height: 1.5;
}

.auth-link {
    text-align: center;
    font-size: 14px;
    color: #a0a0a0;
    margin-top: 24px;
    margin-bottom: 24px;
}

.auth-link span {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 24px;
    backdrop-filter: blur(4px);
}

.modal-content {
    background: var(--bg-surface, #111827);
    width: 100%;
    border-radius: var(--radius-card, 16px);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-content p {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 28px;
    color: #d1d5db;
}

/* --- RATE US MODAL (F2.6) --- */
.rate-stars {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px;
}

.rate-stars svg {
    color: #f59e0b; /* Amber/Gold */
    width: 32px;
    height: 32px;
    cursor: pointer;
    transition: transform 0.2s;
}

.rate-stars svg:active {
    transform: scale(0.9);
}

/* --- WELCOME PAGE (F1.5) --- */
.welcome-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 32px 24px;
    text-align: center;
}

.welcome-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    border: 2px solid rgba(34, 197, 94, 0.3);
}

.welcome-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.welcome-desc {
    font-size: 15px;
    color: #a0a0a0;
    line-height: 1.5;
    margin-bottom: 32px;
}

.contact-links {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.contact-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-surface, rgba(255,255,255,0.05));
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.2s;
}

.contact-link:active {
    transform: scale(0.95);
}

/* --- MAIN APP LAYOUT (Header & Navigation) --- */
.app-layout {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
    padding-bottom: 70px;
}

.app-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--bg-base);
    position: sticky;
    top: 0;
    z-index: 50;
}

.app-header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.app-header-logo img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: cover;
}

.app-header-logo h2 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.header-action {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    position: relative;
    padding: 4px;
}

.badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background: #ef4444;
    border-radius: 50%;
    border: 2px solid var(--bg-base);
}

/* NOTIFICATION INBOX (F2.3) */
.notif-dropdown {
    position: absolute;
    top: 60px;
    right: 20px;
    width: 280px;
    background: var(--bg-surface, #111827);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    z-index: 100;
    overflow: hidden;
    transform-origin: top right;
    animation: scale-in 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes scale-in {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.notif-header {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 14px;
    font-weight: 600;
}

.notif-list {
    max-height: 300px;
    overflow-y: auto;
}

.notif-item {
    padding: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    gap: 12px;
}
.notif-item:last-child { border-bottom: none; }

.notif-icon {
    width: 32px;
    height: 32px;
    background: rgba(34, 197, 94, 0.15);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #22c55e;
    flex-shrink: 0;
}

.notif-content { flex: 1; }
.notif-content p { font-size: 13px; margin-bottom: 6px; line-height: 1.4; color: #fff; }
.notif-time { font-size: 11px; color: #a0a0a0; }
.notif-empty { padding: 32px 20px; text-align: center; color: #a0a0a0; font-size: 13px; }

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: var(--bg-nav, rgba(6, 13, 26, 0.95));
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    z-index: 100;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #6b7280;
    text-decoration: none;
    width: 33%;
    height: 100%;
    transition: all 0.2s;
}

.nav-item span {
    font-size: 12px;
    font-weight: 500;
}

.nav-item svg {
    stroke: #6b7280;
    transition: stroke 0.2s;
}

.nav-item.router-link-active, .nav-item.active {
    color: var(--color-primary);
}

.nav-item.router-link-active svg, .nav-item.active svg {
    stroke: var(--color-primary);
}

.main-content {
    padding: 16px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* --- HOME PAGE COMPONENTS (F1.9) --- */
.section-title {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.announcement-card {
    background: var(--gradient-card, linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02)));
    border-radius: var(--radius-card, 16px);
    padding: 16px;
    margin-bottom: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}

.announcement-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 6px;
}

.countdown-card {
    background: var(--bg-surface, rgba(255, 255, 255, 0.05));
    border-radius: var(--radius-card, 16px);
    padding: 24px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

.countdown-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: var(--gradient-brand);
}

.countdown-time {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    margin-top: 8px;
}

/* Locked States */
.locked-card {
    position: relative;
    background: var(--bg-surface, rgba(255, 255, 255, 0.05));
    border-radius: var(--radius-card, 16px);
    padding: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}

.locked-content {
    filter: blur(6px);
    opacity: 0.5;
    pointer-events: none;
    user-select: none;
}

.locked-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.locked-overlay svg {
    color: #f59e0b;
    margin-bottom: 8px;
}

.locked-overlay span {
    font-size: 14px;
    font-weight: 600;
    color: #f59e0b;
}

.mini-match-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mini-match-row:last-child {
    border-bottom: none;
}

/* --- TIPS PAGE COMPONENTS (F1.10) --- */
.date-slider {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 16px;
    margin-bottom: 8px;
    scrollbar-width: none;
}
.date-slider::-webkit-scrollbar {
    display: none;
}

.date-pill {
    padding: 8px 24px;
    border-radius: 20px;
    background: var(--bg-surface, rgba(255,255,255,0.05));
    color: #a0a0a0;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.2s;
}

.date-pill.active {
    background: var(--gradient-brand);
    color: #fff;
    border-color: transparent;
}

/* Match Cards */
.match-card {
    background: var(--bg-surface, rgba(255, 255, 255, 0.05));
    border-radius: var(--radius-card, 16px);
    padding: 16px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s;
}

/* Card States */
.match-pending {
    border-left: 3px solid var(--color-primary);
}

.match-won {
    border: 1px solid rgba(34, 197, 94, 0.3);
    box-shadow: 0 0 16px rgba(34, 197, 94, 0.15);
    border-left: 3px solid #22c55e;
}

.match-lost {
    opacity: 0.7;
    border-left: 3px solid #ef4444;
}

.match-postponed {
    opacity: 0.6;
    filter: grayscale(100%);
    border-left: 3px solid #6b7280;
}
.match-postponed .prediction-val, .match-postponed .odds-val {
    text-decoration: line-through;
    color: #6b7280 !important;
}

/* Match Inner Details */
.match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #a0a0a0;
}

.league-info {
    display: flex;
    align-items: center;
    gap: 6px;
}

.league-info img {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.match-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    margin-bottom: 8px;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 40%;
}

.team img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: contain;
    background: rgba(255,255,255,0.05);
    padding: 4px;
}

.team span {
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    color: #fff;
}

.vs {
    font-size: 13px;
    font-weight: 700;
    color: #6b7280;
    width: 20%;
    text-align: center;
}

.match-footer {
    display: flex;
    justify-content: space-between;
    background: rgba(0,0,0,0.3);
    border-radius: 8px;
    padding: 12px;
    margin-top: 4px;
}

.footer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 33.33%;
}

.footer-item span:first-child {
    font-size: 11px;
    color: #a0a0a0;
    text-transform: uppercase;
}

.footer-item span:last-child {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.prediction-val {
    color: var(--color-primary) !important;
}

.match-won .prediction-val { color: #22c55e !important; }
.match-lost .prediction-val { color: #ef4444 !important; }

/* --- PROFILE PAGE (F1.11) --- */
.profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 16px 0 24px 0;
    margin-bottom: 8px;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-brand);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.profile-info {
    text-align: center;
}

.profile-name {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.profile-email {
    font-size: 13px;
    color: #a0a0a0;
    margin-bottom: 12px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-badge.pending {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    border-color: rgba(245, 158, 11, 0.3);
}

.menu-group {
    background: var(--bg-surface, rgba(255, 255, 255, 0.05));
    border-radius: var(--radius-card, 16px);
    overflow: hidden;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.05);
}

.menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    width: 100%;
    color: #e5e7eb;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item:active {
    background: rgba(255,255,255,0.03);
}

.menu-item-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-item-icon {
    color: #a0a0a0;
    display: flex;
}

.menu-item.danger-text {
    color: #ef4444;
}

.menu-item.danger-text .menu-item-icon {
    color: #ef4444;
}

.app-version {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.2);
    margin-top: 16px;
    margin-bottom: 8px;
}

/* Bottom Sheet Modal for Profile */
.bottom-sheet-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 2000;
    backdrop-filter: blur(2px);
    opacity: 0;
    animation: fade-in 0.3s forwards;
}

.bottom-sheet-content {
    background: var(--bg-nav, #111827);
    width: 100%;
    max-height: 80vh;
    border-radius: 24px 24px 0 0;
    padding: 24px;
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    animation: slide-up 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.bottom-sheet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.bottom-sheet-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.close-btn {
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    cursor: pointer;
}

.bottom-sheet-body {
    overflow-y: auto;
    font-size: 14px;
    color: #d1d5db;
    line-height: 1.6;
    padding-bottom: 24px;
}

@keyframes fade-in { to { opacity: 1; } }
@keyframes slide-up { to { transform: translateY(0); } }

/* --- PROMO BANNER (F2.5) --- */
.promo-banner-container {
    position: fixed;
    bottom: 80px; 
    left: 10px;
    right: 10px;
    z-index: 90;
    transition: transform 0.3s, opacity 0.3s;
}

.promo-banner {
    background: var(--gradient-brand, linear-gradient(135deg, var(--color-primary), var(--color-secondary)));
    border-radius: var(--radius-card, 12px);
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 16px var(--color-glow, rgba(0, 196, 255, 0.3));
    cursor: pointer;
}

.promo-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.promo-text {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
}

.promo-close {
    background: rgba(0, 0, 0, 0.2);
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    cursor: pointer;
    flex-shrink: 0;
}

/* --- VIP HUB (F2.1) --- */
.vip-hub-header {
    text-align: center;
    margin-bottom: 24px;
}

.vip-hub-header h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.vip-hub-header p {
    font-size: 14px;
    color: #a0a0a0;
}

.cross-promo-card {
    background: var(--bg-surface, rgba(255,255,255,0.05));
    border-radius: var(--radius-card, 16px);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.cross-promo-card:active {
    transform: scale(0.98);
}

.promo-app-logo {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    flex-shrink: 0;
}

.promo-app-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.promo-app-name {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.promo-app-desc {
    font-size: 12px;
    color: #a0a0a0;
}

.btn-download {
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 20px;
    white-space: nowrap;
}

/* --- SUPPORT CENTER (F2.4) --- */
.support-section {
    margin-bottom: 32px;
}

.support-accordion {
    background: var(--bg-surface, rgba(255,255,255,0.05));
    border-radius: var(--radius-card, 16px);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}

.support-accordion-item {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.support-accordion-item:last-child {
    border-bottom: none;
}

.support-accordion-header {
    width: 100%;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    color: #e5e7eb;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.support-accordion-body {
    padding: 0 16px 16px 16px;
    font-size: 13px;
    color: #a0a0a0;
    line-height: 1.5;
}

.ticket-history-item {
    background: rgba(0,0,0,0.2);
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 8px;
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.ticket-cat {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

.ticket-status {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
}
.ticket-status.pending { background: rgba(245, 158, 11, 0.2); color: #f59e0b; }
.ticket-status.resolved { background: rgba(34, 197, 94, 0.2); color: #22c55e; }

.ticket-msg {
    font-size: 13px;
    color: #a0a0a0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
