/* CSS Custom Properties for Maintainability */
:root {
    --hot-pink: #ff0066;
    --soft-pink: #ff99cc;
    --fiery-orange: #ff3300;
    --deep-purple: #cc00ff;
    --bg-dark: rgba(0, 0, 0, 0.3); /* Lighter for youth-friendly vibe */
    --bg-darker: rgba(0, 0, 0, 0.4);
    --shadow-hot-pink: 0 0 20px var(--hot-pink);
    --shadow-orange: 0 0 40px var(--fiery-orange);
    --shadow-purple: 0 0 15px var(--deep-purple);
}

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

body {
    background: linear-gradient(45deg, var(--soft-pink), var(--hot-pink), var(--fiery-orange), var(--deep-purple));
    background-size: 300%;
    animation: gradientPulse 12s ease infinite;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    line-height: 1.6;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

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

.hero {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-darker);
    border: 3px solid var(--hot-pink);
    border-radius: 12px;
    box-shadow: var(--shadow-hot-pink);
    margin: 0 auto 25px;
    max-width: 900px;
    width: 100%;
    animation: neonGlow 1.5s ease-in-out infinite alternate;
}

h1 {
    font-family: 'Anton', sans-serif;
    font-size: 3.5rem;
    text-shadow: 0 0 10px var(--hot-pink), 0 0 20px var(--fiery-orange);
    animation: flicker 2s infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.9; }
}

@keyframes neonGlow {
    0% { box-shadow: var(--shadow-hot-pink); }
    100% { box-shadow: 0 0 30px var(--deep-purple), 0 0 50px var(--soft-pink); }
}

blockquote {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    color: var(--soft-pink);
    text-shadow: 0 0 6px var(--soft-pink);
    margin: 15px auto;
    max-width: 700px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.card {
    background: var(--bg-dark);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-purple);
    text-align: center;
    transition: transform 0.3s ease;
    width: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hot-pink);
}

.epic-strikes {
    background: var(--bg-darker);
    box-shadow: var(--shadow-purple);
}

h2 {
    font-family: 'Anton', sans-serif;
    font-size: 2.5rem;
    color: var(--hot-pink);
    text-shadow: 0 0 6px var(--hot-pink);
    margin-bottom: 15px;
}

h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--soft-pink);
    margin: 15px 0 10px;
}

.button-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    list-style: none;
    padding: 15px 0;
    justify-content: center;
}

.button-grid li {
    display: flex;
    justify-content: center;
}

.button-grid li a {
    display: block;
    padding: 15px;
    background: rgba(255, 0, 102, 0.4);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    text-align: center;
    font-family: 'Impact', sans-serif;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 8px var(--hot-pink);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    width: 100%;
    max-width: 350px;
}

.button-grid li a:hover {
    background: rgba(255, 51, 0, 0.5);
    transform: scale(1.1);
    box-shadow: var(--shadow-orange);
}

.footer {
    text-align: center;
    padding: 15px;
    background: var(--bg-darker);
    border-radius: 10px;
    margin: 30px auto 0;
    max-width: 900px;
    width: 100%;
    box-shadow: var(--shadow-purple);
}

p {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    color: #fff;
    text-shadow: 0 0 4px var(--soft-pink);
    max-width: 700px;
    margin: 0 auto;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }
    h3 {
        font-size: 1.5rem;
    }
    .button-grid {
        grid-template-columns: 1fr; /* Fixed: single column for mobile */
        gap: 12px;
    }
    .card {
        padding: 20px;
    }
    .hero, .footer {
        padding: 15px 12px;
    }
}

/* Accessibility: Focus states for keyboard navigation */
.button-grid li a:focus {
    outline: 3px solid var(--fiery-orange);
    outline-offset: 2px;
}