/* Base Styling */
body {
    background-color: #0f172a;
    color: #e2e8f0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    overflow: hidden;
    transition: background-color 0.1s ease;
}

.panel {
    text-align: center;
    background: #1e293b;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    z-index: 10;
    width: 90%;
    max-width: 400px;
}

h1 { margin-top: 0; }

input {
    padding: 12px;
    width: 80%;
    border-radius: 6px;
    border: 1px solid #334155;
    background: #0f172a;
    color: white;
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
}

input:focus { outline: 2px solid #3b82f6; }

button {
    padding: 12px 24px;
    background-color: #3b82f6;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.1s, background-color 0.2s;
}

button:hover { background-color: #2563eb; transform: scale(1.05); }

.trap-btn { background-color: #ef4444; font-size: 1.2rem; }
.trap-btn:hover { background-color: #dc2626; }

/* --- THE HYPE MODE STYLING --- */
#meme-container {
    display: none;
    text-align: center;
    z-index: 20;
}

.hype-text {
    font-family: 'Anton', sans-serif; /* Massive Cinematic Font */
    font-size: 6rem;
    color: #ffcc00;
    text-transform: uppercase;
    text-shadow: 0 0 20px red, 6px 6px 0px #8b0000;
    margin-bottom: 30px;
    line-height: 1.1;
    letter-spacing: 2px;
}

.whatsapp-btn {
    background-color: #25D366;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:hover { background-color: #1ebe57; }

/* Extreme Screen Shake & Strobe Animation */
.shake-chaos {
    animation: shake 0.3s infinite;
    background-color: #450a0a; 
}



.strobe-active #strobe-overlay {
    animation: strobe 0.15s infinite;
}



/* Add this anywhere in your CSS file */

/* Update your Base Background Slider CSS */
#hype-bg-slider {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centers it perfectly */
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
    opacity: 0;
    filter: brightness(0.4) contrast(1.2);
    pointer-events: none;
}

/* When Javascript adds this class, the background appears */
.slideshow-active #hype-bg-slider {
    opacity: 1;
}



@keyframes shake {
    0% { transform: translate(4px, 2px) rotate(0deg); }
    10% { transform: translate(-2px, -4px) rotate(-1deg); }
    20% { transform: translate(-4px, 0px) rotate(2deg); }
    30% { transform: translate(0px, 4px) rotate(0deg); }
    40% { transform: translate(2px, -2px) rotate(1deg); }
    50% { transform: translate(-2px, 4px) rotate(-2deg); }
    60% { transform: translate(-4px, 2px) rotate(0deg); }
    70% { transform: translate(4px, 2px) rotate(-1deg); }
    80% { transform: translate(-2px, -2px) rotate(2deg); }
    90% { transform: translate(4px, 4px) rotate(0deg); }
    100% { transform: translate(2px, -4px) rotate(-1deg); }
}

/* Mobile Responsive Fix */
@media (max-width: 600px) {
    .hype-text { 
        font-size: 4rem; 
        margin-bottom: 20px; 
    }
    
    /* 🚨 The 90-Degree Rotation Fix */
    #hype-bg-slider {
        width: 100vh; /* Swaps width to match screen height */
        height: 100vw; /* Swaps height to match screen width */
        transform: translate(-50%, -50%) rotate(90deg); /* Rotates it sideways */
    }
}