/* Spring/Summer Bingo Board Styles */

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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: #333;
}

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

/* Header Styles */
.header {
    text-align: center;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    margin-bottom: 20px;
}

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

.progress-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.progress-bar {
    width: 300px;
    height: 12px;
    background: #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #4ecdc4, #44a08d);
    border-radius: 6px;
    transition: width 0.5s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-text {
    font-weight: 600;
    color: #555;
    font-size: 1.1rem;
}

.reset-btn {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.reset-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

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

/* Bingo Board Styles */
.bingo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.bingo-board {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    max-width: 800px;
    width: 100%;
}

.bingo-cell {
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.bingo-cell::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.bingo-cell:hover::before {
    transform: translateX(100%);
}

.bingo-cell:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #4ecdc4;
}

.cell-content {
    text-align: center;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    height: 100%;
    justify-content: center;
}

.cell-content i {
    font-size: 1.8rem;
    color: #4ecdc4;
    margin-bottom: 5px;
}

.cell-content span {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.3;
    color: #333;
}

/* Free Space Styling */
.free-space {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border: 3px solid #f39c12;
}

.free-space .cell-content i {
    color: #d68910;
    font-size: 2.2rem;
}

.free-space .cell-content span {
    font-weight: 700;
    color: #d68910;
}

/* Completed State */
.bingo-cell.completed {
    background: linear-gradient(45deg, #2ecc71, #27ae60);
    color: white;
    transform: scale(0.95);
    border-color: #27ae60;
}

.bingo-cell.completed .cell-content i {
    color: white;
}

.bingo-cell.completed .cell-content span {
    color: white;
    text-decoration: line-through;
}

.bingo-cell.completed::after {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    color: #27ae60;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    animation: checkmark 0.5s ease-in-out;
}

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

/* Footer Styles */
.footer {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.footer p {
    font-size: 1.1rem;
    color: #555;
    font-weight: 500;
}

.celebration {
    margin-top: 20px;
    padding: 30px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 15px;
    color: white;
    animation: celebrate 1s ease-in-out;
}

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

.celebration h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.celebration p {
    font-size: 1.2rem;
    color: white !important;
}

/* Special Visual Enhancements for Specific Squares */

/* Swig Square - Soda/Drink Visuals */
.bingo-cell[data-space="14"] {
    background: linear-gradient(135deg, #ff6b6b, #ffa726, #ffcc02);
    position: relative;
    overflow: visible;
}

.bingo-cell[data-space="14"]::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 15%;
    width: 20px;
    height: 35px;
    background: linear-gradient(to bottom, #fff 0%, #fff 60%, #ff6b6b 60%, #ff6b6b 100%);
    border-radius: 8px 8px 2px 2px;
    border: 2px solid #333;
    z-index: 1;
    animation: swigBubble 2s ease-in-out infinite;
}

.bingo-cell[data-space="14"]::after {
    content: '🥤';
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 1.5rem;
    z-index: 2;
    animation: swigFloat 3s ease-in-out infinite;
}

@keyframes swigBubble {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-3px) scale(1.1); }
}

@keyframes swigFloat {
    0%, 100% { transform: rotate(-5deg) translateY(0px); }
    50% { transform: rotate(5deg) translateY(-2px); }
}

/* Fireworks/Drone Show Square */
.bingo-cell[data-space="21"] {
    background: linear-gradient(45deg, #2c3e50, #34495e, #4a69bd);
    position: relative;
    overflow: hidden;
}

.bingo-cell[data-space="21"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, #ff6b6b 2px, transparent 2px),
        radial-gradient(circle at 80% 20%, #4ecdc4 1.5px, transparent 1.5px),
        radial-gradient(circle at 60% 70%, #ffd93d 2px, transparent 2px),
        radial-gradient(circle at 30% 80%, #ff9ff3 1.5px, transparent 1.5px),
        radial-gradient(circle at 70% 40%, #54a0ff 2px, transparent 2px);
    animation: fireworksTwinkle 2s ease-in-out infinite;
}

.bingo-cell[data-space="21"]::after {
    content: '✨🎆';
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 1.2rem;
    z-index: 2;
    animation: fireworksGlow 1.5s ease-in-out infinite alternate;
}

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

@keyframes fireworksGlow {
    0% { text-shadow: 0 0 5px #ff6b6b, 0 0 10px #4ecdc4; }
    100% { text-shadow: 0 0 10px #ffd93d, 0 0 15px #ff9ff3, 0 0 20px #54a0ff; }
}

/* UFO Hunt Square */
.bingo-cell[data-space="18"] {
    background: linear-gradient(180deg, #2c3e50 0%, #34495e 40%, #27ae60 100%);
    position: relative;
    overflow: hidden;
}

.bingo-cell[data-space="18"]::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 15px;
    background: linear-gradient(45deg, #bdc3c7, #ecf0f1);
    border-radius: 50% 50% 50% 50% / 80% 80% 20% 20%;
    box-shadow: 
        0 2px 4px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.3);
    animation: ufoHover 3s ease-in-out infinite;
    z-index: 1;
}

.bingo-cell[data-space="18"]::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 8px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    animation: ufoHover 3s ease-in-out infinite 0.5s;
    z-index: 2;
}

.bingo-cell[data-space="18"] .cell-content::after {
    content: '🛸';
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 1.3rem;
    animation: ufoSpin 4s linear infinite;
}

@keyframes ufoHover {
    0%, 100% { transform: translateX(-50%) translateY(0px); }
    33% { transform: translateX(-45%) translateY(-2px); }
    66% { transform: translateX(-55%) translateY(-1px); }
}

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

/* Sea World Square - Whale and Ocean */
.bingo-cell[data-space="25"] {
    background: linear-gradient(180deg, #3498db 0%, #2980b9 50%, #1e3c72 100%);
    position: relative;
    overflow: hidden;
}

.bingo-cell[data-space="25"]::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: 
        radial-gradient(ellipse at 20% 100%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(255,255,255,0.1) 0%, transparent 50%),
        linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
    animation: oceanWaves 3s ease-in-out infinite;
}

.bingo-cell[data-space="25"]::after {
    content: '🐋';
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    animation: whaleSwim 4s ease-in-out infinite;
    z-index: 2;
}

.bingo-cell[data-space="25"] .cell-content {
    position: relative;
    z-index: 3;
}

.bingo-cell[data-space="25"] .cell-content::before {
    content: '💧';
    position: absolute;
    top: -10px;
    left: 60%;
    font-size: 0.8rem;
    animation: waterDrop 2s ease-in-out infinite 1s;
}

@keyframes oceanWaves {
    0%, 100% { transform: translateY(0px) scaleX(1); }
    50% { transform: translateY(-3px) scaleX(1.1); }
}

@keyframes whaleSwim {
    0%, 100% { transform: translateX(-50%) translateY(0px) rotate(-2deg); }
    25% { transform: translateX(-45%) translateY(-3px) rotate(0deg); }
    50% { transform: translateX(-50%) translateY(-1px) rotate(2deg); }
    75% { transform: translateX(-55%) translateY(-2px) rotate(0deg); }
}

@keyframes waterDrop {
    0% { opacity: 0; transform: translateY(-5px) scale(0.5); }
    50% { opacity: 1; transform: translateY(0px) scale(1); }
    100% { opacity: 0; transform: translateY(10px) scale(0.8); }
}

/* VISUAL ENHANCEMENTS FOR ALL REMAINING SQUARES */

/* Space 1 - Orange slush/watering can hunt! */
.bingo-cell[data-space="1"] {
    background: linear-gradient(135deg, #ff9500, #ffb347, #ffd700);
    position: relative;
    overflow: hidden;
}

.bingo-cell[data-space="1"]::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 15%;
    width: 25px;
    height: 35px;
    background: linear-gradient(to bottom, #ff6b35 0%, #ff8c42 50%, #ff9500 100%);
    border-radius: 15px 15px 8px 8px;
    animation: slushSwirl 3s ease-in-out infinite;
    z-index: 1;
}

.bingo-cell[data-space="1"]::after {
    content: '🔍🥤';
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 1.2rem;
    animation: huntFloat 2s ease-in-out infinite;
}

@keyframes slushSwirl {
    0%, 100% { transform: rotate(-5deg) translateY(0px); }
    50% { transform: rotate(5deg) translateY(-3px); }
}

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

/* Space 2 - Falcon 9 Launch */
.bingo-cell[data-space="2"] {
    background: linear-gradient(180deg, #1e3c72, #2a5298, #74b9ff);
    position: relative;
    overflow: hidden;
}

.bingo-cell[data-space="2"]::before {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 40px;
    background: linear-gradient(to top, #ff6b6b, #ffeaa7, #fd79a8);
    border-radius: 2px;
    animation: rocketExhaust 0.8s ease-in-out infinite;
}

.bingo-cell[data-space="2"]::after {
    content: '🚀';
    position: absolute;
    bottom: 45%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.8rem;
    animation: rocketLaunch 4s ease-in-out infinite;
}

@keyframes rocketExhaust {
    0%, 100% { opacity: 0.8; transform: translateX(-50%) scaleY(1); }
    50% { opacity: 1; transform: translateX(-50%) scaleY(1.3); }
}

@keyframes rocketLaunch {
    0%, 80% { transform: translateX(-50%) translateY(0px); }
    90%, 100% { transform: translateX(-50%) translateY(-5px); }
}

/* Space 3 - Picnic */
.bingo-cell[data-space="3"] {
    background: linear-gradient(135deg, #a8e6cf, #88d8a3, #4ecdc4);
    position: relative;
    overflow: hidden;
}

.bingo-cell[data-space="3"]::before {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 8px;
    background: repeating-linear-gradient(
        45deg,
        #ff6b6b,
        #ff6b6b 5px,
        #ffffff 5px,
        #ffffff 10px
    );
    border-radius: 2px;
}

.bingo-cell[data-space="3"]::after {
    content: '🧺🍎';
    position: absolute;
    top: 10%;
    right: 10%;
    font-size: 1.3rem;
    animation: picnicSway 3s ease-in-out infinite;
}

@keyframes picnicSway {
    0%, 100% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
}

/* Space 4 - Tim & Tulin's Boat Tour */
.bingo-cell[data-space="4"] {
    background: linear-gradient(180deg, #74b9ff, #0984e3, #00cec9);
    position: relative;
    overflow: hidden;
}

.bingo-cell[data-space="4"]::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 25%;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
    animation: boatWaves 2.5s ease-in-out infinite;
}

.bingo-cell[data-space="4"]::after {
    content: '⛵';
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.8rem;
    animation: boatRock 3s ease-in-out infinite;
}

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

@keyframes boatRock {
    0%, 100% { transform: translateX(-50%) rotate(-3deg); }
    50% { transform: translateX(-50%) rotate(3deg); }
}

/* Space 5 - Water Parks */
.bingo-cell[data-space="5"] {
    background: linear-gradient(135deg, #00cec9, #55a3ff, #74b9ff);
    position: relative;
    overflow: hidden;
}

.bingo-cell[data-space="5"]::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 20%;
    width: 3px;
    height: 20px;
    background: linear-gradient(to bottom, transparent, #74b9ff, #0984e3);
    border-radius: 2px;
    animation: waterSlide 2s ease-in-out infinite;
    transform-origin: top;
}

.bingo-cell[data-space="5"]::after {
    content: '🏊‍♀️💦';
    position: absolute;
    top: 10%;
    right: 10%;
    font-size: 1.2rem;
    animation: splashFun 2.5s ease-in-out infinite;
}

@keyframes waterSlide {
    0%, 100% { transform: scaleY(1) rotate(0deg); }
    50% { transform: scaleY(1.3) rotate(-5deg); }
}

@keyframes splashFun {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1) rotate(-5deg); }
}

/* Space 6 - Make & Eat S'More */
.bingo-cell[data-space="6"] {
    background: linear-gradient(135deg, #8b4513, #d2691e, #ff8c42);
    position: relative;
    overflow: hidden;
}

.bingo-cell[data-space="6"]::before {
    content: '';
    position: absolute;
    bottom: 25%;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 4px;
    background: linear-gradient(90deg, #654321, #8b4513, #654321);
    border-radius: 2px;
    animation: smoreStack 2s ease-in-out infinite;
}

.bingo-cell[data-space="6"]::after {
    content: '🔥🍫';
    position: absolute;
    top: 10%;
    right: 10%;
    font-size: 1.3rem;
    animation: campfireFlicker 1.5s ease-in-out infinite;
}

@keyframes smoreStack {
    0%, 100% { transform: translateX(-50%) scaleX(1); }
    50% { transform: translateX(-50%) scaleX(1.1); }
}

@keyframes campfireFlicker {
    0%, 100% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.05); filter: brightness(1.2); }
}

/* Space 7 - Summer Vacation */
.bingo-cell[data-space="7"] {
    background: linear-gradient(135deg, #ffecd2, #fcb69f, #ff8a80);
    position: relative;
    overflow: hidden;
}

.bingo-cell[data-space="7"]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 15px;
    background: radial-gradient(circle, #ffd93d, #ffb300);
    border-radius: 50%;
    animation: sunRays 3s linear infinite;
}

.bingo-cell[data-space="7"]::after {
    content: '✈️🏖️';
    position: absolute;
    top: 10%;
    right: 10%;
    font-size: 1.2rem;
    animation: vacationDream 4s ease-in-out infinite;
}

@keyframes sunRays {
    0% { box-shadow: 0 0 0 0 rgba(255, 217, 61, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 217, 61, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 217, 61, 0); }
}

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

/* Space 8 - Swimming at Night (Together) */
.bingo-cell[data-space="8"] {
    background: linear-gradient(180deg, #2c3e50, #3498db, #1e3c72);
    position: relative;
    overflow: hidden;
}

.bingo-cell[data-space="8"]::before {
    content: '';
    position: absolute;
    top: 15%;
    right: 20%;
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, #f1c40f, #f39c12);
    border-radius: 50%;
    animation: moonGlow 4s ease-in-out infinite;
}

.bingo-cell[data-space="8"]::after {
    content: '🏊‍♂️🏊‍♀️';
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.1rem;
    animation: nightSwim 3s ease-in-out infinite;
}

@keyframes moonGlow {
    0%, 100% { box-shadow: 0 0 5px rgba(241, 196, 15, 0.8); }
    50% { box-shadow: 0 0 15px rgba(241, 196, 15, 0.5), 0 0 25px rgba(241, 196, 15, 0.3); }
}

@keyframes nightSwim {
    0%, 100% { transform: translateX(-50%) translateY(0px); }
    33% { transform: translateX(-45%) translateY(-2px); }
    66% { transform: translateX(-55%) translateY(-1px); }
}

/* Space 9 - Revolving Sushi Place */
.bingo-cell[data-space="9"] {
    background: linear-gradient(135deg, #ff7675, #fd79a8, #fdcb6e);
    position: relative;
    overflow: hidden;
}

.bingo-cell[data-space="9"]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #2d3436, #636e72, #2d3436);
    border-radius: 2px;
    animation: conveyorBelt 3s linear infinite;
}

.bingo-cell[data-space="9"]::after {
    content: '🍣🎌';
    position: absolute;
    top: 15%;
    right: 15%;
    font-size: 1.3rem;
    animation: sushiSpin 4s linear infinite;
}

@keyframes conveyorBelt {
    0% { transform: translate(-50%, -50%) translateX(-5px); }
    100% { transform: translate(-50%, -50%) translateX(5px); }
}

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

/* Space 10 - Saucy */
.bingo-cell[data-space="10"] {
    background: linear-gradient(135deg, #e17055, #d63031, #74b9ff);
    position: relative;
    overflow: hidden;
}

.bingo-cell[data-space="10"]::before {
    content: '';
    position: absolute;
    top: 40%;
    left: 30%;
    width: 8px;
    height: 8px;
    background: #e17055;
    border-radius: 50%;
    animation: sauceDrops 2s ease-in-out infinite;
}

.bingo-cell[data-space="10"]::after {
    content: '🌶️💥';
    position: absolute;
    top: 10%;
    right: 10%;
    font-size: 1.3rem;
    animation: spicyBounce 1.8s ease-in-out infinite;
}

@keyframes sauceDrops {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.3); opacity: 1; }
}

@keyframes spicyBounce {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(-5deg); }
}

/* Space 11 - Pizza Hut Ranch Flight */
.bingo-cell[data-space="11"] {
    background: linear-gradient(135deg, #ff6b6b, #feca57, #48dbfb);
    position: relative;
    overflow: hidden;
}

.bingo-cell[data-space="11"]::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 20%;
    width: 25px;
    height: 25px;
    background: radial-gradient(circle, #ff9f43, #ff6348);
    border-radius: 50%;
    animation: pizzaFloat 3s ease-in-out infinite;
}

.bingo-cell[data-space="11"]::after {
    content: '🍕✈️';
    position: absolute;
    top: 10%;
    right: 10%;
    font-size: 1.3rem;
    animation: ranchFlight 4s ease-in-out infinite;
}

@keyframes pizzaFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(180deg); }
}

@keyframes ranchFlight {
    0%, 100% { transform: translateX(0px); }
    50% { transform: translateX(-3px); }
}

/* Space 12 - Salt & Straw */
.bingo-cell[data-space="12"] {
    background: linear-gradient(135deg, #ffeaa7, #fab1a0, #fd79a8);
    position: relative;
    overflow: hidden;
}

.bingo-cell[data-space="12"]::before {
    content: '';
    position: absolute;
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 20px;
    background: linear-gradient(to top, #d63031, #fab1a0, #ffeaa7);
    border-radius: 2px 2px 8px 8px;
    animation: iceCreamMelt 3s ease-in-out infinite;
}

.bingo-cell[data-space="12"]::after {
    content: '🍦🧂';
    position: absolute;
    top: 10%;
    right: 10%;
    font-size: 1.3rem;
    animation: sweetSalt 2.5s ease-in-out infinite;
}

@keyframes iceCreamMelt {
    0%, 100% { transform: translateX(-50%) scaleY(1); }
    50% { transform: translateX(-50%) scaleY(1.1); }
}

@keyframes sweetSalt {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg) scale(1.05); }
}

/* Space 15 - Drive In Theaters */
.bingo-cell[data-space="15"] {
    background: linear-gradient(180deg, #2c3e50, #34495e, #e17055);
    position: relative;
    overflow: hidden;
}

.bingo-cell[data-space="15"]::before {
    content: '';
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 20px;
    background: linear-gradient(45deg, #f39c12, #e74c3c);
    border-radius: 3px;
    animation: movieScreen 3s ease-in-out infinite;
}

.bingo-cell[data-space="15"]::after {
    content: '🚗🎬';
    position: absolute;
    bottom: 15%;
    right: 15%;
    font-size: 1.2rem;
    animation: driveInNight 4s ease-in-out infinite;
}

@keyframes movieScreen {
    0%, 100% { opacity: 0.8; transform: translateX(-50%) scaleX(1); }
    50% { opacity: 1; transform: translateX(-50%) scaleX(1.1); }
}

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

/* Space 16 - Farmers' Market */
.bingo-cell[data-space="16"] {
    background: linear-gradient(135deg, #a8e6cf, #7fcdcd, #88d8a3);
    position: relative;
    overflow: hidden;
}

.bingo-cell[data-space="16"]::before {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 20%;
    width: 8px;
    height: 8px;
    background: #e17055;
    border-radius: 50%;
    animation: freshProduce 2.5s ease-in-out infinite;
}

.bingo-cell[data-space="16"]::after {
    content: '🥕🌽';
    position: absolute;
    top: 15%;
    right: 15%;
    font-size: 1.3rem;
    animation: marketBounce 3s ease-in-out infinite;
}

@keyframes freshProduce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2) translateY(-2px); }
}

@keyframes marketBounce {
    0%, 100% { transform: translateY(0px); }
    33% { transform: translateY(-2px) rotate(-2deg); }
    66% { transform: translateY(-1px) rotate(2deg); }
}

/* Space 17 - Grill */
.bingo-cell[data-space="17"] {
    background: linear-gradient(135deg, #ff7675, #fd79a8, #2d3436);
    position: relative;
    overflow: hidden;
}

.bingo-cell[data-space="17"]::before {
    content: '';
    position: absolute;
    bottom: 25%;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 3px;
    background: linear-gradient(90deg, #2d3436, #636e72, #2d3436);
    border-radius: 2px;
    animation: grillGrates 2s ease-in-out infinite;
}

.bingo-cell[data-space="17"]::after {
    content: '🔥🥩';
    position: absolute;
    top: 15%;
    right: 15%;
    font-size: 1.3rem;
    animation: grillFlame 1.5s ease-in-out infinite;
}

@keyframes grillGrates {
    0%, 100% { transform: translateX(-50%); }
    50% { transform: translateX(-50%) scaleX(1.1); }
}

@keyframes grillFlame {
    0%, 100% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.1); filter: brightness(1.3); }
}

/* Space 19 - Universal/Epic Universe */
.bingo-cell[data-space="19"] {
    background: linear-gradient(135deg, #6c5ce7, #a29bfe, #fd79a8);
    position: relative;
    overflow: hidden;
}

.bingo-cell[data-space="19"]::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, #ffeaa7, #fdcb6e);
    border-radius: 50%;
    animation: magicOrb 3s ease-in-out infinite;
}

.bingo-cell[data-space="19"]::after {
    content: '🎢✨';
    position: absolute;
    top: 10%;
    right: 10%;
    font-size: 1.3rem;
    animation: themeParkMagic 4s ease-in-out infinite;
}

@keyframes magicOrb {
    0%, 100% { transform: translateX(-50%) scale(1); box-shadow: 0 0 5px rgba(255, 234, 167, 0.8); }
    50% { transform: translateX(-50%) scale(1.2); box-shadow: 0 0 15px rgba(255, 234, 167, 0.6); }
}

@keyframes themeParkMagic {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(-5deg) scale(1.05); }
}

/* Space 20 - Scifi Dine In */
.bingo-cell[data-space="20"] {
    background: linear-gradient(180deg, #2d3436, #636e72, #74b9ff);
    position: relative;
    overflow: hidden;
}

.bingo-cell[data-space="20"]::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 30%;
    width: 15px;
    height: 15px;
    background: radial-gradient(circle, #74b9ff, #0984e3);
    border-radius: 3px;
    animation: scifiScreen 2.5s ease-in-out infinite;
}

.bingo-cell[data-space="20"]::after {
    content: '🚗🍽️';
    position: absolute;
    bottom: 15%;
    right: 15%;
    font-size: 1.2rem;
    animation: retroDine 3s ease-in-out infinite;
}

@keyframes scifiScreen {
    0%, 100% { opacity: 0.8; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.1); }
}

@keyframes retroDine {
    0%, 100% { transform: translateX(0px); }
    50% { transform: translateX(-2px); }
}

/* Space 22 - Orlando Ghost Tour */
.bingo-cell[data-space="22"] {
    background: linear-gradient(180deg, #2d3436, #636e72, #ddd);
    position: relative;
    overflow: hidden;
}

.bingo-cell[data-space="22"]::before {
    content: '';
    position: absolute;
    top: 40%;
    left: 40%;
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, rgba(255,255,255,0.8), transparent);
    border-radius: 50%;
    animation: ghostlyOrb 3s ease-in-out infinite;
}

.bingo-cell[data-space="22"]::after {
    content: '👻🏰';
    position: absolute;
    top: 10%;
    right: 10%;
    font-size: 1.3rem;
    animation: ghostFloat 4s ease-in-out infinite;
}

@keyframes ghostlyOrb {
    0%, 100% { opacity: 0.3; transform: translateY(0px); }
    50% { opacity: 0.8; transform: translateY(-3px); }
}

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

/* Space 23 - Go to park/trail */
.bingo-cell[data-space="23"] {
    background: linear-gradient(135deg, #00b894, #55a3ff, #a8e6cf);
    position: relative;
    overflow: hidden;
}

.bingo-cell[data-space="23"]::before {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 20%;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 15px solid #00b894;
    animation: treeGrow 3s ease-in-out infinite;
}

.bingo-cell[data-space="23"]::after {
    content: '🚶‍♂️🌲';
    position: absolute;
    top: 10%;
    right: 10%;
    font-size: 1.3rem;
    animation: hiking 4s ease-in-out infinite;
}

@keyframes treeGrow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1) translateY(-2px); }
}

@keyframes hiking {
    0%, 100% { transform: translateX(0px); }
    25% { transform: translateX(-2px); }
    75% { transform: translateX(2px); }
}

/* Space 24 - Fun Spot */
.bingo-cell[data-space="24"] {
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1);
    position: relative;
    overflow: hidden;
}

.bingo-cell[data-space="24"]::before {
    content: '';
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 18px;
    background: radial-gradient(circle, #ffd93d, #ff6b6b);
    border-radius: 50%;
    animation: ferrisWheel 4s linear infinite;
}

.bingo-cell[data-space="24"]::after {
    content: '🎡🎠';
    position: absolute;
    top: 10%;
    right: 10%;
    font-size: 1.3rem;
    animation: funSpotJoy 3s ease-in-out infinite;
}

@keyframes ferrisWheel {
    0% { transform: translateX(-50%) rotate(0deg); }
    100% { transform: translateX(-50%) rotate(360deg); }
}

@keyframes funSpotJoy {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(-3deg); }
}

/* Enhanced hover effects for all visual squares */
.bingo-cell[data-space]:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* Responsive adjustments for visual elements */
@media (max-width: 768px) {
    .bingo-cell[data-space="14"]::before {
        width: 15px;
        height: 25px;
    }
    
    .bingo-cell[data-space="14"]::after,
    .bingo-cell[data-space="21"]::after {
        font-size: 1rem;
    }
    
    .bingo-cell[data-space="18"]::before {
        width: 30px;
        height: 12px;
    }
    
    .bingo-cell[data-space="18"]::after {
        width: 12px;
        height: 6px;
    }
    
    .bingo-cell[data-space="25"]::after {
        font-size: 1.5rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .progress-bar {
        width: 200px;
    }
    
    .bingo-board {
        gap: 8px;
    }
    
    .cell-content {
        padding: 10px;
    }
    
    .cell-content i {
        font-size: 1.4rem;
    }
    
    .cell-content span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 20px;
    }
    
    .header h1 {
        font-size: 1.5rem;
    }
    
    .progress-section {
        flex-direction: column;
        gap: 10px;
    }
    
    .progress-bar {
        width: 100%;
        max-width: 300px;
    }
    
    .bingo-board {
        gap: 6px;
    }
    
    .cell-content {
        padding: 8px;
    }
    
    .cell-content i {
        font-size: 1.2rem;
    }
    
    .cell-content span {
        font-size: 0.7rem;
    }
}