@font-face {
    font-display: swap;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/montserrat-v29-latin-regular.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/montserrat-v29-latin-800.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Press Start 2P';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/press-start-2p-v15-latin-regular.woff2') format('woff2');
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: #0d0d0d;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    box-sizing: border-box;
}

.page-banner {
    padding: 2rem 1rem;
    background: #ffc300;
    color: #000;
    font-size: 3rem;
    font-weight: bold;
    font-family: 'Press Start 2P', sans-serif;
    text-shadow: 0 0 6px #ffc300;
    line-height: 1.4;
}

.container {
    flex: 1;
    padding: 2rem 1rem;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.6;
}

h1.arcade-heading {
    font-family: 'Press Start 2P', cursive, sans-serif;
    font-size: 5rem;
    color: #ffc300;
    text-shadow:
        0 0 3px #fff200,
        0 0 12px #ff8c00,
        2px 2px 0 #000,
        4px 4px 0 #ff0080;
    padding: 1rem 2rem;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

h2.section-heading {
    margin-top: 3rem;
    margin-bottom: 3rem;
    color: #ffc300;
    font-size: 1.6rem;
}

p {
    font-size: 1.1rem;
    color: #f0f0f0;
    margin-bottom: 1rem;
}

.cta-button {
    margin: 2rem 0;
    padding: 1.5rem 3rem;
    font-size: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    background: #ffc300;
    color: #000;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 0 20px 0 #ffc300;
    animation: pulse 2s infinite;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

.cta-button:hover {
    background: #e6b100;
    transform: scale(1.05);
    box-shadow: 0 0 30px 10px #ffc300;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 20px 0 #ffc300;
    }

    50% {
        box-shadow: 0 0 40px 0 #ffc300;
    }
}

.image-gallery, .image-gallery-top  {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.image-gallery-top img {
    width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 0 20px #ffc300;
    object-fit: cover;
}

.image-gallery img {
    width: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 0 20px #ffc300;
    object-fit: cover;
}

.benefits-list {
    list-style: none;
    padding: 0;
    max-width: 500px;
    margin: 0 auto 2rem;
    color: #f0f0f0;
}

.benefits-list li {
    background: rgba(255, 195, 0, 0.1);
    border-left: 10px solid #ffc300;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    text-align: left;
    border-radius: 5px;
    font-size: 1.05rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.fade-in-delayed {
    opacity: 0;
    animation: fadeIn 1.2s ease forwards 0.5s;
}

.slide-up {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 1s ease forwards;
}

.slide-up-delayed {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 1.2s ease forwards 0.4s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
footer {
    background: #111;
    padding: 1rem;
    font-size: 0.9rem;
}

footer a {
    color: #aaa;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
    .image-gallery, .image-gallery-top {
        flex-direction: column;
        align-items: center;
    }

    .image-gallery img, .image-gallery-top img {
        width: 80%;
    }

    .page-banner {
        font-size: 1.2rem;
        padding: 2rem 1rem;
        line-height: 1.4;
    }
}

@media (max-width: 768px) {
    h1.arcade-heading {
        font-size: 2.2rem;
        padding: 0.5rem 0.5rem;
    }

    body {
        font-size: 1rem;
    }
}