/* Giggle HB - Energetic Playful Theme */

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

body {
    font-family: 'Segoe UI', 'Geneva', 'Lucida Grande', sans-serif;
    color: #2e1a47;
    background: linear-gradient(135deg, #fff4e6 0%, #ffe0b3 50%, #ffd699 100%);
    line-height: 1.7;
    overflow-x: hidden;
}

.header-inner,
.content-container,
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ======= Header ======= */
.page-header {
    background: linear-gradient(135deg, #ff6f00 0%, #ff8f00 50%, #ffa726 100%);
    box-shadow: 0 4px 15px rgba(255, 111, 0, 0.4);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-branding img {
    height: 48px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

.site-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.site-navigation {
    display: flex;
    gap: 2.5rem;
}

.menu-item {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    padding: 0.6rem 1rem;
    border-radius: 8px;
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.menu-item.highlighted {
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

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

.hamburger-menu span {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

.hamburger-menu.active-burger span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger-menu.active-burger span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active-burger span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }
    
    .site-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #ff6f00 0%, #ff8f00 100%);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }
    
    .site-navigation.menu-open {
        max-height: 420px;
    }
    
    .menu-item {
        padding: 1.2rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }
}

/* ======= Hero Area ======= */
.hero-area {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 25%, #FFA94D 50%, #FFB347 75%, #FFCC33 100%);
    overflow: hidden;
}

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

.hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 179, 71, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: float 15s infinite ease-in-out;
}

.shape-1 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF69B4, #FF1493);
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #00CED1, #1E90FF);
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 22s;
}

.shape-4 {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #98FB98, #32CD32);
    top: 30%;
    right: 25%;
    animation-delay: 1s;
    animation-duration: 19s;
}

.shape-5 {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #FFB6C1, #FF69B4);
    bottom: 40%;
    right: 10%;
    animation-delay: 3s;
    animation-duration: 21s;
}

.shape-6 {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #DDA0DD, #BA55D3);
    top: 70%;
    left: 30%;
    animation-delay: 5s;
    animation-duration: 17s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) rotate(90deg);
    }
    50% {
        transform: translateY(0) rotate(180deg);
    }
    75% {
        transform: translateY(30px) rotate(270deg);
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.95);
    color: #FF6B35;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    animation: badgeBounce 2s ease-in-out infinite;
}

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

.hero-message {
    color: #fff;
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.title-line {
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 4px;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1s ease-out;
}

.title-main {
    font-size: 5.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF4E0 50%, #FFE4B5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease-out 0.2s both;
    position: relative;
}

.title-sparkle {
    font-size: 3rem;
    display: inline-block;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% { 
        transform: scale(1.3) rotate(180deg);
        opacity: 0.8;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: 300;
    line-height: 1.6;
    animation: fadeIn 1s ease-out 0.4s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 0.6s both;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 0.8s both;
}

.primary-action {
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    color: #FF6B35;
    padding: 1.3rem 3.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    font-family: 'Segoe UI', sans-serif;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.primary-action::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.primary-action:hover::before {
    width: 300px;
    height: 300px;
}

.primary-action:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.secondary-action {
    background: transparent;
    color: #fff;
    padding: 1.3rem 3rem;
    border: 3px solid #fff;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.secondary-action:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    z-index: 10;
    animation: fadeIn 1s ease-out 1s both;
}

.scroll-arrow {
    display: block;
    font-size: 2rem;
    animation: bounce 2s infinite;
    margin-bottom: 0.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-7px);
    }
}

.hero-scroll-indicator p {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

/* ======= Alert Box ======= */
.alert-box {
    background: linear-gradient(135deg, #ffb74d 0%, #ffcc80 100%);
    padding: 2.8rem 2rem;
    text-align: center;
    border-top: 4px solid #ffcc80;
    border-bottom: 4px solid #ffcc80;
}

.alert-content h2 {
    font-size: 2.2rem;
    color: #e65100;
    margin-bottom: 1.5rem;
}

.alert-main {
    font-size: 1.3rem;
    color: #e65100;
    font-weight: 600;
    margin-bottom: 1rem;
}

.alert-sub {
    font-size: 1.1rem;
    color: #f57c00;
    margin-bottom: 2rem;
}

.read-more {
    background: #fff;
    color: #ff6f00;
    padding: 1rem 2.8rem;
    border: 2px solid #ff6f00;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', sans-serif;
}

.read-more:hover {
    background: #ff6f00;
    color: #fff;
    transform: scale(1.05);
}

/* ======= Activity Area ======= */
.activity-area,
.play-area {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #ffe0b3 0%, #fff4e6 100%);
}

.activity-area h2,
.play-area h1 {
    font-size: 3rem;
    color: #6a1b9a;
    margin-bottom: 1.5rem;
    text-align: center;
}

.area-subtitle {
    font-size: 1.3rem;
    color: #7b1fa2;
    text-align: center;
    margin-bottom: 3rem;
}

.activity-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
    border: 4px solid #ff8f00;
}

.activity-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ======= About Area ======= */
.about-area {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #fff4e6 0%, #ffe0b3 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.about-media img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 3px solid #ffb74d;
}

.about-text h2 {
    font-size: 2.8rem;
    color: #6a1b9a;
    margin-bottom: 1.8rem;
}

.about-text p {
    font-size: 1.15rem;
    color: #4a148c;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* ======= Testimonials Area ======= */
.testimonials-area {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #ffe0b3 0%, #ffd699 100%);
    text-align: center;
}

.testimonials-area h2 {
    font-size: 3rem;
    color: #e65100;
    margin-bottom: 3.5rem;
}

.testimonial-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-item {
    background: linear-gradient(135deg, #fff 0%, #fff4e6 100%);
    padding: 2.8rem;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(255, 111, 0, 0.2);
    border: 2px solid #ffb74d;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-7px);
    box-shadow: 0 10px 30px rgba(255, 111, 0, 0.35);
}

.user-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #6a1b9a;
    margin-bottom: 0.6rem;
}

.rating-stars {
    font-size: 1.5rem;
    color: #ffc107;
    margin-bottom: 1.2rem;
}

.user-feedback {
    font-size: 1.05rem;
    color: #4a148c;
    line-height: 1.8;
    font-style: italic;
}

/* ======= Features Area ======= */
.features-area {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #fff4e6 0%, #ffe0b3 100%);
    text-align: center;
}

.features-area h2 {
    font-size: 3rem;
    color: #6a1b9a;
    margin-bottom: 3.5rem;
}

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

.feature-card {
    background: #fff;
    padding: 3rem 2.5rem;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(255, 111, 0, 0.15);
    border: 2px solid #ffd699;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(255, 111, 0, 0.3);
    border-color: #ffb74d;
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.6rem;
    color: #ff6f00;
    margin-bottom: 1.2rem;
}

.feature-card p {
    font-size: 1.05rem;
    color: #7b1fa2;
    line-height: 1.7;
}

/* ======= Footer ======= */
.page-footer {
    background: linear-gradient(135deg, #4a148c 0%, #6a1b9a 100%);
    color: #fff4e6;
    padding: 4.5rem 2rem 1.5rem;
    border-top: 4px solid #ffb74d;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 3.5rem;
}

.brand-column .footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.brand-column img {
    height: 48px;
    filter: brightness(1.3);
}

.footer-site-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.brand-column p {
    font-size: 1rem;
    color: #ffe0b3;
}

.links-column h4,
.legal-column h4 {
    font-size: 1.3rem;
    color: #ffcc80;
    margin-bottom: 1.3rem;
}

.links-column a,
.legal-column a {
    display: block;
    color: #fff4e6;
    text-decoration: none;
    margin-bottom: 0.9rem;
    transition: color 0.3s ease;
}

.links-column a:hover,
.legal-column a:hover {
    color: #ffcc80;
}

.footer-disclaimer {
    background: rgba(255, 204, 128, 0.15);
    padding: 1.8rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 2.5rem;
    border: 2px solid rgba(255, 204, 128, 0.3);
}

.footer-disclaimer p {
    font-size: 1rem;
    color: #ffe0b3;
}

.footer-credits {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 2px solid rgba(255, 204, 128, 0.3);
}

.footer-credits p {
    font-size: 0.95rem;
    color: #ffcc80;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* ======= Contact Area ======= */
.contact-area {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #ffe0b3 0%, #ffd699 100%);
}

.contact-area h1 {
    font-size: 3.5rem;
    color: #e65100;
    margin-bottom: 1.2rem;
    text-align: center;
}

.contact-intro {
    font-size: 1.3rem;
    color: #7b1fa2;
    text-align: center;
    margin-bottom: 3.5rem;
}

.form-wrapper {
    max-width: 750px;
    margin: 0 auto;
    background: #fff;
    padding: 3.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 3px solid #ffb74d;
}

.input-group {
    margin-bottom: 2.2rem;
}

.input-group label {
    display: block;
    font-size: 1.15rem;
    font-weight: 600;
    color: #6a1b9a;
    margin-bottom: 0.7rem;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 1.1rem;
    border: 2px solid #ffd699;
    border-radius: 8px;
    font-size: 1.05rem;
    font-family: 'Segoe UI', sans-serif;
    transition: border-color 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: #ff6f00;
}

.form-submit {
    background: linear-gradient(135deg, #ff6f00 0%, #ff8f00 100%);
    color: #fff;
    padding: 1.2rem 3.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(255, 111, 0, 0.4);
    width: 100%;
    font-family: 'Segoe UI', sans-serif;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 111, 0, 0.6);
}

/* ======= Document Area ======= */
.document-area {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #fff4e6 0%, #ffe0b3 100%);
    min-height: 65vh;
}

.document-area h1 {
    font-size: 3.5rem;
    color: #6a1b9a;
    margin-bottom: 1rem;
}

.document-date {
    font-size: 1.05rem;
    color: #ff6f00;
    margin-bottom: 3.5rem;
}

.document-area h2 {
    font-size: 2rem;
    color: #6a1b9a;
    margin-top: 3rem;
    margin-bottom: 1.2rem;
}

.document-area h3 {
    font-size: 1.5rem;
    color: #ff6f00;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.document-area p {
    font-size: 1.1rem;
    color: #4a148c;
    line-height: 1.9;
    margin-bottom: 1.8rem;
}

.document-area ul {
    margin-left: 2.5rem;
    margin-bottom: 1.8rem;
}

.document-area li {
    font-size: 1.1rem;
    color: #4a148c;
    line-height: 1.9;
    margin-bottom: 0.8rem;
}

.document-area a {
    color: #ff6f00;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.document-area a:hover {
    color: #ff8f00;
}

/* ======= Back to Top ======= */
.back-to-top {
    position: fixed;
    bottom: 35px;
    right: 35px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6f00 0%, #ff8f00 100%);
    color: #fff;
    border: 3px solid #ffcc80;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 111, 0, 0.4);
    z-index: 999;
}

.back-to-top.visible-btn {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 111, 0, 0.6);
}

/* ======= Age Gate Modal ======= */
.gate-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(74, 20, 140, 0.95);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.gate-dialog {
    background: linear-gradient(135deg, #fff 0%, #fff4e6 100%);
    padding: 3.5rem 3rem;
    border-radius: 20px;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.5);
    border: 4px solid #ffb74d;
}

.gate-dialog h2 {
    font-size: 2.5rem;
    color: #6a1b9a;
    margin-bottom: 1.8rem;
}

.gate-dialog p {
    font-size: 1.15rem;
    color: #4a148c;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.gate-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.accept-age {
    background: linear-gradient(135deg, #ff6f00 0%, #ff8f00 100%);
    color: #fff;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(255, 111, 0, 0.4);
    font-family: 'Segoe UI', sans-serif;
}

.accept-age:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 111, 0, 0.6);
}

.decline-age {
    background: transparent;
    color: #6a1b9a;
    padding: 1.2rem 3rem;
    border: 2px solid #ff6f00;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', sans-serif;
}

.decline-age:hover {
    background: rgba(255, 111, 0, 0.1);
}

/* ======= Info Modal ======= */
.info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(74, 20, 140, 0.95);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow-y: auto;
    padding: 2rem;
}

.info-dialog {
    background: linear-gradient(135deg, #fff 0%, #fff4e6 100%);
    padding: 3.5rem;
    border-radius: 20px;
    max-width: 850px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.5);
    border: 4px solid #ffb74d;
}

.info-dialog h2 {
    font-size: 2.8rem;
    color: #6a1b9a;
    margin-bottom: 2.5rem;
}

.info-dialog h3 {
    font-size: 1.8rem;
    color: #ff6f00;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
}

.info-dialog p {
    font-size: 1.1rem;
    color: #4a148c;
    line-height: 1.9;
    margin-bottom: 1.8rem;
}

.modal-close {
    background: linear-gradient(135deg, #ff6f00 0%, #ff8f00 100%);
    color: #fff;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(255, 111, 0, 0.4);
    font-family: 'Segoe UI', sans-serif;
}

.modal-close:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 111, 0, 0.6);
}

/* ======= Responsive ======= */
@media (max-width: 768px) {
    .hero-message h1 {
        font-size: 2.8rem;
    }
    
    .hero-message p {
        font-size: 1.2rem;
    }
    
    .activity-area h2,
    .testimonials-area h2,
    .features-area h2 {
        font-size: 2.3rem;
    }
    
    .gate-dialog,
    .info-dialog {
        margin: 1rem;
        padding: 2.5rem 2rem;
    }
    
    .gate-buttons {
        flex-direction: column;
        gap: 1.2rem;
    }
    
    .accept-age,
    .decline-age {
        width: 100%;
    }
}
