/* Ginst Kids Style Sheet */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;600;700&display=swap');

:root {
    --kids-blue: #4fc3f7;
    --kids-yellow: #fff176;
    --kids-pink: #f06292;
    --kids-green: #81c784;
    --kids-orange: #ffb74d;
    --kids-purple: #ba68c8;
    --white: #ffffff;
    --text-color: #444;
}

body.kids-theme {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Fredoka', cursive, sans-serif;
}

.ginst-page.kids-theme .hero::before {
    display: none;
}

.ginst-page.kids-theme .hero {
    height: 100vh;
    min-height: 600px;
    background: #000000;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 15vh;
}

/* .ginst-page.kids-theme .hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, #f0faff, transparent);
    z-index: 2;
} */

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-background iframe {
    width: 100vw;
    height: 56.25vw;
    /* 16:9 Aspect Ratio */
    min-height: 100vh;
    min-width: 177.77vh;
    /* 16:9 Aspect Ratio */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1.0;
    filter: brightness(1.1) saturate(1.2);
}

.hero-container {
    position: relative;
    z-index: 3;
    margin-left: 0 !important;
    margin-right: auto !important;
    padding-left: 5% !important;
    width: 100% !important;
}

.hero-content {
    max-width: 800px;
    text-align: left !important;
    margin-left: 0 !important;
    transform: none !important;
}

.hero-logo-img {
    height: auto;
    width: 100%;
    max-width: 300px;
    display: block;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

@media (max-width: 768px) {
    .hero-logo-img {
        max-width: 250px;
        margin: 0 auto;
    }

    .hero-content {
        text-align: center !important;
    }
}

.ginst-page .hero-content h2 {
    color: var(--kids-blue);
    font-size: clamp(1rem, 2vw, 1.6rem);
    margin: 10px 0 8px 0;
    text-transform: none;
    font-weight: 700;
}

.ginst-page .hero-content .tagline {
    color: #e91e63;
    font-size: 0.95rem;
    margin-bottom: 25px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.ginst-page .hero-content .tagline::before {
    content: '🎈';
}

.hero-actions {
    margin-bottom: 20px;
}

.btn-gameplay {
    display: inline-block;
    padding: 12px 35px;
    background: linear-gradient(90deg, #f06292 0%, #ec407a 100%);
    color: #ffffff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(236, 64, 122, 0.3);
}

.btn-gameplay:hover {
    transform: translateY(-2px) rotate(1deg);
    box-shadow: 0 6px 20px rgba(236, 64, 122, 0.5);
    color: #ffffff;
}

.hero-badges {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.badge-google img {
    height: 62px;
    margin-left: -10px;
    display: block;
}

.badge-apple img {
    height: 40px;
    display: block;
}

.badge-link {
    display: inline-flex !important;
    align-items: center;
    height: 60px;
    vertical-align: middle;
}

.badge-link:hover img {
    transform: scale(1.1) rotate(-1deg);
}

/* Section Styles */
.section-title {
    font-family: 'Fredoka', cursive;
    color: var(--kids-blue);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 2rem;
    text-align: left;
}

.about-game {
    background-color: #000000;
}

.about-layout {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 60px 0;
}

.about-logo {
    flex-shrink: 0;
    width: 100%;
    max-width: 450px;
}

.about-logo img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.5s ease;
}

.about-logo:hover img {
    transform: scale(1.02) rotate(1deg);
}

.about-text {
    flex-grow: 1;
}

.about-text p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #d0d0d0;
    margin-bottom: 20px;
}

.download-badges {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.music-themes,
.game-features {
    padding: 80px 0;
}

.music-themes {
    background: #000000;
    border-radius: 0;
}

.game-features {
    background: #000000;
    border-radius: 0;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-image {
    flex: 1;
}

.feature-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.community-section {
    padding: 80px 0;
    background: #000000;
    text-align: center;
}

.community-section .section-title {
    text-align: center;
}

.community-description {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: #d0d0d0;
}

.community-socials {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-box {
    font-size: 2.5rem;
    color: var(--kids-blue);
    transition: all 0.3s ease;
}

.social-box:hover {
    color: #e91e63;
    transform: scale(1.2) rotate(5deg);
}

.gallery {
    padding: 80px 0;
    background: #000000;
}

@media (max-width: 900px) {

    .feature-row,
    .feature-row.reverse,
    .about-layout {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .section-title,
    .about-text .section-title {
        text-align: center;
    }

    .download-badges {
        justify-content: center;
    }
}

/* Header Overrides for Kids Page */
.kids-theme .header-nav>ul>li>a {
    color: var(--kids-blue) !important;
}

.kids-theme .header-nav ul li a:hover {
    color: #e91e63 !important;
}

.kids-theme .dropdown-menu {
    border-top-color: var(--kids-blue) !important;
    background-color: #111111 !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5) !important;
}

.kids-theme .dropdown-menu li a {
    color: var(--kids-blue) !important;
}

.kids-theme .dropdown-menu li a:hover {
    background: #222222 !important;
    color: #e91e63 !important;
}