/* ColorDrop Basic - Main Styles */
@import url('https://fonts.googleapis.com/css2?family=Dela+Gothic+One&family=Outfit:wght@400;600;800&display=swap');

:root {
    --bg-dark: #0a0a0f;
    --bg-card: #15151f;
    --text-primary: #ffffff;
    --text-secondary: #8888aa;
    --accent: #6366f1;
    --wildcard-gold: #ffd700;
    --danger: #ef4444;
    --success: #22c55e;
}

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

html, body {
    height: 100%;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    background-image: 
        radial-gradient(ellipse at 20% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

body.no-scroll {
    overflow: hidden;
}

/* ============================================
   MAIN GAME SCREEN
   ============================================ */
.game-container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Header */
.game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 100;
}

.logo {
    font-family: 'Dela Gothic One', cursive;
    font-size: 1.8rem;
    background: linear-gradient(135deg, #6366f1, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

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

.btn {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.btn-icon {
    width: 48px;
    height: 48px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-size: 1.4rem;
}

.btn-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

/* Color Zone Display */
.color-zones {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    flex-wrap: wrap;
}

.color-zone {
    flex: 1;
    min-width: 150px;
    max-width: 300px;
    height: 60vh;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.color-zone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, transparent 50%, rgba(0,0,0,0.2) 100%);
    border-radius: 24px;
}

.color-zone:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.color-zone.eliminated {
    opacity: 0.3;
    transform: scale(0.95);
    filter: grayscale(0.8);
}

.color-zone-name {
    font-family: 'Dela Gothic One', cursive;
    font-size: 2.5rem;
    text-transform: uppercase;
    color: white;
    text-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.5),
        0 2px 4px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 1;
    letter-spacing: 3px;
}

/* Draw Button */
.draw-section {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.5));
}

.btn-draw {
    font-family: 'Dela Gothic One', cursive;
    font-size: 2rem;
    padding: 1.5rem 4rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 10px 40px rgba(99, 102, 241, 0.4),
        0 0 0 0 rgba(99, 102, 241, 0.4);
    text-transform: uppercase;
    letter-spacing: 4px;
    position: relative;
    overflow: hidden;
}

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

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

.btn-draw:hover {
    transform: scale(1.05);
    box-shadow: 
        0 15px 50px rgba(99, 102, 241, 0.5),
        0 0 0 4px rgba(99, 102, 241, 0.2);
}

.btn-draw:active {
    transform: scale(0.98);
}

.game-status {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Timer Display */
.timer-display {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Dela Gothic One', cursive;
    font-size: 15rem;
    color: white;
    text-shadow: 0 0 100px rgba(255, 255, 255, 0.5);
    z-index: 500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.timer-display.active {
    opacity: 1;
    animation: timerPulse 1s ease-in-out infinite;
}

@keyframes timerPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

/* ============================================
   RESULT OVERLAY - FULL SCREEN COLOR
   ============================================ */
.result-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
}

.result-overlay.active {
    opacity: 1;
    visibility: visible;
}

.result-color-name {
    font-family: 'Dela Gothic One', cursive;
    font-size: 12rem;
    text-transform: uppercase;
    color: white;
    text-shadow: 
        0 10px 60px rgba(0, 0, 0, 0.6),
        0 4px 10px rgba(0, 0, 0, 0.8);
    letter-spacing: 10px;
    animation: resultBounce 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    line-height: 1;
}

@keyframes resultBounce {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.result-message {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    text-transform: uppercase;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: 8px;
    margin-top: 2rem;
    animation: fadeSlideUp 0.6s ease 0.3s both;
}

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

.btn-next {
    font-family: 'Dela Gothic One', cursive;
    font-size: 1.5rem;
    padding: 1.2rem 3rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    cursor: pointer;
    margin-top: 3rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: fadeSlideUp 0.6s ease 0.5s both;
}

.btn-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* Wildcard Overlay */
.result-overlay.wildcard {
    background: linear-gradient(135deg, #ffd700, #ff8c00, #ff6347, #ff69b4, #ba55d3, #4169e1, #00ced1, #32cd32, #ffd700);
    background-size: 400% 400%;
    animation: wildcardGradient 3s ease infinite;
}

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

.wildcard-icon {
    font-size: 15rem;
    animation: wildcardSpin 2s linear infinite;
    margin-bottom: 1rem;
}

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

/* ============================================
   ANIMATION CANVAS
   ============================================ */
.animation-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 900;
    display: none;
    background: rgba(10, 10, 15, 0.95);
}

.animation-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Balloon Animation Container */
.balloon-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.balloon {
    position: absolute;
    width: 120px;
    height: 150px;
    border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
    cursor: pointer;
    box-shadow: 
        inset -20px -20px 40px rgba(0, 0, 0, 0.3),
        inset 20px 20px 40px rgba(255, 255, 255, 0.2);
    transition: transform 0.05s ease-out;
}

.balloon::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 25px solid inherit;
}

.balloon::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 50%;
    width: 2px;
    height: 60px;
    background: rgba(255, 255, 255, 0.5);
}

.balloon.vibrating {
    animation: none;
}

.balloon.popping {
    animation: balloonPop 0.3s ease-out forwards;
}

@keyframes balloonPop {
    0% { transform: scale(2.2); opacity: 1; }
    50% { transform: scale(2.8); opacity: 0.5; }
    100% { transform: scale(0); opacity: 0; }
}

/* Wheel Animation */
.wheel-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wheel {
    width: 70vh;
    height: 70vh;
    max-width: 600px;
    max-height: 600px;
    border-radius: 50%;
    position: relative;
    box-shadow: 
        0 0 0 15px #1a1a2e,
        0 0 0 20px #6366f1,
        0 0 60px rgba(99, 102, 241, 0.5),
        inset 0 0 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.wheel-pointer {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-top: 50px solid #ffd700;
    z-index: 10;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.5));
}

.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a1a2e, #2a2a4e);
    border-radius: 50%;
    border: 5px solid #6366f1;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Dela Gothic One', cursive;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* Roulette Animation */
.roulette-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    justify-content: center;
}

.roulette-track {
    display: flex;
    gap: 15px;
    padding: 40px 80px;
    background: linear-gradient(180deg, #1a1a2e, #0d0d15);
    border-radius: 30px;
    box-shadow: 
        inset 0 8px 30px rgba(0, 0, 0, 0.6),
        0 15px 50px rgba(0, 0, 0, 0.4),
        0 0 0 4px rgba(99, 102, 241, 0.3);
    overflow: hidden;
    position: relative;
    max-width: 90vw;
}

.roulette-slot {
    width: 18vh;
    height: 25vh;
    min-width: 120px;
    min-height: 160px;
    max-width: 180px;
    max-height: 250px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Dela Gothic One', cursive;
    font-size: 1.5rem;
    color: white;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
    transition: all 0.15s ease;
    text-transform: uppercase;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.roulette-slot-text {
    position: relative;
    z-index: 2;
    text-align: center;
    line-height: 1.2;
    padding: 0.5rem;
}

.roulette-slot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, transparent 50%, rgba(0,0,0,0.2) 100%);
    border-radius: 20px;
}

.roulette-slot.highlighted {
    transform: scale(1.15);
    box-shadow: 
        0 0 50px rgba(255, 255, 255, 0.6),
        0 15px 40px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.roulette-slot.selected {
    transform: scale(1.25);
    box-shadow: 
        0 0 80px rgba(255, 255, 255, 0.8),
        0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 20;
}

.roulette-indicator {
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 45px solid #ffd700;
    margin-bottom: 30px;
    filter: drop-shadow(0 5px 15px rgba(255, 215, 0, 0.5));
}

.roulette-label {
    font-family: 'Dela Gothic One', cursive;
    font-size: 2rem;
    color: white;
    margin-top: 30px;
    text-transform: uppercase;
    letter-spacing: 4px;
    opacity: 0.8;
}

/* Confetti */
.confetti {
    position: fixed;
    width: 15px;
    height: 15px;
    top: -20px;
    z-index: 2000;
    animation: confettiFall linear forwards;
}

@keyframes confettiFall {
    to {
        transform: translateY(110vh) rotate(720deg);
    }
}

/* Burst Confetti (from balloon pop) */
.confetti-burst {
    position: fixed;
    width: 12px;
    height: 12px;
    z-index: 2000;
    animation: confettiBurst 0.8s ease-out forwards;
}

@keyframes confettiBurst {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(var(--vx), var(--vy)) scale(0);
        opacity: 0;
    }
}

/* Click Hints */
.click-hint {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    opacity: 0.7;
}

.click-hint-result {
    margin-top: 3rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeSlideUp 0.6s ease 0.5s both;
}

/* Click anywhere cursor */
.click-to-draw {
    cursor: pointer;
}

/* ============================================
   SETTINGS PAGE
   ============================================ */
.settings-container {
    min-height: 100vh;
    padding: 2rem;
    padding-bottom: 4rem;
    max-width: 900px;
    margin: 0 auto;
    overflow-y: auto;
}

.settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.settings-title {
    font-family: 'Dela Gothic One', cursive;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-back {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-back:hover {
    background: rgba(255, 255, 255, 0.2);
}

.settings-section {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-title span {
    font-size: 1.5rem;
}

/* Color Grid */
.color-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
}

.color-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.color-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.color-option.active {
    border-color: var(--accent);
    background: rgba(99, 102, 241, 0.1);
}

.color-swatch {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.color-option-name {
    font-weight: 600;
    font-size: 1.1rem;
}

.color-option-status {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Animation Options */
.animation-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.animation-option {
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.animation-option:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.animation-option.active {
    border-color: var(--accent);
    background: rgba(99, 102, 241, 0.15);
}

.animation-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.animation-name {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Toggle Switches */
.toggle-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.toggle-label {
    font-weight: 600;
}

.toggle-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.toggle-switch.active {
    background: var(--accent);
}

.toggle-switch::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.toggle-switch.active::after {
    transform: translateX(28px);
}

/* Slider */
.slider-row {
    padding: 1rem 0;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.slider-value {
    font-weight: 600;
    color: var(--accent);
}

.slider {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    appearance: none;
    cursor: pointer;
}

.slider::-webkit-slider-thumb {
    appearance: none;
    width: 24px;
    height: 24px;
    background: var(--accent);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(99, 102, 241, 0.5);
}

/* Timer Input */
.timer-input-group {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.timer-input {
    flex: 1;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    text-align: center;
}

.timer-input:focus {
    outline: none;
    border-color: var(--accent);
}

/* Save Button */
.btn-save {
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.btn-save:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

/* Speed Options */
.speed-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.speed-option {
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.speed-option:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.speed-option.active {
    border-color: var(--accent);
    background: rgba(99, 102, 241, 0.15);
}

.speed-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.speed-name {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.speed-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Wildcard Color Grid */
.wildcard-color-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 1rem;
}

.wildcard-color-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.wildcard-color-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.wildcard-color-option.active {
    border-color: var(--accent);
    background: rgba(99, 102, 241, 0.15);
}

.wildcard-color-swatch {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.wildcard-color-name {
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .color-zone-name {
        font-size: 1.5rem;
    }
    
    .result-color-name {
        font-size: 5rem;
    }
    
    .result-message {
        font-size: 2rem;
    }
    
    .btn-draw {
        font-size: 1.5rem;
        padding: 1rem 3rem;
    }
    
    .animation-options {
        grid-template-columns: 1fr;
    }
    
    .speed-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .wheel {
        width: 300px;
        height: 300px;
    }
    
    .roulette-slot {
        min-width: 80px;
        min-height: 100px;
        font-size: 1rem;
    }
}

/* Fullscreen mode */
body.fullscreen .game-header {
    display: none;
}

body.fullscreen .color-zones {
    height: 85vh;
}

body.fullscreen .color-zone {
    height: 75vh;
}
