:root {
    --gold: #d4af37;
    --gold-bright: #ffdf91;
    --dark: #0a0a0a;
}

body { font-family: 'Montserrat', sans-serif; overflow-x: hidden; background-color: black; }
.serif { font-family: 'Cinzel', serif; }
.text-gold { color: var(--gold); }
.text-gold-light { color: #f9e4b7; }

/* Dinamik Arka Plan */
.gold-gradient-bg {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 50%, #1a1a1a 0%, #000 100%);
    z-index: -2;
}

#snow-canvas {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: -1;
}

/* Glassmorphism Nav */
.nav-glass {
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

/* Hero */
.hero-wrap { padding: 180px 0 100px; }
.hero-title { font-size: clamp(2.5rem, 8vw, 5rem); font-weight: 700; line-height: 1.1; }
.glow-gold { color: var(--gold); text-shadow: 0 0 30px rgba(212, 175, 55, 0.5); }

/* Luxury Countdown */
.countdown-luxury {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--gold);
    padding: 30px; border-radius: 20px;
    display: inline-block; min-width: 320px;
}
.timer-item { text-align: center; }
.timer-val { font-size: 40px; font-weight: 800; color: #fff; display: block; }
.timer-label { font-size: 10px; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; }

/* Calculator */
.calc-gold-wrap {
    background: linear-gradient(145deg, #151515, #0a0a0a);
    border: 1px solid var(--gold);
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.8);
}
.calc-input {
    background: transparent; border: none; border-bottom: 2px solid #333;
    color: white; font-size: 24px; width: 100%; padding: 10px 0; transition: 0.3s;
}
.calc-input:focus { border-bottom-color: var(--gold); outline: none; }
.res-grid { display: flex; gap: 20px; margin-top: 30px; text-align: center; }
.res-item { flex: 1; padding: 20px; background: rgba(255,255,255,0.03); border-radius: 15px; }
.total-display { padding: 20px; background: var(--gold); color: black; border-radius: 15px; }

/* Prize Cards */
.prize-card-premium {
    position: relative; border-radius: 30px; overflow: hidden; height: 500px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}
.prize-card-premium img { width: 100%; height: 100%; object-fit: cover; transition: 0.8s; }
.prize-card-premium:hover img { transform: scale(1.1); }
.prize-overlay {
    position: absolute; bottom: 0; left: 0; width: 100%; height: 60%;
    background: linear-gradient(to top, black, transparent);
}
.prize-info { position: absolute; bottom: 40px; left: 40px; z-index: 2; }

/* Timeline */
.timeline-wrap { display: flex; justify-content: space-between; position: relative; }
.timeline-step { text-align: center; position: relative; z-index: 1; flex: 1; }
.timeline-step .num {
    width: 50px; height: 50px; background: var(--gold); color: black;
    border-radius: 50%; margin: 0 auto 15px; display: flex; align-items: center;
    justify-content: center; font-weight: 800; font-size: 20px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* Tech Cards */
.bg-black-lighter { background-color: #0f1012; }
.tech-card-premium {
    background: #1a1c1e;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
}
.tech-card-premium:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}
.tech-img-wrap { height: 160px; overflow: hidden; }
.tech-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.tech-badge {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 50px;
    font-size: 9px;
    font-weight: 700;
}
.gold-line { width: 80px; height: 2px; background: var(--gold); margin: 15px 0; }

/* Shimmer Button */
.btn-gold-shimmer {
    background: linear-gradient(45deg, #d4af37, #f9e4b7, #d4af37);
    background-size: 200% auto;
    animation: shimmer 2s infinite; border: none;
}
@keyframes shimmer { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

.py-100 { padding: 100px 0; }
.live-indicator { color: var(--gold); font-weight: bold; font-size: 14px; }
.dot { height: 10px; width: 10px; background-color: #28a745; border-radius: 50%; display: inline-block; margin-right: 5px; animation: blink 1s infinite; }
@keyframes blink { 0% { opacity: 1; } 50% { opacity: 0.3; } 100% { opacity: 1; } }