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

:root {
    --primary-color: #d32f2f;
    --secondary-color: #c62828;
    --accent-color: #ff6b6b;
    --bg-gradient: linear-gradient(135deg, #1a237e 0%, #283593 25%, #1a237e 50%, #0d47a1 75%, #1a237e 100%);
    --card-bg: rgba(255, 255, 255, 0.95);
    --text-primary: #2c3e50;
    --text-secondary: #7f8c8d;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.3);
    --border-radius: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1a3e 25%, #2d1b4e 50%, #1a1a3e 75%, #0a0e27 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    min-height: 100vh;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 20, 147, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Sparkles Animation */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, #fff, transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(255, 215, 0, 0.8), transparent),
        radial-gradient(1px 1px at 50% 50%, #fff, transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(255, 20, 147, 0.6), transparent),
        radial-gradient(2px 2px at 90% 40%, #fff, transparent),
        radial-gradient(1px 1px at 33% 60%, rgba(0, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 70% 20%, #fff, transparent),
        radial-gradient(2px 2px at 10% 80%, rgba(255, 215, 0, 0.6), transparent);
    background-size: 200% 200%;
    background-position: 0% 0%, 100% 0%, 0% 100%, 100% 100%, 50% 50%, 25% 75%, 75% 25%, 50% 50%;
    animation: sparkle 8s linear infinite;
    pointer-events: none;
    z-index: 1;
    opacity: 0.8;
}

@keyframes sparkle {
    0% { background-position: 0% 0%, 100% 0%, 0% 100%, 100% 100%, 50% 50%, 25% 75%, 75% 25%, 50% 50%; }
    100% { background-position: 100% 100%, 0% 100%, 100% 0%, 0% 0%, 50% 50%, 75% 25%, 25% 75%, 50% 50%; }
}

/* Snowflakes */
.snowflake {
    position: fixed;
    top: -10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5em;
    font-family: Arial;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
    animation: snowfall linear infinite;
    pointer-events: none;
    z-index: 2;
}

@keyframes snowfall {
    0% {
        transform: translateY(0vh) translateX(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) translateX(var(--snow-drift)) rotate(360deg);
        opacity: 0;
    }
}

.page {
    display: none;
    position: relative;
    z-index: 3;
}

.page.active {
    display: block;
}

/* Login Page Styles */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.login-card {
    background: var(--card-bg);
    padding: 50px 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 450px;
    text-align: center;
    backdrop-filter: blur(10px);
    animation: slideUp 0.6s ease-out;
}

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

.santa-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: bounce 2s infinite, twinkle 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
}

@keyframes twinkle {
    0%, 100% { 
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
        transform: scale(1);
    }
    50% { 
        filter: drop-shadow(0 0 20px rgba(255, 20, 147, 0.8)) drop-shadow(0 0 30px rgba(0, 255, 255, 0.6));
        transform: scale(1.1);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.login-card h1 {
    color: var(--primary-color);
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: 700;
}

.subtitle {
    color: var(--text-secondary);
    font-size: 1.1em;
    margin-bottom: 30px;
}

.input-group {
    margin-bottom: 25px;
    text-align: left;
}

.input-group label {
    display: block;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95em;
}

.input-group input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1em;
    transition: var(--transition);
    background: white;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

.btn-primary {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
    margin-top: 10px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
}

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

.hint-text {
    margin-top: 20px;
    font-size: 0.85em;
    color: var(--text-secondary);
    font-style: italic;
}

/* Main Page Styles */
.header {
    text-align: center;
    color: white;
    margin-bottom: 40px;
    padding: 30px 20px;
    animation: fadeIn 0.8s ease-out;
}

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

.header h1 {
    font-size: 3em;
    margin-bottom: 10px;
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.8),
        0 0 20px rgba(255, 20, 147, 0.6),
        0 0 30px rgba(0, 255, 255, 0.4),
        2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: titleGlow 3s ease-in-out infinite;
    background: linear-gradient(45deg, #ffd700, #ff69b4, #00ffff, #ffd700);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite, gradientText 5s ease infinite;
}

@keyframes titleGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
    }
    50% { 
        filter: drop-shadow(0 0 20px rgba(255, 20, 147, 0.8)) drop-shadow(0 0 30px rgba(0, 255, 255, 0.6));
    }
}

@keyframes gradientText {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.tagline {
    font-size: 1.3em;
    opacity: 0.9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.nav-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--card-bg);
    border: none;
    border-radius: 15px;
    font-size: 1.1em;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
    min-width: 200px;
    justify-content: center;
}

.nav-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.nav-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.btn-icon {
    font-size: 1.3em;
}

.content-section {
    display: none;
    animation: fadeIn 0.5s ease-out;
}

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

.section-header {
    text-align: center;
    color: white;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.section-header p {
    font-size: 1.2em;
    opacity: 0.9;
}

/* Quiz Container */
.quiz-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 40px;
    min-height: 400px;
}

.quiz-container .quiz-card {
    max-width: 500px;
    width: 100%;
}

.quiz-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(255, 215, 0, 0.1),
        inset 0 0 20px rgba(255, 20, 147, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background-image: 
        linear-gradient(var(--card-bg), var(--card-bg)),
        linear-gradient(135deg, #ffd700, #ff69b4, #00ffff, #ffd700);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { 
        box-shadow: 
            0 10px 30px rgba(0, 0, 0, 0.2),
            0 0 20px rgba(255, 215, 0, 0.2),
            inset 0 0 20px rgba(255, 20, 147, 0.1);
    }
    50% { 
        box-shadow: 
            0 10px 30px rgba(0, 0, 0, 0.2),
            0 0 40px rgba(255, 215, 0, 0.4),
            0 0 60px rgba(255, 20, 147, 0.3),
            inset 0 0 30px rgba(0, 255, 255, 0.2);
    }
}

.quiz-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ffd700, #ff69b4, #00ffff, #ffd700);
    background-size: 200% 100%;
    animation: shimmer 2s linear infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.quiz-card::after {
    content: '✨';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5em;
    animation: sparkleRotate 2s linear infinite;
    opacity: 0.7;
}

@keyframes sparkleRotate {
    0% { transform: rotate(0deg) scale(1); opacity: 0.7; }
    50% { transform: rotate(180deg) scale(1.2); opacity: 1; }
    100% { transform: rotate(360deg) scale(1); opacity: 0.7; }
}

.quiz-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.quiz-card.revealed {
    background: linear-gradient(135deg, #fff5f5, #ffe0e0);
}

.quiz-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
    min-width: 80px;
    text-align: center;
}

.quiz-hints {
    margin-bottom: 25px;
    min-height: 100px;
}

.quiz-hints h3 {
    color: var(--text-primary);
    margin-bottom: 15px;
    font-size: 1.5em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hint-text-content {
    color: var(--text-primary);
    line-height: 1.8;
    white-space: pre-line;
    font-size: 1.4em;
    font-weight: 700;
    letter-spacing: 0.3px;
    padding: 20px;
    background: rgba(211, 47, 47, 0.05);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    margin-top: 10px;
}

.reveal-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 
        0 4px 15px rgba(211, 47, 47, 0.3),
        0 0 10px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.reveal-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.reveal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
}

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

.quiz-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.santa-info-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.santa-info-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.santa-info-btn:active {
    transform: translateY(0);
}

.santa-info-display {
    margin-top: 20px;
    animation: fadeIn 0.5s ease-out;
}

.santa-info-card {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #4caf50;
}

.santa-info-card h4 {
    color: var(--text-primary);
    margin-bottom: 15px;
    font-size: 1.2em;
    font-weight: 700;
}

.santa-name-display {
    background: white;
    padding: 15px;
    border-radius: 8px;
    font-size: 1.3em;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.santa-wish-section {
    margin-top: 15px;
}

.santa-wish-section h5 {
    color: var(--text-primary);
    margin-bottom: 10px;
    font-size: 1em;
    font-weight: 600;
}

.santa-wish-content {
    background: white;
    padding: 15px;
    border-radius: 8px;
    color: var(--text-primary);
    line-height: 1.6;
    white-space: pre-line;
    font-size: 1.1em;
}

.santa-wish-content.empty {
    color: var(--text-secondary);
    font-style: italic;
}

.toggle-wish-btn {
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.95em;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(255, 152, 0, 0.3);
}

.toggle-wish-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.4);
}

.toggle-wish-btn:active {
    transform: translateY(0);
}

.next-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.next-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

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

.revealed-name {
    margin-top: 20px;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 10px;
    text-align: center;
    font-size: 1.3em;
    font-weight: bold;
    animation: revealAnimation 0.5s ease-out;
}

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

/* Santa Details Container */
.santa-details-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.santa-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.santa-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #4caf50, #66bb6a);
}

.santa-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.santa-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.santa-icon-small {
    font-size: 2.5em;
}

.santa-card-header h3 {
    color: var(--text-primary);
    font-size: 1.5em;
    flex: 1;
}

.santa-info {
    margin-bottom: 20px;
}

.santa-info-item {
    margin-bottom: 15px;
}

.santa-info-item label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.santa-info-item .value {
    color: var(--text-primary);
    font-size: 1.1em;
    line-height: 1.6;
    white-space: pre-line;
}

.santa-info-item .value.empty {
    color: var(--text-secondary);
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2em;
    }

    .quiz-container,
    .santa-details-container {
        grid-template-columns: 1fr;
    }

    .nav-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-btn {
        width: 100%;
    }

    .login-card {
        padding: 40px 30px;
    }
}

/* Confetti/Blast Effects */
.confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    background: #ffd700;
    position: fixed;
    animation: confettiFall linear forwards;
    pointer-events: none;
    z-index: 2;
}

.confetti:nth-child(odd) {
    background: #ff69b4;
    width: 8px;
    height: 8px;
}

.confetti:nth-child(3n) {
    background: #00ffff;
    width: 12px;
    height: 12px;
}

@keyframes confettiFall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Loading Animation */
.loading {
    text-align: center;
    color: white;
    font-size: 1.5em;
    padding: 50px;
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.8),
        0 0 20px rgba(255, 20, 147, 0.6);
}

/* Game Wheel Styles */
.game-wheel-container {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 20, 147, 0.1));
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(255, 215, 0, 0.2);
    animation: fadeIn 0.5s ease-out;
}

.game-header {
    margin-bottom: 25px;
}

.game-header h3 {
    color: var(--text-primary);
    font-size: 1.8em;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.game-header p {
    color: var(--text-secondary);
    font-size: 1.1em;
}

.wheel-wrapper {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 30px auto;
}

.wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 8px solid #fff;
    box-shadow: 
        0 0 0 4px rgba(255, 215, 0, 0.5),
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 0 20px rgba(0, 0, 0, 0.1);
    transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
}

.wheel.spinning {
    animation: wheelSpin 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
}

@keyframes wheelSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(var(--final-rotation, 1800deg)); }
}

.wheel-segment {
    position: absolute;
    width: 50%;
    height: 50%;
    top: 0;
    left: 50%;
    transform-origin: 0 100%;
    border-right: 2px solid rgba(255, 255, 255, 0.5);
    pointer-events: none;
}

.segment-text {
    position: absolute;
    left: 25px;
    top: 15px;
    font-size: 0.65em;
    font-weight: bold;
    color: white;
    text-shadow: 
        1px 1px 2px rgba(0, 0, 0, 0.8),
        0 0 5px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    max-width: 70px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.wheel-pointer {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2em;
    color: #ffd700;
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.8),
        0 0 20px rgba(255, 20, 147, 0.6);
    z-index: 10;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.spin-btn {
    width: 100%;
    max-width: 300px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #ffd700, #ff69b4, #00ffff);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 
        0 4px 15px rgba(255, 215, 0, 0.4),
        0 0 20px rgba(255, 20, 147, 0.3);
    margin: 20px auto;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spin-btn:hover:not(:disabled) {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 6px 25px rgba(255, 215, 0, 0.6),
        0 0 30px rgba(255, 20, 147, 0.5);
}

.spin-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.wheel-result {
    margin-top: 25px;
    animation: fadeIn 0.5s ease-out;
}

.selected-player {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 20, 147, 0.2));
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 215, 0, 0.5);
}

.selected-player h3 {
    color: var(--text-primary);
    font-size: 1.3em;
    margin-bottom: 10px;
}

.selected-name {
    background: linear-gradient(135deg, #ffd700, #ff69b4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2em;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.game-challenge {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 15px;
    border-left: 5px solid #ffd700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.game-challenge h4 {
    color: var(--text-primary);
    font-size: 1.2em;
    margin-bottom: 10px;
}

.game-challenge p {
    color: var(--text-primary);
    font-size: 1.1em;
    line-height: 1.6;
}

/* Secret Angel Display */
.secret-angel-display {
    text-align: center;
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 20, 147, 0.1));
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    animation: fadeIn 0.5s ease-out;
}

.secret-angel-display h3 {
    color: var(--text-primary);
    font-size: 1.3em;
    margin-bottom: 10px;
}

.angel-name {
    background: linear-gradient(135deg, #ffd700, #ff69b4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2em;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: pulse 2s ease-in-out infinite;
}

.santa-hints-section {
    animation: fadeIn 0.5s ease-out;
}

.spinner {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

