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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #000;
    color: #ffffff;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.game-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('game-blurred.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: -1;
}

.coming-soon-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    background: radial-gradient(circle at center, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%);
}

.coming-soon-container {
    text-align: center;
    max-width: 90%;
    position: relative;
}

.cheese-icon {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 2rem;
    animation: cheeseFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 193, 7, 0.6));
}

.main-title {
    font-size: clamp(3rem, 12vw, 8rem);
    font-weight: 900;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    background: linear-gradient(
        45deg,
        #fff 0%,
        #ffd700 25%,
        #fff 50%,
        #ff6b35 75%,
        #fff 100%
    );
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite, titlePulse 2s ease-in-out infinite;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
    position: relative;
}

.subtitle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.subtitle {
    font-size: clamp(1.2rem, 4vw, 2.5rem);
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #ffcc00;
    text-shadow: 0 0 20px rgba(255, 204, 0, 0.8);
    animation: subtitleGlow 2.5s ease-in-out infinite alternate;
}

.rat-icon {
    font-size: clamp(1.5rem, 3vw, 2rem);
    animation: ratTwitch 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.4));
}

.accent-line {
    width: 60%;
    height: 2px;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    animation: lineGlow 2s ease-in-out infinite alternate;
    position: relative;
}

.accent-line::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    filter: blur(2px);
}

@keyframes cheeseFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
    }
    25% { 
        transform: translateY(-8px) rotate(2deg);
    }
    50% { 
        transform: translateY(-12px) rotate(0deg);
    }
    75% { 
        transform: translateY(-6px) rotate(-2deg);
    }
}

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

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

@keyframes subtitleGlow {
    0% { 
        opacity: 0.8;
        text-shadow: 0 0 20px rgba(255, 204, 0, 0.6);
    }
    100% { 
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 204, 0, 1);
    }
}

@keyframes ratTwitch {
    0%, 95%, 100% { 
        transform: rotate(0deg) scale(1);
    }
    2% { 
        transform: rotate(-5deg) scale(1.1);
    }
    4% { 
        transform: rotate(3deg) scale(0.95);
    }
    6% { 
        transform: rotate(0deg) scale(1);
    }
}

@keyframes lineGlow {
    0% { 
        opacity: 0.6;
        transform: scaleX(0.8);
    }
    100% { 
        opacity: 1;
        transform: scaleX(1);
    }
}

@media (max-width: 768px) {
    .coming-soon-container {
        max-width: 95%;
    }
    
    .subtitle-container {
        gap: 1rem;
    }
    
    .cheese-icon {
        margin-bottom: 1.5rem;
    }
    
    .main-title {
        margin-bottom: 1rem;
    }
    
    .accent-line {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .subtitle-container {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .rat-icon {
        order: -1;
    }
    
    .accent-line {
        width: 90%;
    }
}