/* Font & Global Settings */
:root {
    /* Luxury Palette - Pearl White, Champagne Gold, Silver */
    --bg-grad-1: #ffffff;
    --bg-grad-2: #fcf9f2; /* Soft ivory */
    
    --wheel-shadow-color: rgba(184, 134, 11, 0.15); /* Gold shadow */
    
    --text-primary: #3b3a36; /* Charcoal */
    --text-secondary: #746d5f;
    
    /* Gold Gradients */
    --gold-main: #d4af37;
    --gold-dark: #b8860b;
    --gold-light: #ffdf70;
    --btn-primary: linear-gradient(135deg, var(--gold-light), var(--gold-main), var(--gold-dark));
    
    --accent: #e51d38; /* Red Casino Pointer */
    
    /* Neumorphic / Super Soft 3D Shadows */
    --shadow-wheel: 
        0 30px 60px -15px var(--wheel-shadow-color),
        0 10px 20px -5px rgba(0,0,0,0.1),
        inset 0 0 0 8px rgba(255, 255, 255, 1),
        inset 0 10px 25px rgba(0,0,0,0.05);
        
    --shadow-btn: 0 10px 25px -5px rgba(212, 175, 55, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background: linear-gradient(135deg, var(--bg-grad-1) 0%, var(--bg-grad-2) 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-primary);
    overflow: hidden; 
}

/* Container */
.app-container {
    width: 100%;
    max-width: 500px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    position: relative;
    z-index: 10;
}

/* Header */
header {
    text-align: center;
    animation: fadeInDown 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -1.5px;
    /* Luxury Gold Shimmer Text Effect */
    background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold-light) 40%, #ffffff 50%, var(--gold-light) 60%, var(--gold-dark) 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shineText 4s linear infinite;
    text-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 600;
}

/* Wheel Layout */
.wheel-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3.5rem;
    animation: zoomIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wheel-outer-ring {
    position: relative;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    /* Luxury Silver Base */
    background: linear-gradient(135deg, #fdfbfb 0%, #ebebeb 100%);
    box-shadow: var(--shadow-wheel);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #ffffff;
}

@media (min-width: 450px) {
    .wheel-outer-ring {
        width: 380px;
        height: 380px;
    }
}

/* Casino LED Lights Array */
.wheel-lights {
    position: absolute;
    top: 5px; left: 5px; right: 5px; bottom: 5px;
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
}

 /* --- VIP SULTAN MODE EFFECTS --- */
.wheel-outer-ring.sultan-mode {
    border-color: #ffd700;
    animation: sultanPulse 0.6s infinite alternate;
}

@keyframes sultanPulse {
    0% {
        box-shadow: var(--shadow-wheel), 0 0 20px #ff6600, 0 0 40px #ffcc00, inset 0 0 20px rgba(255, 102, 0, 0.4);
    }
    100% {
        box-shadow: var(--shadow-wheel), 0 0 50px #ff0000, 0 0 80px #ffcc00, 0 0 100px #ff6600, inset 0 0 40px rgba(255, 0, 0, 0.6);
    }
}

.light-bulb {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 5px #fff, 0 0 10px var(--gold-light), inset 0 0 2px #fff;
    left: 50%;
    top: 0;
    margin-left: -4px; /* center it */
    transform-origin: 50% 185px; /* Radius minus inset padding */
    animation: blinkLight 1.5s infinite alternate;
}

@media (min-width: 450px) {
    .light-bulb {
        transform-origin: 50% 215px; /* Larger radius scale */
    }
}

.light-bulb:nth-child(even) {
    animation-delay: -0.7s;
    background: var(--gold-light);
    box-shadow: 0 0 5px var(--gold-light), 0 0 10px var(--gold-main);
}

@keyframes blinkLight {
    0% { opacity: 0.3; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1.3); } /* Need transform origin to stick? Wait, transform overrides scale. We apply scale in the parent? No, we will animate opacity only for stability since transform rotates it. */
}

/* Proper Light Animation (opacity only to keep transform intact) */
@keyframes blinkLightSafe {
    0% { opacity: 0.2; }
    100% { opacity: 1; }
}
.light-bulb {
    animation: blinkLightSafe 0.5s infinite alternate;
}

/* Glowing Aura behind Wheel */
.wheel-outer-ring::before {
    content: '';
    position: absolute;
    top: -20px; left: -20px; right: -20px; bottom: -20px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 223, 112, 0.4), rgba(212, 175, 55, 0.2));
    z-index: -1;
    filter: blur(25px);
    animation: pulseAura 4s ease-in-out infinite alternate;
}

.wheel-container {
    width: 90%; /* Inner size leaving room for lights */
    height: 90%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3); /* Gold rim */
}

#wheel-canvas {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: block;
}

/* 3D Glass Cover Effect - The Secret Sauce */
.glossy-overlay {
    position: absolute;
    top: 5%; left: 5%; right: 5%; bottom: 5%;
    border-radius: 50%;
    z-index: 4;
    pointer-events: none;
    background: radial-gradient(100% 100% at 50% 0%, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 40%);
    box-shadow: inset 0 -10px 30px rgba(0,0,0,0.1);
}

/* Center Golden Cap */
/* Center Golden Cap */
.wheel-inner-ring {
    position: absolute;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #fff 0%, #eee 100%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 
        0 8px 20px rgba(0,0,0,0.2), 
        inset 0 2px 5px rgba(255,255,255,1);
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(212, 175, 55, 0.5);
}
.wheel-inner-ring::after {
    content: '';
    width: 30px;
    height: 30px;
    /* Solid Gold Knob */
    background: radial-gradient(circle at 30% 30%, var(--gold-light), var(--gold-dark));
    border-radius: 50%;
    box-shadow: inset 0 -2px 6px rgba(0,0,0,0.4), 0 2px 4px rgba(0,0,0,0.2);
}

/* Dynamic Pointer */
.pointer {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    /* Red Diamond Casino Arrow */
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 50px solid var(--accent);
    z-index: 10;
    transform-origin: 50% 0; /* Rotate from top */
    transition: transform 0.05s ease-out; /* Very fast snappy tick */
    filter: drop-shadow(0 8px 8px rgba(0,0,0,0.3)) drop-shadow(0 -2px 1px rgba(255,255,255,0.5));
}

.pointer.ticking {
    transform: translateX(-50%) rotate(-12deg); 
}

/* Golden Spin Button */
.spin-btn {
    background: var(--btn-primary);
    color: #fff;
    border: none;
    padding: 1.25rem 3.5rem;
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: var(--shadow-btn);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.4);
}

.spin-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    transition: left 0.7s ease;
}

.spin-btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 35px -5px rgba(212, 175, 55, 0.6);
}

.spin-btn:hover::before {
    left: 100%;
}

.spin-btn:active {
    transform: translateY(2px) scale(0.97);
    box-shadow: 0 5px 15px -5px rgba(212, 175, 55, 0.6);
}

.spin-btn:disabled {
    background: #e2e8f0;
    color: #94a3b8;
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
    border-color: transparent;
    text-shadow: none;
}

/* Light Glassmorphism Modal */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.1); 
    backdrop-filter: blur(20px); /* Heavy fog */
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.modal-backdrop.hidden {
    opacity: 0;
    pointer-events: none;
}

.modal-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(250, 245, 230, 0.95));
    padding: 3rem 2rem;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 35px 80px -10px rgba(0, 0, 0, 0.2), inset 0 0 0 2px rgba(255,255,255,1);
    width: 90%;
    max-width: 400px;
    transform: translateY(0) scale(1);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(212, 175, 55, 0.4); /* Gold minimal rim */
}

.modal-backdrop.hidden .modal-content {
    transform: translateY(40px) scale(0.85); 
}

.modal-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 10px rgba(0,0,0,0.1));
}

.modal-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.modal-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.5;
}

#reward-text strong {
    color: var(--gold-dark);
    font-size: 1.5rem;
    display: block;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#welcome-modal strong {
    color: var(--gold-dark);
    font-weight: 800;
}

.modal-btn {
    background: var(--text-primary);
    color: white;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(212, 175, 55, 0.4);
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px) rotate(5deg); }
    100% { transform: translateY(0px); }
}

@keyframes shineText {
    to { background-position: 200% center; }
}

@keyframes pulseAura {
    0% { transform: scale(0.95); opacity: 0.5; }
    100% { transform: scale(1.05); opacity: 0.8; }
}

/* Luxury Dust Blobs */
.luxury-dust {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    z-index: 0;
    opacity: 0.5;
    animation: moveBlob 25s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.dust-1 { top: -10%; left: -10%; width: 400px; height: 400px; background: rgba(212, 175, 55, 0.3); animation-delay: 0s; }
.dust-2 { bottom: -20%; right: -10%; width: 500px; height: 500px; background: rgba(255, 223, 112, 0.3); animation-delay: -5s; }
.dust-3 { top: 40%; left: 50%; width: 300px; height: 300px; background: rgba(255, 255, 255, 0.6); animation-duration: 30s; }

@keyframes moveBlob {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(80px, 40px) scale(1.05); }
    100% { transform: translate(-40px, 80px) scale(0.95); }
}

/* Gold Ornaments Floating */
.ornament {
    position: absolute;
    color: var(--gold-light);
    z-index: 1;
    opacity: 0.9;
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.8));
    animation: floatOrn 4s ease-in-out infinite alternate;
}

.ornament.orn-1 { top: 15%; left: 10%; font-size: 1.8rem; animation-delay: 0s; }
.ornament.orn-2 { top: 70%; left: 5%; font-size: 2.8rem; animation-delay: -1.5s; }
.ornament.orn-3 { top: 20%; right: 10%; font-size: 2.2rem; animation-delay: -3s; }
.ornament.orn-4 { top: 80%; right: 15%; font-size: 2rem; animation-delay: -1s; }

@keyframes floatOrn {
    0% { transform: translateY(0) rotate(0deg) scale(1); }
    100% { transform: translateY(-20px) rotate(15deg) scale(1.1); }
}

/* Input Group Styles */
.input-group {
    width: 100%;
    max-width: 320px;
    margin-bottom: -1rem; /* bring it closer to the button */
    position: relative;
    z-index: 10;
}

#spin-code {
    width: 100%;
    padding: 1.1rem 1.5rem;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 50px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-primary);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.05), 0 5px 15px -5px rgba(212, 175, 55, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    outline: none;
}

#spin-code:focus {
    border-color: var(--gold-main);
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.05), 0 8px 25px rgba(212, 175, 55, 0.5);
    background: #ffffff;
    transform: translateY(-2px);
}

#spin-code::placeholder {
    color: var(--text-secondary);
    opacity: 0.8;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: none;
}

.error-shake {
    animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
    border-color: var(--accent) !important; 
    color: var(--accent) !important;
    background: #fff5f5 !important;
}
.error-shake::placeholder {
    color: var(--accent) !important;
    opacity: 1 !important;
}

@keyframes shake {
  10%, 90% { transform: translateX(-2px); }
  20%, 80% { transform: translateX(4px); }
  30%, 50%, 70% { transform: translateX(-6px); }
  40%, 60% { transform: translateX(6px); }
}

/* History Button */
.history-toggle-btn {
    background: transparent;
    color: var(--gold-dark);
    border: 2px solid var(--gold-dark);
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: -1rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
}
.history-toggle-btn:hover {
    background: var(--gold-light);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
    border-color: var(--gold-light);
}

/* History Modal Specific */
.history-content {
    padding: 2rem 1.5rem;
    max-width: 450px;
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 1rem;
}
.close-btn {
    background: transparent;
    border: none;
    font-size: 2.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    line-height: 0.8;
}
.close-btn:hover { color: var(--accent); }

.history-list-container {
    max-height: 300px;
    overflow-y: auto;
    padding-right: 5px;
}
.history-list-container::-webkit-scrollbar { width: 6px; }
.history-list-container::-webkit-scrollbar-thumb { background: var(--gold-main); border-radius: 10px; }
.history-list-container::-webkit-scrollbar-track { background: rgba(0,0,0,0.05); }

.history-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}
.history-table th {
    padding: 0.5rem;
    color: var(--text-secondary);
    font-weight: 600;
    border-bottom: 2px solid #eaeaea;
}
.history-table td {
    padding: 0.8rem 0.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    font-weight: 600;
    color: var(--text-primary);
}
.history-table tr:last-child td { border-bottom: none; }
.history-prize { color: var(--gold-dark) !important; text-align: right; }

/* Animation for new row */
@keyframes slideDownHistory {
    from { opacity: 0; transform: translateY(-10px); background: rgba(212, 175, 55, 0.2); }
    to { opacity: 1; transform: translateY(0); background: transparent; }
}
.new-row {
    animation: slideDownHistory 0.5s ease-out forwards;
}

/* ========================================================= */
/* MOBILE RESPONSIVE OPTIMIZATIONS (Sultan Grade)            */
/* ========================================================= */
@media screen and (max-width: 480px) {
    .app-container {
        padding: 1rem;
        gap: 1.5rem;
    }
    
    header h1 {
        font-size: 2.3rem;
        letter-spacing: -0.5px;
    }
    
    header p {
        font-size: 0.95rem;
        padding: 0 10px;
    }
    
    /* Scale down the entire wheel complex effortlessly */
    .wheel-section {
        gap: 2.5rem;
        transform: scale(0.9);
        margin-top: -0.5rem;
        margin-bottom: -1rem;
    }
    
    #spin-code {
        font-size: 1rem;
        padding: 0.9rem 1.2rem;
    }
    
    .spin-btn {
        padding: 1.1rem 2.5rem;
        font-size: 1.1rem;
    }
    
    /* Modals Content Fits Mobile */
    .modal-content {
        padding: 2rem 1.2rem;
    }
    
    #welcome-modal .modal-content h2 {
        font-size: 1.6rem !important;
    }
    
    #reward-modal h2 {
        font-size: 1.8rem;
    }
    
    #reward-text strong {
        font-size: 1.3rem;
    }
    
    .history-toggle-btn {
        font-size: 0.95rem;
        padding: 0.7rem 1.5rem;
    }
}

/* Extra small screens (e.g., iPhone SE, Galaxy Fold external) */
@media screen and (max-width: 360px) {
    header h1 {
        font-size: 1.9rem;
    }
    .wheel-section {
        transform: scale(0.78);
        margin-top: -1.5rem;
        margin-bottom: -2rem;
    }
    .modal-content {
        padding: 1.5rem 1rem;
    }
    #welcome-modal .modal-content h2 {
        font-size: 1.4rem !important;
    }
}

/* --- FITUR TERBARU: MARQUEE & FLOATING TOOLS --- */
.promo-marquee-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #b8860b, #ffd700, #b8860b);
    color: #1a202c;
    padding: 8px 15px;
    font-weight: 800;
    font-size: 0.95rem;
    z-index: 99;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(214, 158, 46, 0.4);
}

.promo-marquee-container.hidden {
    display: none;
}

.floating-tools {
    position: fixed;
    top: 50px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 100;
}

.float-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.4);
    color: #5a4000;
    padding: 8px 16px;
    border-radius: 30px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.float-btn:hover {
    background: linear-gradient(135deg, #ffd700, #b8860b);
    border-color: #ffd700;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(214, 158, 46, 0.4);
}

/* Wall of Fame List Styles */
.leaderboard-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    text-align: left;
    max-height: 300px;
    overflow-y: auto;
}

.lb-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #cbd5e0;
}

.lb-item.Sultan {
    background: linear-gradient(90deg, #fffaf0, #fff);
    border-left: 4px solid #e53e3e;
    box-shadow: 0 4px 10px rgba(229, 62, 62, 0.1);
}

.lb-item.Gold {
    border-left: 4px solid #d69e2e;
}

.lb-rank {
    font-weight: 800;
    color: #4a5568;
    width: 25px;
}

.lb-user span {
    display: block;
}

.lb-mode {
    font-size: 0.75rem; 
    color: #a0aec0;
}

.lb-sultan-text {
    font-size: 0.75rem; 
    color: #e53e3e; 
    font-weight: 800;
}

.lb-score {
    font-weight: 800;
    color: #38a169;
}

/* --- CINEMATIC INTRO --- */
.cinematic-loader {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1), opacity 1s ease;
}

.cinematic-loader.door-open {
    transform: translateY(-100vh);
    opacity: 0;
}

.intro-content {
    text-align: center;
}

.logo-pulse {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 4rem;
    color: #ffd700;
    margin: 0;
    letter-spacing: 2px;
    animation: goldPulse 1.5s infinite alternate;
}

.logo-pulse span {
    color: #fff;
}

.intro-content p {
    color: #a0aec0;
    letter-spacing: 5px;
    font-size: 0.8rem;
    margin-top: 10px;
}

@keyframes goldPulse {
    0% { transform: scale(1); text-shadow: 0 0 10px rgba(255, 215, 0, 0.2); }
    100% { transform: scale(1.05); text-shadow: 0 0 30px rgba(255, 215, 0, 0.8); }
}

/* --- PARALLAX COINS (PURE CSS) --- */
.parallax-coin {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    /* Realistic Gold Coin Shader */
    background: radial-gradient(ellipse at 30% 30%, #fff 0%, #ffd700 20%, #b8860b 60%, #5a4000 100%);
    box-shadow: inset 0 0 10px rgba(255,255,255,0.8), 2px 5px 15px rgba(0,0,0,0.4);
    border: 3px solid #ffdf00;
    z-index: -1; /* Behind wheel */
    opacity: 0.6;
    animation: float-coin linear infinite;
}

/* Depth of Field Blur for realism */
.coin-1 { width: 100px; height: 100px; top: 10%; left: 5%; filter: blur(4px); animation-duration: 25s; }
.coin-2 { width: 40px; height: 40px; top: 60%; left: 15%; filter: blur(1px); animation-duration: 15s; animation-direction: reverse; }
.coin-3 { width: 80px; height: 80px; top: 20%; right: 5%; filter: blur(3px); animation-duration: 22s; }
.coin-4 { width: 50px; height: 50px; top: 70%; right: 10%; filter: blur(1.5px); animation-duration: 18s; animation-direction: reverse; }
.coin-5 { width: 30px; height: 30px; top: 40%; left: 50%; filter: blur(5px); animation-duration: 30s; }

@keyframes float-coin {
    0% { transform: translateY(0px) rotate(0deg) scale(1); }
    33% { transform: translateY(-30px) rotate(120deg) scale(1.05); }
    66% { transform: translateY(20px) rotate(240deg) scale(0.95); }
    100% { transform: translateY(0px) rotate(360deg) scale(1); }
}
