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

:root {
    --primary-orange: #FF6B35;
    --primary-red: #E63946;
    --primary-yellow: #FFD23F;
    --accent-pink: #FF85A2;
    --accent-purple: #8B5FBF;
    --accent-teal: #2EC4B6;
    --dark-bg: #1A1423;
    --dark-purple: #2D1B4E;
    --light-cream: #FFF8F0;
    --text-dark: #2B2D42;
    --text-light: #F8F9FA;
}

body {
    font-family: 'Quicksand', sans-serif;
    background: linear-gradient(135deg, #1A1423 0%, #2D1B4E 50%, #1A1423 100%);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

.floating-lanterns {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.lantern {
    position: absolute;
    width: 40px;
    height: 60px;
    background: linear-gradient(180deg, var(--primary-red) 0%, var(--primary-orange) 100%);
    border-radius: 50% 50% 45% 45%;
    opacity: 0.3;
    animation: floatLantern 20s infinite ease-in-out;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.lantern::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 10px;
    background: var(--dark-bg);
    border-radius: 50%;
}

.lantern::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
}

.lantern-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.lantern-2 {
    top: 30%;
    right: 15%;
    animation-delay: 5s;
}

.lantern-3 {
    top: 60%;
    left: 20%;
    animation-delay: 10s;
}

.lantern-4 {
    top: 80%;
    right: 25%;
    animation-delay: 15s;
}

@keyframes floatLantern {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 20, 35, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.age-gate-overlay.hidden {
    display: none;
}

.age-gate-modal {
    background: linear-gradient(135deg, var(--dark-purple) 0%, var(--dark-bg) 100%);
    border-radius: 30px;
    padding: 60px 50px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    border: 3px solid var(--primary-orange);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.4);
}

.lantern-decoration {
    position: absolute;
    top: -30px;
    width: 30px;
    height: 45px;
    background: linear-gradient(180deg, var(--primary-yellow) 0%, var(--primary-orange) 100%);
    border-radius: 50% 50% 45% 45%;
    box-shadow: 0 0 15px rgba(255, 210, 63, 0.6);
}

.lantern-decoration.left {
    left: 30px;
}

.lantern-decoration.right {
    right: 30px;
}

.kite-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--accent-pink) 0%, var(--primary-orange) 100%);
    transform: rotate(45deg);
    border-radius: 10px;
    position: relative;
    box-shadow: 0 10px 30px rgba(255, 133, 162, 0.5);
}

.kite-icon::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -5px;
    width: 3px;
    height: 30px;
    background: linear-gradient(180deg, var(--text-light) 0%, transparent 100%);
    transform: rotate(-45deg);
}

.age-gate-content h2 {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 2rem;
    color: var(--primary-yellow);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.age-gate-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.age-gate-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-yes, .btn-no {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Quicksand', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-yes {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-red) 100%);
    color: white;
    box-shadow: 0 5px 20px rgba(230, 57, 70, 0.4);
}

.btn-yes:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.6);
}

.btn-no {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-no:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(26, 20, 35, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary-orange);
    box-shadow: 0 5px 30px rgba(255, 107, 53, 0.3);
}

.navbar {
    padding: 20px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-kite {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-purple) 100%);
    transform: rotate(45deg);
    border-radius: 8px;
    position: relative;
    animation: kiteFloat 3s infinite ease-in-out;
}

.logo-kite::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -3px;
    width: 2px;
    height: 20px;
    background: linear-gradient(180deg, var(--text-light) 0%, transparent 100%);
}

@keyframes kiteFloat {
    0%, 100% {
        transform: rotate(45deg) translateY(0);
    }
    50% {
        transform: rotate(45deg) translateY(-8px);
    }
}

.brand-logo {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.8rem;
    color: var(--primary-yellow);
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: color 0.3s ease;
}

.brand-logo:hover {
    color: var(--primary-orange);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-item {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-orange) 0%, var(--accent-pink) 100%);
    transition: width 0.3s ease;
}

.nav-item:hover {
    color: var(--primary-orange);
}

.nav-item:hover::after {
    width: 100%;
}

.contact-btn {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-red) 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.5);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 80px 30px;
}

.hero-kites {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.kite {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-pink) 0%, var(--primary-orange) 100%);
    transform: rotate(45deg);
    border-radius: 10px;
    opacity: 0.4;
    animation: kiteMove 15s infinite ease-in-out;
}

.kite::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -5px;
    width: 3px;
    height: 40px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, transparent 100%);
}

.kite-float-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.kite-float-2 {
    top: 50%;
    right: 15%;
    animation-delay: 5s;
}

.kite-float-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 10s;
}

@keyframes kiteMove {
    0%, 100% {
        transform: rotate(45deg) translate(0, 0);
    }
    50% {
        transform: rotate(45deg) translate(30px, -30px);
    }
}

.hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 25px;
    border-radius: 50px;
    border: 2px solid var(--primary-orange);
    margin-bottom: 30px;
    animation: badgePulse 2s infinite ease-in-out;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 107, 53, 0.6);
    }
}

.badge-emoji {
    font-size: 1.5rem;
}

.badge-text {
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--text-light);
}

.hero-title {
    margin-bottom: 30px;
}

.welcome-text {
    display: block;
    font-family: 'Pangolin', cursive;
    font-size: 2rem;
    color: var(--accent-teal);
    margin-bottom: 10px;
}

.brand-name {
    display: block;
    font-family: 'Bubblegum Sans', cursive;
    font-size: 4rem;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-orange) 50%, var(--accent-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--light-cream);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-red) 100%);
    color: white;
    border: none;
    padding: 18px 50px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.4);
}

.hero-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(230, 57, 70, 0.6);
}

.hero-lantern {
    position: absolute;
    width: 80px;
    height: 120px;
    background: linear-gradient(180deg, var(--primary-red) 0%, var(--primary-orange) 100%);
    border-radius: 50% 50% 45% 45%;
    opacity: 0.4;
    animation: swayLantern 4s infinite ease-in-out;
    box-shadow: 0 0 40px rgba(255, 107, 53, 0.6);
}

.left-lantern {
    top: 20%;
    left: 5%;
}

.right-lantern {
    bottom: 20%;
    right: 5%;
    animation-delay: 2s;
}

@keyframes swayLantern {
    0%, 100% {
        transform: translateX(0) rotate(0deg);
    }
    50% {
        transform: translateX(20px) rotate(5deg);
    }
}

.features-section {
    padding: 100px 30px;
    position: relative;
    z-index: 10;
}

.section-header {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-title {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 2.8rem;
    color: var(--primary-yellow);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-cream);
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    border-radius: 25px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--accent-pink) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.feature-card:hover::before {
    opacity: 0.1;
}

.card-lantern, .card-kite {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    position: relative;
}

.card-lantern {
    background: linear-gradient(180deg, var(--primary-yellow) 0%, var(--primary-orange) 100%);
    border-radius: 50% 50% 45% 45%;
    box-shadow: 0 0 20px rgba(255, 210, 63, 0.5);
}

.card-kite {
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-purple) 100%);
    transform: rotate(45deg);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(46, 196, 182, 0.5);
}

.feature-card h3 {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.5rem;
    color: var(--primary-yellow);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--light-cream);
    position: relative;
    z-index: 1;
}

.games-section {
    padding: 100px 30px;
    position: relative;
    z-index: 10;
    background: rgba(0, 0, 0, 0.2);
}

.games-header {
    text-align: center;
    margin-bottom: 60px;
}

.header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.deco-lantern {
    width: 40px;
    height: 60px;
    background: linear-gradient(180deg, var(--primary-yellow) 0%, var(--primary-orange) 100%);
    border-radius: 50% 50% 45% 45%;
    animation: floatDeco 3s infinite ease-in-out;
    box-shadow: 0 0 20px rgba(255, 210, 63, 0.6);
}

@keyframes floatDeco {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.header-decoration h2 {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 3rem;
    color: var(--primary-yellow);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.games-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.game-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 3px solid var(--primary-orange);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s ease;
    text-decoration: none;
    display: block;
    position: relative;
}

.game-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.5);
}

.featured-game {
    border-color: var(--primary-yellow);
    box-shadow: 0 0 30px rgba(255, 210, 63, 0.4);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-orange) 100%);
    color: var(--dark-bg);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 10;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 210, 63, 0.5);
}

.game-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 20, 35, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.game-card:hover .game-hover {
    opacity: 1;
}

.play-button {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-red) 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.5);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.game-card:hover .play-button {
    transform: scale(1);
}

.game-details {
    padding: 25px;
}

.game-details h3 {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.8rem;
    color: var(--primary-yellow);
    margin-bottom: 15px;
}

.game-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid var(--primary-orange);
    color: var(--primary-orange);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.about-section {
    padding: 100px 30px;
    position: relative;
    z-index: 10;
}

.about-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.about-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-orange);
    border-radius: 30px;
    padding: 50px;
    transition: all 0.4s ease;
}

.about-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.about-item.reverse {
    grid-template-columns: 1fr 1fr;
}

.about-item.reverse .about-text {
    order: 2;
}

.about-item.reverse .about-visual {
    order: 1;
}

.about-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: transform 0.4s ease;
}

.about-item:hover .about-visual img {
    transform: scale(1.05);
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(255, 133, 162, 0.2) 100%);
    pointer-events: none;
}

.text-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.header-icon {
    font-size: 2.5rem;
}

.about-text h2 {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 2.2rem;
    color: var(--primary-yellow);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--light-cream);
}

.disclaimer-section {
    padding: 100px 30px;
    position: relative;
    z-index: 10;
    background: rgba(0, 0, 0, 0.2);
}

.disclaimer-box {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 3px solid var(--primary-red);
    border-radius: 30px;
    padding: 50px;
}

.disclaimer-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.warning-icon {
    font-size: 3rem;
}

.warning-label {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-orange) 100%);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
}

.disclaimer-box h2 {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 2.5rem;
    color: var(--primary-yellow);
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.disclaimer-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.disclaimer-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: rgba(0, 0, 0, 0.2);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.disclaimer-item:hover {
    border-color: var(--primary-orange);
    background: rgba(255, 107, 53, 0.1);
}

.item-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.item-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--light-cream);
}

.item-text strong {
    color: var(--primary-yellow);
    font-weight: 700;
}

.contact-section {
    padding: 100px 30px;
    position: relative;
    z-index: 10;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-intro {
    text-align: center;
    margin-bottom: 60px;
}

.contact-title {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 3rem;
    color: var(--primary-yellow);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.title-icon {
    font-size: 3rem;
    margin-right: 15px;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: var(--light-cream);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-orange);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.sidebar-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.sidebar-text h4 {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.3rem;
    color: var(--primary-yellow);
    margin-bottom: 5px;
}

.sidebar-text p {
    color: var(--light-cream);
    font-size: 0.95rem;
}

.sidebar-reasons {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid var(--accent-teal);
    border-radius: 20px;
    padding: 25px;
}

.sidebar-reasons h4 {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.3rem;
    color: var(--accent-teal);
    margin-bottom: 15px;
}

.sidebar-reasons ul {
    list-style: none;
}

.sidebar-reasons li {
    color: var(--light-cream);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-orange);
    border-radius: 25px;
    padding: 40px;
}

.form-intro {
    margin-bottom: 30px;
}

.form-intro h3 {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.8rem;
    color: var(--primary-yellow);
    margin-bottom: 10px;
}

.form-intro p {
    color: var(--light-cream);
    font-size: 0.95rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-field {
    margin-bottom: 20px;
}

.form-field label {
    display: block;
    color: var(--primary-yellow);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    color: var(--text-light);
    font-size: 1rem;
    font-family: 'Quicksand', sans-serif;
    transition: all 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.form-field textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-red) 100%);
    color: white;
    border: none;
    padding: 18px 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.4);
    width: 100%;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(230, 57, 70, 0.6);
}

.arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.submit-button:hover .arrow {
    transform: translateX(5px);
}

.badges-section {
    padding: 60px 30px;
    position: relative;
    z-index: 10;
    background: rgba(0, 0, 0, 0.2);
}

.badges-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.badge-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-orange);
    border-radius: 20px;
    padding: 20px;
    transition: all 0.3s ease;
}

.badge-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.badge-box img {
    max-width: 120px;
    height: auto;
    display: block;
}

.main-footer {
    position: relative;
    background: rgba(0, 0, 0, 0.4);
    border-top: 3px solid var(--primary-orange);
    padding: 60px 30px 30px;
    z-index: 10;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand {
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-kite {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-purple) 100%);
    transform: rotate(45deg);
    border-radius: 8px;
}

.footer-brand h3 {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.8rem;
    color: var(--primary-yellow);
}

.footer-brand p {
    color: var(--light-cream);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-newsletter h4 {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.5rem;
    color: var(--primary-yellow);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid var(--primary-orange);
    border-radius: 50px;
    color: var(--text-light);
    font-family: 'Quicksand', sans-serif;
    font-size: 0.95rem;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.newsletter-form button {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-red) 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
}

.newsletter-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.5);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 107, 53, 0.3);
    border-bottom: 1px solid rgba(255, 107, 53, 0.3);
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
}

.footer-bottom p {
    color: var(--light-cream);
    font-size: 0.9rem;
}

.footer-lanterns {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 30px;
    pointer-events: none;
}

.footer-lantern {
    width: 30px;
    height: 45px;
    background: linear-gradient(180deg, var(--primary-yellow) 0%, var(--primary-orange) 100%);
    border-radius: 50% 50% 45% 45%;
    opacity: 0.3;
    animation: footerLanternGlow 2s infinite ease-in-out;
}

.footer-lantern:nth-child(2) {
    animation-delay: 0.7s;
}

.footer-lantern:nth-child(3) {
    animation-delay: 1.4s;
}

@keyframes footerLanternGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 210, 63, 0.3);
        opacity: 0.3;
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 210, 63, 0.6);
        opacity: 0.6;
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .brand-name {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .about-item, .about-item.reverse {
        grid-template-columns: 1fr;
    }

    .about-item.reverse .about-text,
    .about-item.reverse .about-visual {
        order: unset;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }

    .welcome-text {
        font-size: 1.5rem;
    }

    .brand-name {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .about-item {
        padding: 30px;
    }

    .disclaimer-box {
        padding: 30px;
    }

    .contact-form {
        padding: 30px;
    }

    .header-decoration h2 {
        font-size: 2rem;
    }

    .footer-links {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .age-gate-modal {
        padding: 40px 30px;
    }

    .hero-section {
        padding: 60px 20px;
    }

    .hero-cta {
        padding: 15px 40px;
        font-size: 1rem;
    }

    .contact-title {
        font-size: 2.2rem;
    }

    .footer-brand h3 {
        font-size: 1.5rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .badges-container {
        gap: 20px;
    }

    .badge-box img {
        max-width: 100px;
    }
}

.content {
    padding: 40px 10%;
}

.content-block {}

.content-block h2 {
    color: #d18b08;
}

.content-block p,
ul {
    color: rgba(255, 255, 255, 0.7);
}

.play-ground-area {
    padding: 2rem;
    background: rgba(0, 0, 0, 0);
}

.play-game {
    max-width: 940px;
    margin: 0 auto;
}

