@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Chewy&display=swap');

:root {
    --bg: #0a0a0a;
    --text: #f0f0f0;
    --accent: #a78bfa;
    --gradient: linear-gradient(135deg, #a78bfa, #60a5fa);
}

* { 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Removed justify-content: center from here */
    text-align: center;
    padding: 20px;
    overflow-x: hidden;
}

.content-wrapper {
    flex: 1; /* This takes up all available empty space */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Centers your logo/buttons within the main area */
    width: 100%;
}

/* --- Layout Containers --- */
.hero {
    max-width: 800px;
    margin-bottom: 20px;
}

.logo {
    font-family: 'Chewy', cursive;
    font-size: clamp(4rem, 15vw, 7rem);
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.tagline {
    font-size: clamp(1rem, 4vw, 1.4rem);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

/* --- Buttons --- */
.button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #000;
    border: none;
    width: 250px;
    height: 60px;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin: 8px auto; /* Slightly tighter margin for 3 buttons */
    
    opacity: 0;
    transition: transform 0.25s ease, outline 0.25s ease, outline-offset 0.25s ease, box-shadow 0.25s ease;
    outline: 2px solid transparent;
    outline-offset: 0px;
}

/* Staggered delays for all 3 buttons */
.button:nth-of-type(1) { animation: fadeInUp 0.8s ease-out 0.6s forwards; }
.button:nth-of-type(2) { animation: fadeInUp 0.8s ease-out 0.8s forwards; }
.button:nth-of-type(3) { animation: fadeInUp 0.8s ease-out 1.0s forwards; }

.button:hover {
    transform: translateY(-3px);
    outline: 2px solid #f0f0f0;
    outline-offset: 4px;
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.05);
}

/* --- Animations --- */
@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* Mobile Friendly tweaks */
@media (max-width: 480px) {
    .button {
        width: 100%;
        max-width: 280px;
    }
}

footer {
    width: 100%;
    padding: 2rem 0; /* Reduced padding slightly to prevent over-scrolling */
    opacity: 0.4;
    font-size: 0.85rem;
    margin-top: auto; /* Safety push to the bottom */
}