/* ================= GLOBAL ================= */

body {
    margin: 0;
    padding: 0;
    background: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
}

/* Hidden SEO-only H1 */
.sr-only {
    position: absolute;
    top: -9999px;
    left: -9999px;
}


/* ================= PAGE LAYOUT ================= */

.page {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    text-align: center;
}


/* ================= HEADER ================= */

.header {
    margin-bottom: 24px;
}

.logo {
    max-width: 90%;
    height: auto;
}


/* ================= PLAY BUTTON ================= */

.play-section {
    margin: 25px 0;
}

.play-button {
    display: inline-block;
    background: radial-gradient(circle at top, #5fe28c, #35b46b);
    color: white;
    text-decoration: none;
    font-size: 28px;
    font-weight: bold;
    padding: 24px 44px;
    border-radius: 999px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.play-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.2);
}


/* ================= DEMO GRID ================= */

.scene-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 24px auto;
}

.scene-grid img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}


/* ================= TAGLINE ================= */

.tagline h2 {
    margin: 14px 0 4px 0;
}

.tagline p {
    max-width: 460px;
    margin: auto;
}


/* ================= OPTIONAL AD SLOT ================= */

.ad-slot {
    display: none;  /* hidden by default */
    margin-top: 30px;
}

.ad-placeholder {
    height: 90px;
    background: #ededed;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}


/* ================= FOOTER ================= */

.footer {
    margin-top: 30px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 12px;
}

.footer-links a {
    background: #f0f0f0;
    padding: 8px 18px;
    border-radius: 999px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    background: #dedede;
}

.copyright {
    font-size: 12px;
    color: #777;
}


/* ================= COOKIE BANNER ================= */

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #333;
    color: white;
    padding: 14px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    z-index: 999;
}

.cookie-banner button {
    background: #35b46b;
    color: white;
    border: none;
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 700px) {
    .scene-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .scene-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .play-button {
        font-size: 22px;
        padding: 18px 34px;
    }
}
