/* ============================================
   PLATINUM LOTTERY - Tema Luxury Oscuro
   ============================================ */

:root {
    /* Paleta Principal */
    --void: #050505;
    --obsidian: #0a0a0c;
    --charcoal: #121218;
    --graphite: #1a1a24;
    --slate: #252532;
    --stone: #353545;
    
    /* Metálicos */
    --platinum: #e5e5f0;
    --silver: #a0a0b0;
    --bronze: #8b7355;
    
    /* Dorados Premium */
    --gold-deep: #b8860b;
    --gold-rich: #d4af37;
    --gold-bright: #f4d03f;
    --gold-pale: #f9e79f;
    
    /* Efectos */
    --glow-gold: 0 0 60px rgba(212, 175, 55, 0.15);
    --glow-soft: 0 0 40px rgba(212, 175, 55, 0.08);
    --shadow-deep: 0 25px 50px rgba(0, 0, 0, 0.5);
    
    /* Tipografía */
    --font-display: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-body);
    background: var(--void);
    color: var(--platinum);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Luces ambientales */
.ambient-light {
    position: fixed;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    top: -400px;
    right: -400px;
    pointer-events: none;
    z-index: 0;
    animation: pulseLight 8s ease-in-out infinite;
}

.ambient-light.secondary {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.05) 0%, transparent 70%);
    bottom: -300px;
    left: -300px;
    top: auto;
    right: auto;
    animation-delay: -4s;
}

@keyframes pulseLight {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

/* Canvas de partículas */
#goldCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.5rem 3rem;
    background: linear-gradient(180deg, var(--void) 0%, transparent 100%);
}

.header-inner {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-symbol {
    width: 50px;
    height: 50px;
    color: var(--gold-rich);
    animation: rotateSlow 20s linear infinite;
}

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

.diamond {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px var(--gold-rich));
}

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

.brand-main {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold-rich);
    letter-spacing: 0.3em;
    line-height: 1;
}

.brand-sub {
    font-size: 0.65rem;
    color: var(--silver);
    letter-spacing: 0.5em;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

/* Navegación */
.main-nav {
    display: flex;
    gap: 0.5rem;
    background: var(--charcoal);
    padding: 0.5rem;
    border-radius: 100px;
    border: 1px solid var(--graphite);
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    color: var(--silver);
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-deep), var(--gold-rich));
    opacity: 0;
    transition: opacity 0.4s;
}

.nav-link:hover {
    color: var(--platinum);
}

.nav-link.active {
    color: var(--void);
    font-weight: 500;
}

.nav-link.active::before {
    opacity: 1;
}

.nav-icon, .nav-text {
    position: relative;
    z-index: 1;
}

.nav-icon {
    font-size: 0.8rem;
}

/* Contenido Principal */
.main-content {
    position: relative;
    z-index: 10;
    padding-top: 120px;
    min-height: 100vh;
}

/* Secciones */
.page-section {
    display: none;
    padding: 2rem 3rem 4rem;
    max-width: 1600px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease-out;
    content-visibility: auto;
    contain-intrinsic-size: 1px 1200px;
}

.page-section.active {
    display: block;
}

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

/* Hero Section */
.section-hero {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 0;
}

.section-hero.compact {
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 400;
    background: linear-gradient(135deg, var(--platinum) 0%, var(--gold-pale) 50%, var(--platinum) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.hero-subtitle {
    color: var(--silver);
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.15em;
}

/* Carrusel de Juegos */
.game-carousel {
    position: relative;
    margin-bottom: 4rem;
    padding: 0 3rem;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 2rem 0;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--graphite);
    border: 1px solid var(--stone);
    border-radius: 50%;
    color: var(--gold-rich);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.carousel-arrow:hover {
    background: var(--gold-rich);
    color: var(--void);
    box-shadow: var(--glow-gold);
}

.carousel-arrow.prev { left: 0; }
.carousel-arrow.next { right: 0; }

/* Tiles de Juegos */
.game-tile {
    flex: 0 0 280px;
    height: 200px;
    background: var(--charcoal);
    border: 1px solid var(--graphite);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    scroll-snap-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.game-tile:hover, .game-tile.selected {
    transform: translateY(-10px);
    border-color: var(--gold-deep);
    box-shadow: var(--glow-gold), var(--shadow-deep);
}

.tile-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.game-tile:hover .tile-glow,
.game-tile.selected .tile-glow {
    opacity: 1;
}

.tile-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tile-number {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--gold-rich);
    opacity: 0.6;
    margin-bottom: auto;
}

.tile-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--platinum);
    margin-bottom: 0.5rem;
}

.tile-desc {
    font-size: 0.85rem;
    color: var(--silver);
    margin-bottom: 1rem;
}

.tile-odds {
    font-size: 0.75rem;
    color: var(--bronze);
    font-weight: 500;
}

/* Panel de Ticket */
.ticket-panel {
    background: linear-gradient(145deg, var(--charcoal) 0%, var(--obsidian) 100%);
    border: 1px solid var(--graphite);
    border-radius: 30px;
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    box-shadow: var(--shadow-deep);
}

.ticket-panel::before {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 29px;
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--graphite);
}

.selected-game {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold-rich);
}

.jackpot-display {
    text-align: right;
}

.jackpot-label {
    display: block;
    font-size: 0.75rem;
    color: var(--silver);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.25rem;
}

.jackpot-amount {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold-bright);
    text-shadow: 0 0 20px rgba(244, 208, 63, 0.3);
}

/* Esferas de Números */
.number-sphere-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    min-height: 100px;
}

.number-sphere {
    width: 80px;
    height: 80px;
    position: relative;
}

.sphere-input {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, var(--slate), var(--graphite));
    border: 2px solid var(--stone);
    border-radius: 50%;
    color: var(--platinum);
    font-family: var(--font-display);
    font-size: 1.75rem;
    text-align: center;
    outline: none;
    transition: all 0.3s;
    box-shadow: 
        inset -5px -5px 10px rgba(0,0,0,0.3),
        inset 5px 5px 10px rgba(255,255,255,0.02),
        0 5px 15px rgba(0,0,0,0.3);
}

.sphere-input:focus {
    border-color: var(--gold-rich);
    box-shadow: 
        inset -5px -5px 10px rgba(0,0,0,0.3),
        inset 5px 5px 10px rgba(255,255,255,0.02),
        0 0 30px rgba(212, 175, 55, 0.2);
    color: var(--gold-bright);
}

/* Campos Especiales */
.special-fields {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.special-group {
    text-align: center;
}

.special-label {
    display: block;
    font-size: 0.75rem;
    color: var(--silver);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}

.special-sphere {
    width: 60px;
    height: 60px;
}

.special-sphere .sphere-input {
    font-size: 1.25rem;
    border-color: var(--gold-deep);
    color: var(--gold-rich);
}

/* Botón Verificar */
.verify-button {
    position: relative;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--gold-deep), var(--gold-rich), var(--gold-deep));
    background-size: 200% 100%;
    border: none;
    border-radius: 15px;
    color: var(--void);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.verify-button:hover {
    background-position: 100% 0;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.button-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s;
}

.verify-button:hover .button-shine {
    left: 100%;
}

/* Resultado */
.result-stage {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.result-stage.active {
    display: flex;
}

.result-curtain {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    animation: curtainIn 0.5s ease-out;
}

@keyframes curtainIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.result-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 4rem;
    animation: resultIn 0.6s ease-out 0.3s both;
}

@keyframes resultIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* Histórico */
.history-filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.filter-select, .filter-date {
    background: var(--charcoal);
    border: 1px solid var(--graphite);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    color: var(--platinum);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
    outline: 2px solid var(--gold-rich);
    outline-offset: 2px;
}

.filter-select:focus, .filter-date:focus {
    border-color: var(--gold-rich);
    box-shadow: var(--glow-soft);
}

.history-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.history-item {
    background: var(--charcoal);
    border: 1px solid var(--graphite);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s;
}

.history-item:hover {
    border-color: var(--stone);
    transform: translateX(10px);
}

.history-date {
    text-align: center;
    min-width: 80px;
}

.history-day {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold-rich);
    line-height: 1;
}

.history-month {
    font-size: 0.75rem;
    color: var(--silver);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.history-game {
    font-family: var(--font-display);
    color: var(--platinum);
    min-width: 150px;
}

.history-numbers {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    flex: 1;
}

.history-number {
    width: 40px;
    height: 40px;
    background: var(--graphite);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--platinum);
}

.history-number.star {
    background: linear-gradient(145deg, #1a1520, #2a2035);
    border: 1px solid var(--gold-deep);
    color: var(--gold-rich);
}

.history-prize {
    text-align: right;
    min-width: 120px;
}

.prize-label {
    font-size: 0.7rem;
    color: var(--silver);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.prize-value {
    font-family: var(--font-display);
    color: var(--gold-bright);
    font-size: 1.25rem;
}

/* Dashboard Analytics */
.analytics-dashboard {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.dashboard-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-card.mini {
    background: var(--charcoal);
    border: 1px solid var(--graphite);
    border-radius: 15px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-card.mini:hover, .stat-card.mini.active {
    border-color: var(--gold-deep);
    background: var(--graphite);
}

.stat-card.mini.active {
    box-shadow: var(--glow-soft);
}

.stat-icon {
    color: var(--gold-rich);
    font-size: 1.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--platinum);
}

.dashboard-main {
    background: var(--charcoal);
    border: 1px solid var(--graphite);
    border-radius: 20px;
    padding: 2rem;
    min-height: 500px;
}

/* Sección Suerte */
.lucky-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 600px;
}

.crystal-ball {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ball-outer {
    width: 350px;
    height: 350px;
    background: linear-gradient(145deg, var(--graphite), var(--charcoal));
    border-radius: 50%;
    padding: 20px;
    box-shadow: 
        0 0 60px rgba(212, 175, 55, 0.1),
        inset 0 0 60px rgba(0,0,0,0.5);
}

.ball-inner {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.1), transparent 70%),
                radial-gradient(circle at 70% 70%, rgba(184, 134, 11, 0.05), transparent 50%);
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.ball-glow {
    position: absolute;
    top: 20%;
    left: 30%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(244, 208, 63, 0.3) 0%, transparent 70%);
    filter: blur(20px);
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.2); }
}

.lucky-controls {
    text-align: center;
}

.lucky-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--platinum);
    margin-bottom: 1rem;
}

.lucky-subtitle {
    color: var(--silver);
    margin-bottom: 3rem;
}

.lucky-select {
    width: 100%;
    max-width: 300px;
    background: var(--charcoal);
    border: 1px solid var(--graphite);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    color: var(--platinum);
    font-family: var(--font-body);
    font-size: 1rem;
    margin-bottom: 2rem;
    outline: none;
}

.lucky-button {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: transparent;
    border: 2px solid var(--gold-rich);
    border-radius: 100px;
    color: var(--gold-rich);
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.3em;
    cursor: pointer;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.lucky-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-rich);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s;
}

.lucky-button:hover {
    color: var(--void);
}

.lucky-button:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.lucky-button span {
    position: relative;
    z-index: 1;
}

.lucky-result {
    margin-top: 3rem;
    min-height: 80px;
}

/* Footer */
.footer {
    position: relative;
    z-index: 10;
    padding: 4rem 3rem;
    text-align: center;
    border-top: 1px solid var(--graphite);
    margin-top: 4rem;
}

.footer-oracle {
    margin-bottom: 2rem;
}

.oracle-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--gold-rich);
    font-style: italic;
    opacity: 0.8;
}

.footer-legal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    color: var(--silver);
    font-size: 0.85rem;
}

.separator {
    color: var(--gold-deep);
}

/* Loading Modal */
.loading-modal {
    position: fixed;
    inset: 0;
    background: var(--void);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.loading-modal.active {
    display: flex;
}

.loading-ritual {
    text-align: center;
}

.ritual-circle {
    width: 100px;
    height: 100px;
    border: 2px solid transparent;
    border-top-color: var(--gold-rich);
    border-radius: 50%;
    margin: 0 auto 2rem;
    animation: ritualSpin 1s linear infinite;
}

.ritual-circle:nth-child(2) {
    width: 80px;
    height: 80px;
    margin-top: -110px;
    animation-duration: 1.5s;
    animation-direction: reverse;
}

.ritual-circle:nth-child(3) {
    width: 60px;
    height: 60px;
    margin-top: -90px;
    animation-duration: 2s;
}

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

.ritual-text {
    color: var(--gold-rich);
    font-family: var(--font-display);
    letter-spacing: 0.2em;
    animation: pulseText 2s ease-in-out infinite;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .analytics-dashboard {
        grid-template-columns: 1fr;
    }
    
    .dashboard-sidebar {
        flex-direction: row;
        overflow-x: auto;
    }
    
    .lucky-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ball-outer {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1rem;
    }
    
    .header-inner {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .ticket-panel {
        padding: 2rem 1.5rem;
    }
    
    .number-sphere {
        width: 60px;
        height: 60px;
    }
    
    .sphere-input {
        font-size: 1.25rem;
    }
    
    .history-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Mejoras para el historial */

.history-item {
    background: var(--charcoal);
    border: 1px solid var(--graphite);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    transition: all 0.3s;
    margin-bottom: 1.5rem;
}

.history-date {
    text-align: center;
    min-width: 80px;
    padding-top: 0.5rem;
}

.history-day {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--gold-rich);
    line-height: 1;
    font-weight: 600;
}

.history-month {
    font-size: 0.85rem;
    color: var(--silver);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 0.25rem;
}

.history-game {
    font-family: var(--font-display);
    color: var(--platinum);
    font-size: 1.1rem;
    font-weight: 500;
}

.history-numbers {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}

.history-number {
    width: 45px;
    height: 45px;
    background: var(--graphite);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--platinum);
    border: 1px solid var(--slate);
    transition: all 0.3s;
}

.history-number:hover {
    transform: scale(1.1);
    border-color: var(--gold-rich);
}

.history-number.star {
    background: linear-gradient(145deg, #1a1520, #2a2035);
    border: 2px solid var(--gold-rich);
    color: var(--gold-rich);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.history-prize {
    text-align: right;
    min-width: 140px;
    padding-top: 0.5rem;
}

.prize-label {
    font-size: 0.75rem;
    color: var(--silver);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.prize-value {
    font-family: var(--font-display);
    color: var(--gold-bright);
    font-size: 1.5rem;
    font-weight: 600;
}
.sync-selae-btn {
    background: linear-gradient(145deg, #1a5f1a, #2e8b2e);
    border: 1px solid #4caf50;
    color: #e8f5e9;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sync-selae-btn:hover {
    background: linear-gradient(145deg, #2e8b2e, #4caf50);
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.3);
    transform: translateY(-2px);
}

.sync-selae-btn:active {
    transform: translateY(0);
}