/* Christmas Theme Color Variables */
:root {
    --christmas-red: #8B0000;
    --christmas-green: #006400;
    --christmas-gold: #FFD700;
    --christmas-white: #FFFFFF;
    --christmas-cream: #F5F5DC;
    --christmas-light-red: #DC143C;
    --christmas-light-green: #228B22;
    --christmas-silver: #C0C0C0;
    --christmas-dark: #2F2F2F;
    --text-primary: #2C3E50;
    --text-secondary: #7F8C8D;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --shadow-dark: rgba(0, 0, 0, 0.25);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Merriweather', serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow-x: hidden;
}

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

/* Snow Effect */
.snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    top: -10px;
    color: var(--christmas-white);
    font-size: 1em;
    animation: fall linear infinite;
    opacity: 0.8;
}

@keyframes fall {
    to {
        transform: translateY(100vh);
    }
}

/* Age Gate Styles */
.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--christmas-red), var(--christmas-green));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.age-gate-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.age-gate-container {
    background: var(--christmas-white);
    border-radius: 20px;
    padding: 60px 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px var(--shadow-dark);
    position: relative;
    border: 3px solid var(--christmas-gold);
}

.christmas-ornament {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--christmas-gold);
    border: 2px solid var(--christmas-red);
}

.christmas-ornament.top-left { top: 10px; left: 10px; }
.christmas-ornament.top-right { top: 10px; right: 10px; }
.christmas-ornament.bottom-left { bottom: 10px; left: 10px; }
.christmas-ornament.bottom-right { bottom: 10px; right: 10px; }

.age-gate-logo .brand-name {
    font-family: 'Dancing Script', cursive;
    font-size: 28px;
    color: var(--christmas-green);
    font-weight: 700;
}

.age-gate-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin: 30px 0;
    color: var(--christmas-red);
}

.title-accent {
    color: var(--christmas-gold);
}

.age-gate-message {
    margin: 30px 0;
}

.age-gate-text {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.age-gate-subtext {
    font-size: 16px;
    color: var(--text-secondary);
}

.age-gate-buttons {
    display: flex;
    gap: 20px;
    margin: 40px 0 20px;
    flex-wrap: wrap;
}

.age-gate-btn {
    flex: 1;
    min-width: 180px;
    padding: 15px 25px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.age-gate-yes {
    background: linear-gradient(45deg, var(--christmas-green), var(--christmas-light-green));
    color: var(--christmas-white);
}

.age-gate-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--shadow-medium);
}

.age-gate-no {
    background: linear-gradient(45deg, var(--christmas-red), var(--christmas-light-red));
    color: var(--christmas-white);
}

.age-gate-no:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--shadow-medium);
}

.age-gate-disclaimer {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 20px;
}

/* Christmas Navigation */
.christmas-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--christmas-white) 0%, var(--christmas-cream) 100%);
    box-shadow: 0 2px 20px var(--shadow-light);
    z-index: 1000;
    border-bottom: 3px solid var(--christmas-gold);
}

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

.christmas-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    position: relative;
    padding: 10px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.christmas-brand:hover {
    transform: translateY(-2px);
}

.brand-icon {
    font-size: 24px;
}

.brand-name {
    font-family: 'Dancing Script', cursive;
    font-size: 24px;
    font-weight: 700;
    color: var(--christmas-green);
}

.brand-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient(45deg, var(--christmas-gold), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.christmas-brand:hover .brand-glow {
    opacity: 0.2;
}

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

.nav-link {
    position: relative;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--christmas-red);
}

.nav-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, var(--christmas-red), var(--christmas-gold));
    transition: width 0.3s ease;
}

.nav-link:hover .nav-underline {
    width: 100%;
}

.nav-snow-line {
    height: 3px;
    background: linear-gradient(90deg, var(--christmas-gold), var(--christmas-white), var(--christmas-gold));
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--christmas-green);
    transition: all 0.3s ease;
}

/* Christmas Hero Section */
.christmas-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--christmas-cream) 0%, var(--christmas-white) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}
.other-hero{
    min-height: 70vh;
    /* max-height: 50vh; */
}
.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, var(--christmas-gold) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, var(--christmas-light-green) 0%, transparent 50%);
    opacity: 0.1;
}

.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(45deg, var(--christmas-red), var(--christmas-gold));
    color: var(--christmas-white);
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px var(--shadow-light);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(60px, 8vw, 100px);
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.1;
}

.title-accent {
    color: var(--christmas-gold);
    text-shadow: 2px 2px 4px var(--shadow-light);
}

.title-main {
    color: var(--christmas-red);
    text-shadow: 2px 2px 4px var(--shadow-light);
}

.hero-subtitle {
    font-size: 24px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.christmas-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, var(--christmas-green), var(--christmas-light-green));
    color: var(--christmas-white);
    padding: 18px 36px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px var(--shadow-light);
}

.christmas-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px var(--shadow-medium);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.christmas-btn:hover .btn-shine {
    left: 100%;
}

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

.floating-ornament {
    position: absolute;
    font-size: 30px;
    animation: float 6s ease-in-out infinite;
}

.ornament-1 { top: 20%; left: 10%; animation-delay: 0s; }
.ornament-2 { top: 30%; right: 15%; animation-delay: 1s; }
.ornament-3 { bottom: 30%; left: 20%; animation-delay: 2s; }
.ornament-4 { bottom: 20%; right: 10%; animation-delay: 3s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Christmas Info Section */
.christmas-info-section {
    padding: 100px 0;
    background: var(--christmas-white);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--christmas-red);
    margin-bottom: 20px;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.decoration-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(45deg, var(--christmas-gold), var(--christmas-red));
}

.decoration-icon {
    font-size: 24px;
    color: var(--christmas-gold);
}

.christmas-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.info-card {
    background: var(--christmas-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(45deg, var(--christmas-red), var(--christmas-gold), var(--christmas-green));
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow-medium);
    border-color: var(--christmas-gold);
}

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

.card-icon {
    font-size: 32px;
    background: linear-gradient(45deg, var(--christmas-red), var(--christmas-gold));
    padding: 15px;
    border-radius: 12px;
    color: var(--christmas-white);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--christmas-green);
    font-weight: 600;
}

.card-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-primary);
}

/* Christmas About Section */
.christmas-about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--christmas-cream) 0%, var(--christmas-white) 100%);
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.about-decoration {
    flex: 0 0 auto;
}

.decoration-tree {
    font-size: 80px;
    animation: float 4s ease-in-out infinite;
}

.about-content {
    flex: 1;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(45deg, var(--christmas-gold), var(--christmas-light-red));
    color: var(--christmas-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-card {
    background: var(--christmas-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-light);
    border-left: 5px solid var(--christmas-green);
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-primary);
}

/* Christmas Features Section */
.christmas-features-section {
    padding: 100px 0;
    background: var(--christmas-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: linear-gradient(135deg, var(--christmas-white) 0%, var(--christmas-cream) 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--christmas-gold), transparent, var(--christmas-red));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--christmas-gold);
    box-shadow: 0 20px 50px var(--shadow-medium);
}

.feature-header {
    margin-bottom: 25px;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--christmas-red);
    font-weight: 600;
}

.feature-content {
    position: relative;
    z-index: 2;
}

.feature-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-primary);
}

/* Christmas Game Section */
.christmas-game-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--christmas-cream) 0%, var(--christmas-white) 100%);
}

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

.game-content-wrapper {
    display: grid;
    grid-template-columns: 1fr ;
    gap: 60px;
    align-items: start;
}

.description-card {
    background: var(--christmas-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-light);
    border-left: 5px solid var(--christmas-red);
}

.description-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-primary);
}

.christmas-game-container {
    position: relative;
}

.game-frame {
    background: var(--christmas-white);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 50px var(--shadow-medium);
    border: 3px solid var(--christmas-gold);
}

.game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: linear-gradient(45deg, var(--christmas-green), var(--christmas-light-green));
    border-radius: 12px;
    color: var(--christmas-white);
}

.game-status {
    font-weight: 600;
    font-size: 14px;
}

.game-title {
    font-weight: 600;
}

.play-ground-area {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: inset 0 0 20px var(--shadow-light);
}

/* Christmas About Us Section */
.christmas-about-us-section {
    padding: 100px 0;
    background: var(--christmas-white);
}

.about-us-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px var(--shadow-medium);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--christmas-red), transparent, var(--christmas-gold));
    opacity: 0.1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay-decoration {
    font-size: 60px;
    opacity: 0.3;
}

.content-sections {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.content-section {
    background: linear-gradient(135deg, var(--christmas-white) 0%, var(--christmas-cream) 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-light);
    border-left: 5px solid var(--christmas-green);
}

.section-icon {
    font-size: 32px;
    margin-bottom: 15px;
    display: block;
}

.content-section .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--christmas-red);
    margin-bottom: 20px;
}

.section-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-primary);
}

/* Christmas Footer */
.christmas-footer {
    background: linear-gradient(135deg, var(--christmas-dark) 0%, #1a1a1a 100%);
    color: var(--christmas-white);
    position: relative;
    overflow: hidden;
}

.footer-decoration-top {
    height: 10px;
    background: linear-gradient(90deg, var(--christmas-red), var(--christmas-gold), var(--christmas-green), var(--christmas-gold), var(--christmas-red));
}

.decoration-pattern {
    width: 100%;
    height: 100%;
    background-size: 40px 40px;
    background-image: 
        repeating-linear-gradient(45deg, var(--christmas-gold) 0, var(--christmas-gold) 1px, transparent 1px, transparent 10px);
}

.footer-content {
    padding: 60px 0 30px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-brand .brand-icon {
    font-size: 32px;
}

.footer-brand .brand-name {
    font-family: 'Dancing Script', cursive;
    font-size: 32px;
    font-weight: 700;
    color: var(--christmas-gold);
}

.brand-tagline {
    font-size: 14px;
    color: var(--christmas-silver);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-link {
    color: var(--christmas-white);
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.footer-link:hover {
    background: linear-gradient(45deg, var(--christmas-red), var(--christmas-gold));
    transform: translateY(-2px);
}

.footer-disclaimer {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    border-left: 5px solid var(--christmas-gold);
}

.footer-disclaimer p {
    line-height: 1.8;
    color: var(--christmas-cream);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--christmas-silver);
}

.copyright-decoration {
    font-size: 16px;
}

.footer-badges {
    display: flex;
    gap: 15px;
}

.badge {
    display: block;
    transition: transform 0.3s ease;
}

.badge:hover {
    transform: scale(1.1);
}

.badge img {
    height: 40px;
    width: auto;
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--christmas-white);
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding-top: 60px;
        gap: 40px;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px var(--shadow-light);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 60px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .christmas-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

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

    .game-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-us-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-main {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 48px;
    }

    .section-title {
        font-size: 36px;
    }

    .info-card,
    .feature-card,
    .description-card,
    .content-section {
        padding: 25px;
    }

    .christmas-info-grid {
        grid-template-columns: 1fr;
    }

    .age-gate-container {
        padding: 40px 20px;
        margin: 20px;
    }

    .age-gate-buttons {
        flex-direction: column;
    }

    .age-gate-btn {
        min-width: auto;
    }
}

.content {
    padding: 40px 10%;
   
}
.content-block {}

.content-block h2 {
    color: #f3ba00;
    font-size: 2rem;
}

.content-block p,
ul {
    color: rgb(41, 39, 39);
    font-size: 1.2rem;
}

.play-ground-area {
    padding: 2rem;
    background: black;
}

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

a {
    text-decoration: none;
}