/* ============================================
   ALL TO WINNER - УЛЬТРА-КОМПАКТНЫЙ ПРЕМИУМ ДИЗАЙН
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    /* Основные цвета */
    --bg-dark: #0a0a14;
    --bg-card: rgba(18, 18, 28, 0.85);
    --glass-edge: rgba(255, 255, 255, 0.05);
    
    /* Неоновая палитра */
    --neon-blue: #4a9eff;
    --neon-purple: #9d4aff;
    --neon-pink: #ff4ad8;
    --neon-cyan: #4afff0;
    
    /* Градиенты */
    --gradient-primary: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    --gradient-gold: linear-gradient(135deg, #ffd700, #ffaa00);
    
    /* Тени */
    --shadow-neon: 0 0 10px rgba(74, 158, 255, 0.25);
    --shadow-gold: 0 0 10px rgba(255, 215, 0, 0.25);
    
    /* Шрифты */
    --font-main: 'Inter', sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
}

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

body {
    background: var(--bg-dark);
    font-family: var(--font-main);
    color: #fff;
    min-height: 100vh;
    padding: 0 0 70px 0;
    line-height: 1.3;
}

/* ========== ШАПКА С ЛОГОТИПОМ ========== */
.header {
    text-align: center;
    padding: 12px 15px 5px;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(var(--bg-dark), var(--bg-dark)) padding-box,
                var(--gradient-primary) border-box;
    box-shadow: var(--shadow-neon);
    animation: logoPulse 3s infinite ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

@keyframes logoPulse {
    0%, 100% { box-shadow: 0 0 10px rgba(74, 158, 255, 0.5); }
    50% { box-shadow: 0 0 20px rgba(157, 74, 255, 0.7); }
}

/* ========== ОСНОВНЫЕ КАРТОЧКИ ========== */
.card {
    background: var(--bg-card);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    margin: 8px 10px;
    padding: 14px;
    border-radius: 20px;
    border: 1px solid var(--glass-edge);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.card-title {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.title-icon {
    font-size: 16px;
    filter: drop-shadow(0 0 5px var(--neon-blue));
}

/* ========== ТАЙМЕР ========== */
.timer-container {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(74, 158, 255, 0.3);
    border-radius: 16px;
    padding: 12px;
    margin: 12px 0;
    text-align: center;
}

.timer-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 3px;
}

.timer-display {
    font-size: 34px;
    font-weight: 700;
    font-family: var(--font-display);
    background: linear-gradient(135deg, #fff, var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

/* ========== БОНУСНЫЙ БЛОК ========== */
.bonus-premium {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    padding: 12px;
    margin: 12px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bonus-premium::after {
    content: '🎁';
    position: absolute;
    right: 8px;
    bottom: 2px;
    font-size: 32px;
    opacity: 0.1;
}

.bonus-label {
    font-size: 11px;
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.bonus-value {
    font-size: 28px;
    font-weight: 700;
    font-family: var(--font-display);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.bonus-description {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 3px;
}

/* ========== ПРИЗОВОЙ ПУЛ ========== */
.prize-pool-premium {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(74, 255, 240, 0.3);
    border-radius: 16px;
    padding: 12px;
    margin: 12px 0;
    text-align: center;
}

.prize-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.prize-value {
    font-size: 28px;
    font-weight: 700;
    font-family: var(--font-display);
    background: linear-gradient(135deg, #fff, var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.prize-currency {
    font-size: 14px;
    color: var(--neon-cyan);
    -webkit-text-fill-color: var(--neon-cyan);
    font-weight: 600;
}

/* ========== СТАТИСТИКА ========== */
.draw-stats-grid,
.stats-premium-grid,
.partner-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin: 12px 0;
}

.stat-item,
.stat-premium-card,
.partner-stat-item {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(74, 158, 255, 0.1);
    border-radius: 12px;
    padding: 8px 3px;
    text-align: center;
}

.stat-value,
.stat-premium-value {
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--neon-blue);
    display: block;
    margin-bottom: 2px;
}

.stat-label,
.stat-premium-label {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* ========== КНОПКИ ========== */
.btn-premium {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(74, 158, 255, 0.3);
    border-radius: 14px;
    padding: 12px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.btn-premium:hover {
    border-color: var(--neon-blue);
    box-shadow: var(--shadow-neon);
    transform: translateY(-1px);
}

.btn-premium.gold {
    border-color: rgba(255, 215, 0, 0.3);
}

.btn-premium.gold:hover {
    border-color: #ffd700;
    box-shadow: var(--shadow-gold);
}

.btn-premium.pink {
    border-color: rgba(255, 74, 216, 0.3);
}

.btn-premium.pink:hover {
    border-color: var(--neon-pink);
    box-shadow: 0 0 10px rgba(255, 74, 216, 0.25);
}

.btn-premium.purple {
    border-color: rgba(157, 74, 255, 0.3);
}

.btn-premium.purple:hover {
    border-color: var(--neon-purple);
    box-shadow: 0 0 10px rgba(157, 74, 255, 0.25);
}

.btn-back {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 10px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    width: 100%;
    margin-top: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-back:hover {
    border-color: var(--neon-blue);
    color: #fff;
    background: rgba(74, 158, 255, 0.1);
}

/* ========== НИЖНЕЕ МЕНЮ ========== */
.bottom-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 20, 0.98);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(74, 158, 255, 0.2);
    z-index: 100;
    padding: 4px 0;
}

.menu-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 2px 5px;
}

.menu-btn {
    background: none;
    border: none;
    color: #888;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    padding: 4px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 60px;
}

.menu-btn .icon {
    font-size: 18px;
    margin-bottom: 1px;
}

.menu-btn.active {
    color: var(--neon-blue);
}

.menu-btn.active .icon {
    text-shadow: 0 0 8px var(--neon-blue);
    transform: scale(1.05);
}

/* ========== ПРОФИЛЬ ========== */
.profile-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
}

.profile-avatar {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-neon);
}

.avatar-emoji {
    font-size: 22px;
}

.profile-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.profile-id {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.id-value {
    color: var(--neon-cyan);
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 5px;
    border-radius: 8px;
    font-size: 10px;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 12px 0;
}

.profile-stat {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(74, 158, 255, 0.1);
    border-radius: 12px;
    padding: 10px 3px;
    text-align: center;
    cursor: pointer;
}

.profile-stat .value {
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-display);
    display: block;
    margin-bottom: 2px;
}

.profile-stat .label {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.5);
}

.profile-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-top: 12px;
}

/* ========== ПАРТНЕРСКАЯ ПРОГРАММА ========== */
.partner-level-premium {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(74, 158, 255, 0.2);
    border-radius: 16px;
    padding: 12px;
    margin: 12px 0;
}

.level-icon {
    font-size: 28px;
}

.level-info {
    flex: 1;
}

.level-name {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 2px;
}

.level-percent {
    font-size: 11px;
    color: var(--neon-cyan);
}

.level-number {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(0, 0, 0, 0.3);
    padding: 3px 8px;
    border-radius: 16px;
    white-space: nowrap;
}

.partner-stat-item .stat-value.pink {
    color: var(--neon-pink);
}

.partner-stat-item .stat-value.purple {
    color: var(--neon-purple);
}

.partner-stat-item .stat-value.gold {
    color: #ffd700;
}

/* ========== РЕФЕРАЛЬНАЯ ССЫЛКА ========== */
.ref-link-premium {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(74, 158, 255, 0.1);
    border-radius: 16px;
    padding: 12px;
    margin: 12px 0;
}

.ref-link-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    text-align: center;
}

.ref-link-container {
    display: flex;
    gap: 6px;
}

.ref-link-input {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(74, 158, 255, 0.2);
    border-radius: 10px;
    padding: 10px;
    color: var(--neon-cyan);
    font-family: monospace;
    font-size: 10px;
}

.ref-link-copy {
    background: var(--gradient-primary);
    border: none;
    border-radius: 10px;
    width: 40px;
    font-size: 18px;
    cursor: pointer;
}

/* ========== КОШЕЛЕК ========== */
.total-balance-premium {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(74, 158, 255, 0.2);
    border-radius: 16px;
    padding: 14px;
    margin: 12px 0;
    text-align: center;
}

.balance-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 3px;
}

.balance-amount {
    font-size: 32px;
    font-weight: 700;
    font-family: var(--font-display);
    background: linear-gradient(135deg, #fff, var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.balance-currency {
    font-size: 14px;
    color: var(--neon-cyan);
    -webkit-text-fill-color: var(--neon-cyan);
}

.balance-details {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(74, 158, 255, 0.1);
    border-radius: 14px;
    padding: 12px;
    margin: 12px 0;
}

.balance-detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-icon {
    font-size: 18px;
    width: 25px;
}

.detail-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
}

/* ========== ЯЗЫКИ ========== */
.language-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin: 12px 0;
}

.lang-btn {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(74, 158, 255, 0.2);
    border-radius: 12px;
    padding: 12px 6px;
    font-size: 12px;
    color: #fff;
    cursor: pointer;
    text-align: center;
}

.lang-btn.active {
    background: var(--gradient-primary);
    border-color: transparent;
}

/* ========== ПРОГРЕСС БАРЫ ========== */
.progress-bar-container {
    height: 5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
    margin: 8px 0;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    border-radius: 6px;
    transition: width 0.3s ease;
}

/* ========== ОПЦИИ ========== */
.options-premium-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 12px 0;
}

.option-premium-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(74, 158, 255, 0.1);
    border-radius: 16px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
    width: 100%;
    text-align: left;
}

.option-icon {
    font-size: 24px;
    min-width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.option-info {
    flex: 1;
}

.option-title {
    font-size: 13px;
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
    color: #fff;
}

.option-desc {
    display: block;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
}

.option-arrow {
    font-size: 18px;
    color: var(--neon-blue);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.option-premium-card:hover {
    border-color: var(--neon-blue);
    background: rgba(74, 158, 255, 0.05);
    transform: translateX(5px);
    box-shadow: var(--shadow-neon);
}

.option-premium-card:hover .option-arrow {
    opacity: 1;
    transform: translateX(5px);
}

.options-footer {
    margin: 15px 0 5px;
    text-align: center;
}

.app-version {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 10px;
}

.version-label {
    color: rgba(255, 255, 255, 0.5);
}

.version-number {
    color: var(--neon-cyan);
    font-weight: 600;
}

/* ========== ПРАВИЛА ========== */
.rules-content-premium {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(74, 158, 255, 0.1);
    border-radius: 16px;
    padding: 16px;
    max-height: 350px;
    overflow-y: auto;
    font-size: 12px;
    line-height: 1.5;
}

/* ========== ПОДДЕРЖКА ========== */
.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 15px;
}

.support-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(74, 158, 255, 0.1);
    border-radius: 16px;
    padding: 16px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
}

.support-card:hover {
    border-color: var(--neon-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-neon);
}

.support-card-icon {
    font-size: 28px;
    margin-bottom: 6px;
}

.support-card-title {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 3px;
    color: #fff;
}

.support-card-desc {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
}

.support-card-arrow {
    font-size: 16px;
    color: var(--neon-blue);
    opacity: 0;
    transition: all 0.3s ease;
    margin-top: 5px;
}

.support-card:hover .support-card-arrow {
    opacity: 1;
}

/* ========== БИЛЕТЫ ========== */
.tickets-premium-display {
    background: linear-gradient(135deg, rgba(74, 158, 255, 0.1), rgba(157, 74, 255, 0.1));
    border: 1px solid rgba(74, 158, 255, 0.3);
    border-radius: 20px;
    padding: 20px 15px;
    margin: 12px 0;
}

.tickets-number {
    font-size: 48px;
    font-weight: 800;
    font-family: var(--font-display);
    background: linear-gradient(135deg, #fff, var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    display: block;
    text-align: center;
}

.tickets-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    text-align: center;
    display: block;
}

.ticket-price-premium {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(74, 158, 255, 0.1);
    border-radius: 16px;
    padding: 12px;
    margin: 12px 0;
}

.price-icon {
    font-size: 24px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 6px;
}

.price-info {
    flex: 1;
}

.price-label {
    display: block;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2px;
}

.price-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--neon-cyan);
}

.price-badge {
    background: rgba(74, 158, 255, 0.2);
    border: 1px solid rgba(74, 158, 255, 0.3);
    border-radius: 16px;
    padding: 4px 10px;
    font-size: 10px;
    color: var(--neon-cyan);
}

.tickets-section-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #fff;
    margin: 15px 0 10px;
}

.ticket-buttons-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin: 12px 0;
}

/* ========== КОМПАКТНАЯ ВЕРСИЯ БИЛЕТОВ ========== */
.tickets-compact-display {
    background: linear-gradient(135deg, rgba(74, 158, 255, 0.1), rgba(157, 74, 255, 0.1));
    border: 1px solid rgba(74, 158, 255, 0.3);
    border-radius: 18px;
    padding: 15px;
    margin: 10px 0;
    text-align: center;
}

.tickets-compact-display .tickets-number {
    font-size: 42px;
    font-weight: 800;
    font-family: var(--font-display);
    background: linear-gradient(135deg, #fff, var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    display: block;
    margin-bottom: 3px;
}

.tickets-compact-display .tickets-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ticket-price-compact {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(74, 158, 255, 0.1);
    border-radius: 14px;
    padding: 10px;
    margin: 10px 0;
}

.ticket-price-compact .price-icon {
    font-size: 22px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 5px;
}

.ticket-price-compact .price-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ticket-price-compact .price-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

.ticket-price-compact .price-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--neon-cyan);
}

.ticket-buttons-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 15px 0;
}

.ticket-buttons-compact .ticket-quantity-btn {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(74, 158, 255, 0.2);
    border-radius: 16px;
    padding: 15px 5px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    min-height: 90px;
    justify-content: center;
}

.ticket-buttons-compact .ticket-quantity-btn.popular {
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 215, 0, 0.05);
}

.ticket-buttons-compact .ticket-quantity-btn.vip {
    border-color: rgba(157, 74, 255, 0.3);
    background: rgba(157, 74, 255, 0.05);
}

.ticket-buttons-compact .ticket-quantity-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-neon);
    border-color: var(--neon-blue);
}

.ticket-buttons-compact .popular-badge,
.ticket-buttons-compact .vip-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 14px;
}

.ticket-buttons-compact .quantity-number {
    font-size: 26px;
    font-weight: 700;
    font-family: var(--font-display);
    background: linear-gradient(135deg, #fff, var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    display: block;
}

.ticket-buttons-compact .ticket-quantity-btn.popular .quantity-number {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ticket-buttons-compact .ticket-quantity-btn.vip .quantity-number {
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ticket-buttons-compact .quantity-price {
    font-size: 13px;
    font-weight: 600;
    color: var(--neon-cyan);
    display: block;
}

.ticket-buttons-compact .ticket-quantity-btn.popular .quantity-price {
    color: #ffd700;
}

.ticket-buttons-compact .ticket-quantity-btn.vip .quantity-price {
    color: var(--neon-purple);
}

.tickets-section-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #fff;
    margin: 15px 0 8px;
}

.compact-divider {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 18px 0;
}

.compact-divider .divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(74, 158, 255, 0.3), transparent);
}

.compact-divider .divider-icon {
    font-size: 14px;
    color: var(--neon-cyan);
    opacity: 0.7;
}

.payment-check-compact {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(74, 158, 255, 0.1);
    border-radius: 16px;
    padding: 15px;
    margin: 10px 0;
}

.payment-check-compact .payment-check-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #fff;
    margin-bottom: 12px;
}

.payment-check-compact .input-group {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(74, 158, 255, 0.2);
    border-radius: 12px;
    padding: 0 10px;
    margin-bottom: 10px;
}

.payment-check-compact .payment-code-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 0;
    color: #fff;
    font-size: 12px;
    font-family: monospace;
}

.btn-small {
    padding: 10px !important;
    font-size: 11px !important;
}

/* ========== БЕГУЩАЯ СТРОКА ========== */
.marquee-container {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 30px;
    padding: 8px 0;
    margin: 0 0 15px 0;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-gold);
    backdrop-filter: blur(5px);
    width: 100%;
}

.marquee-content-wrapper {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    font-size: 11px;
    font-weight: 500;
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: marquee 25s linear infinite;
    padding-left: 100%;
}

.marquee-content span {
    padding-right: 30px;
    display: inline-block;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

/* ========== СТРАНИЦА РОЗЫГРЫША ========== */
.draw-datetime-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(74, 158, 255, 0.1);
    border-radius: 14px;
    padding: 12px 15px;
    margin: 15px 0 10px 0;
}

.datetime-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.datetime-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.datetime-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--neon-cyan);
}

.draw-stats-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(74, 158, 255, 0.1);
    border-radius: 14px;
    padding: 12px 15px;
    margin: 15px 0;
}

.stats-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.stats-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.stats-value {
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--neon-blue);
}

.participants-list {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(74, 158, 255, 0.1);
    border-radius: 16px;
    padding: 12px;
    max-height: 200px;
    overflow-y: auto;
}

.participant-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 12px;
}

.participant-row:last-child {
    border-bottom: none;
}

.participant-row .value {
    font-weight: 600;
    color: var(--neon-cyan);
    background: rgba(74, 158, 255, 0.1);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
}

/* ========== СТРАНИЦА СТАТИСТИКИ ========== */
.stats-card .profile-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(74, 158, 255, 0.1);
    border-radius: 18px;
}

.stats-card .profile-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-neon);
}

.stats-card .avatar-emoji {
    font-size: 24px;
}

.stats-card .profile-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 3px;
    color: #fff;
}

.stats-card .profile-id {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.stats-card .id-value {
    color: var(--neon-cyan);
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 11px;
}

.stat-value.gold {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.stat-value.purple {
    color: var(--neon-purple);
    text-shadow: 0 0 10px rgba(157, 74, 255, 0.3);
}

.stat-value.pink {
    color: var(--neon-pink);
    text-shadow: 0 0 10px rgba(255, 74, 216, 0.3);
}

.stats-detail-grid {
    padding: 10px 0;
}

.stats-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 13px;
}

.stats-detail-row:last-child {
    border-bottom: none;
}

.stats-detail-row.highlight {
    margin-top: 5px;
    padding-top: 12px;
    border-top: 2px solid rgba(74, 158, 255, 0.2);
}

.stats-detail-row .detail-label {
    color: rgba(255, 255, 255, 0.7);
}

.stats-detail-row .detail-value {
    font-weight: 600;
    color: #fff;
}

.stats-detail-row .detail-value.gold {
    color: #ffd700;
}

.stats-detail-row .detail-value.large {
    font-size: 16px;
}

.level-display {
    text-align: center;
    margin: 10px 0;
}

.level-badge-large {
    display: inline-block;
    background: var(--gradient-primary);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-display);
    color: #fff;
    box-shadow: var(--shadow-neon);
}

.level-next {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin-top: 8px;
}

/* ========== ПАРТНЕРСКАЯ ПРОГРАММА - В СТИЛЕ ГЛАВНОЙ ========== */
.partner-level-block {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 18px;
    padding: 15px;
    margin: 15px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-gold);
}

.partner-level-block::after {
    content: '👑';
    position: absolute;
    right: 10px;
    bottom: 5px;
    font-size: 40px;
    opacity: 0.1;
    transform: rotate(15deg);
}

.partner-level-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.partner-level-icon {
    font-size: 20px;
}

.partner-level-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partner-level-value {
    font-size: 28px;
    font-weight: 700;
    font-family: var(--font-display);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    margin-bottom: 5px;
}

.partner-level-percent {
    font-size: 14px;
    color: var(--neon-cyan);
    font-weight: 600;
}

.partner-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin: 15px 0;
}

.partner-stat-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(74, 158, 255, 0.1);
    border-radius: 14px;
    padding: 12px 3px;
    text-align: center;
}

.partner-stat-value {
    font-size: 20px;
    font-weight: 700;
    font-family: var(--font-display);
    display: block;
    margin-bottom: 3px;
}

.partner-stat-value.pink {
    color: var(--neon-pink);
    text-shadow: 0 0 10px rgba(255, 74, 216, 0.3);
}

.partner-stat-value.purple {
    color: var(--neon-purple);
    text-shadow: 0 0 10px rgba(157, 74, 255, 0.3);
}

.partner-stat-value.gold {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.partner-stat-value.cyan {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(74, 255, 240, 0.3);
}

.partner-stat-label {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.partner-progress-block {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(74, 158, 255, 0.2);
    border-radius: 16px;
    padding: 15px;
    margin: 15px 0;
}

.partner-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.next-level-name {
    color: var(--neon-cyan);
    font-weight: 600;
    margin-left: 5px;
}

.next-level-percent {
    color: var(--neon-cyan);
    font-weight: 600;
    background: rgba(74, 158, 255, 0.1);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
}

.partner-progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    font-size: 11px;
}

.partner-progress-info span:first-child {
    color: rgba(255, 255, 255, 0.6);
}

.progress-hint {
    color: var(--neon-cyan);
    font-weight: 500;
}

.partner-max-level {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 170, 0, 0.1));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    padding: 15px;
    margin: 15px 0;
}

.max-level-icon {
    font-size: 24px;
}

.max-level-text {
    font-size: 13px;
    font-weight: 600;
    color: #ffd700;
}

.partner-bonus-block {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 15px;
    margin: 15px 0;
}

.partner-bonus-icon {
    font-size: 28px;
}

.partner-bonus-content {
    flex: 1;
}

.partner-bonus-title {
    font-size: 13px;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 3px;
}

.partner-bonus-description {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.partner-ref-block {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(74, 158, 255, 0.1);
    border-radius: 16px;
    padding: 15px;
    margin: 15px 0;
}

.partner-ref-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    text-align: center;
}

.partner-ref-container {
    display: flex;
    gap: 8px;
}

.partner-ref-input {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(74, 158, 255, 0.2);
    border-radius: 12px;
    padding: 12px;
    color: var(--neon-cyan);
    font-family: monospace;
    font-size: 11px;
    cursor: pointer;
}

.partner-ref-copy {
    background: var(--gradient-primary);
    border: none;
    border-radius: 12px;
    width: 45px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-ref-copy:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-neon);
}

.partner-actions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 15px 0;
}

.btn-icon {
    font-size: 16px;
}

/* ========== СТРАНИЦА КОШЕЛЬКА В СТИЛЕ ГЛАВНОЙ ========== */
.balance-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 13px;
}

.balance-detail-row:last-child {
    border-bottom: none;
}

.detail-value.gold {
    color: #ffd700;
    font-weight: 600;
}

.detail-value.pink {
    color: var(--neon-pink);
    font-weight: 600;
}

.detail-value.purple {
    color: var(--neon-purple);
    font-weight: 600;
}

.withdrawal-progress-display {
    font-size: 32px;
    font-weight: 700;
    font-family: var(--font-display);
    margin: 5px 0;
}

.progress-current {
    background: linear-gradient(135deg, #fff, var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.progress-separator {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 5px;
}

.progress-target {
    color: rgba(255, 255, 255, 0.5);
}

.progress-status {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.info-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.info-icon {
    font-size: 16px;
    min-width: 24px;
    text-align: center;
}

.info-text {
    flex: 1;
}

.history-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
}

/* ========== ПОДДЕРЖКА - КОМПАКТНЫЙ СТИЛЬ ========== */
.support-grid-compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 15px 0;
}

.support-card-compact {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(74, 158, 255, 0.2);
    border-radius: 18px;
    padding: 20px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.support-card-compact:hover {
    border-color: var(--neon-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-neon);
    background: rgba(74, 158, 255, 0.05);
}

.support-card-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 158, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.support-card-compact:hover::before {
    left: 100%;
}

.support-card-icon {
    font-size: 32px;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 8px var(--neon-blue));
}

.support-card-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

.support-card-arrow {
    font-size: 18px;
    color: var(--neon-blue);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.support-card-compact:hover .support-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

.support-info-message {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(74, 158, 255, 0.1);
    border: 1px solid rgba(74, 158, 255, 0.2);
    border-radius: 16px;
    padding: 14px;
    margin: 15px 0;
}

.support-info-message .info-icon {
    font-size: 20px;
    color: var(--neon-cyan);
}

.support-info-message .info-text {
    flex: 1;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

/* ========== FAQ - КОМПАКТНЫЙ СТИЛЬ ========== */
.faq-content-compact {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(74, 158, 255, 0.1);
    border-radius: 18px;
    padding: 18px;
    margin: 15px 0;
    max-height: 400px;
    overflow-y: auto;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.faq-content-compact::-webkit-scrollbar {
    width: 4px;
}

.faq-content-compact::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.faq-content-compact::-webkit-scrollbar-thumb {
    background: var(--neon-blue);
    border-radius: 10px;
}

.faq-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 30px;
    color: rgba(255, 255, 255, 0.5);
}

.loading-spinner-small {
    width: 30px;
    height: 30px;
    border: 2px solid rgba(74, 158, 255, 0.2);
    border-top-color: var(--neon-blue);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.faq-placeholder {
    text-align: center;
    padding: 30px;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

/* ========== ОБРАТНАЯ СВЯЗЬ - КОМПАКТНЫЙ СТИЛЬ ========== */
.feedback-compact-container {
    margin: 15px 0;
}

.feedback-info-compact {
    margin-bottom: 15px;
}

.feedback-info-compact .info-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(74, 158, 255, 0.1);
    border: 1px solid rgba(74, 158, 255, 0.2);
    border-radius: 14px;
    padding: 12px;
}

.feedback-info-compact .badge-icon {
    font-size: 18px;
    color: var(--neon-cyan);
}

.feedback-info-compact .badge-text {
    flex: 1;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.feedback-form-compact {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(74, 158, 255, 0.1);
    border-radius: 18px;
    padding: 18px;
    margin: 15px 0;
}

.feedback-form-compact .form-group {
    margin-bottom: 15px;
}

.feedback-form-compact .form-textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(74, 158, 255, 0.2);
    border-radius: 14px;
    padding: 14px;
    color: #fff;
    font-size: 13px;
    font-family: var(--font-main);
    resize: vertical;
    min-height: 100px;
}

.feedback-form-compact .form-textarea:focus {
    outline: none;
    border-color: var(--neon-blue);
    box-shadow: var(--shadow-neon);
}

.feedback-form-compact .form-counter {
    text-align: right;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 5px;
}

.feedback-form-compact #feedback-counter {
    color: var(--neon-cyan);
}

.feedback-form-compact .form-options {
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
}

.feedback-form-compact .checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.feedback-form-compact .checkbox-label input {
    display: none;
}

.feedback-form-compact .checkbox-custom {
    width: 18px;
    height: 18px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(74, 158, 255, 0.3);
    border-radius: 5px;
    position: relative;
}

.feedback-form-compact .checkbox-label input:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--neon-cyan);
    font-size: 12px;
}

.feedback-form-compact .checkbox-text {
    font-size: 13px;
    color: #fff;
}

.feedback-examples-compact {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(74, 158, 255, 0.1);
    border-radius: 16px;
    padding: 15px;
    margin-top: 15px;
}

.feedback-examples-compact .examples-title {
    font-size: 13px;
    color: var(--neon-cyan);
    margin-bottom: 10px;
}

.feedback-examples-compact .examples-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feedback-examples-compact .example-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(74, 158, 255, 0.1);
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: all 0.3s ease;
}

.feedback-examples-compact .example-item:hover {
    border-color: var(--neon-blue);
    background: rgba(74, 158, 255, 0.1);
    transform: translateX(3px);
}

/* ========== СТРАНИЦА ПРАВИЛА В СТИЛЕ ГЛАВНОЙ ========== */
.rules-card {
    background: var(--bg-card);
}

.rules-premium-container {
    margin: 5px 0 15px 0;
}

.rules-header {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(74, 158, 255, 0.2);
    border-radius: 30px;
    padding: 10px 15px;
    margin-bottom: 15px;
}

.rules-header-icon {
    font-size: 20px;
    background: var(--gradient-primary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-neon);
}

.rules-header-text {
    flex: 1;
    font-size: 12px;
    font-weight: 500;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rules-content-premium {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(74, 158, 255, 0.1);
    border-radius: 20px;
    padding: 18px;
    max-height: 350px;
    overflow-y: auto;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.rules-content-premium::-webkit-scrollbar {
    width: 5px;
}

.rules-content-premium::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.rules-content-premium::-webkit-scrollbar-thumb {
    background: var(--neon-blue);
    border-radius: 10px;
}

.rules-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px;
    color: rgba(255, 255, 255, 0.5);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(74, 158, 255, 0.1);
    border-top-color: var(--neon-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.rules-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 30px;
    color: rgba(255, 100, 100, 0.8);
    text-align: center;
}

.error-icon {
    font-size: 40px;
    opacity: 0.7;
}

.error-text {
    font-size: 13px;
}

.rules-important {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 18px;
    padding: 15px;
    margin: 15px 0;
    box-shadow: var(--shadow-gold);
}

.important-icon {
    font-size: 24px;
    animation: pulse 2s infinite;
}

.important-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.important-text strong {
    color: #ffd700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.important-text span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.rules-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 15px 0;
}

.highlight-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid;
    border-radius: 16px;
    padding: 12px 5px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-neon);
}

.highlight-emoji {
    font-size: 20px;
}

.highlight-text {
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* ========== УВЕДОМЛЕНИЯ ========== */
.temp-notification {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 12px;
    z-index: 1000;
    box-shadow: var(--shadow-neon);
    animation: notificationSlide 3s ease forwards;
    max-width: 90%;
}

@keyframes notificationSlide {
    0% { opacity: 0; transform: translate(-50%, -15px); }
    15% { opacity: 1; transform: translate(-50%, 0); }
    85% { opacity: 1; }
    100% { opacity: 0; transform: translate(-50%, -15px); }
}

/* ========== АНИМАЦИИ ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade {
    animation: fadeInUp 0.25s ease-out;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ========== АДАПТАЦИЯ ========== */
@media (max-width: 380px) {
    .timer-display {
        font-size: 28px;
    }
    
    .bonus-value, .prize-value {
        font-size: 24px;
    }
    
    .balance-amount {
        font-size: 28px;
    }
    
    .stat-value {
        font-size: 16px;
    }
    
    .action-btn-group {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) {
    .card {
        margin: 10px auto;
        max-width: 500px;
    }
}
