/* Fiesta Gaming Style - Vibrant and Festive */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Fiesta Color Palette */
    --fiesta-red: #FF4757;
    --fiesta-orange: #FF6348;
    --fiesta-yellow: #FFD93D;
    --fiesta-green: #6BCF7F;
    --fiesta-blue: #3742FA;
    --fiesta-purple: #A55EEA;
    --fiesta-pink: #FF3838;
    --fiesta-teal: #0ABDE3;
    
    /* Background Colors */
    --bg-primary: #1B1B2F;
    --bg-secondary: #162447;
    --bg-accent: #1F4068;
    --bg-light: #E43F5A;
    
    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #FFD93D;
    --text-accent: #6BCF7F;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--fiesta-red), var(--fiesta-orange), var(--fiesta-yellow));
    --gradient-secondary: linear-gradient(135deg, var(--fiesta-blue), var(--fiesta-purple), var(--fiesta-pink));
    --gradient-rainbow: linear-gradient(45deg, var(--fiesta-red), var(--fiesta-orange), var(--fiesta-yellow), var(--fiesta-green), var(--fiesta-blue), var(--fiesta-purple));
    
    /* Shadows */
    --shadow-glow: 0 0 20px rgba(255, 215, 61, 0.4);
    --shadow-fiesta: 0 0 30px rgba(255, 71, 87, 0.3);
}

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
}

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

/* Age Gate Modal - Fiesta Style */
.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--fiesta-red), var(--fiesta-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.age-gate-overlay.active {
    opacity: 1;
    visibility: visible;
}

.age-gate-container {
    position: relative;
    max-width: 500px;
    width: 90%;
}

.fiesta-bg {
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    animation: confettiFall 3s linear infinite;
    pointer-events: none;
}

.age-gate-content {
    background: rgba(27, 27, 47, 0.95);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 3px solid var(--fiesta-yellow);
    box-shadow: var(--shadow-fiesta);
    position: relative;
    overflow: hidden;
}

.age-gate-content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-rainbow);
    border-radius: 20px;
    z-index: -1;
    animation: rainbowPulse 2s ease-in-out infinite;
}

.fiesta-circle {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-glow);
    animation: bounce 2s infinite;
}

.age-text {
    font-size: 24px;
    font-weight: 900;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.fiesta-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 28px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.age-buttons {
    display: flex;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.age-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    font-family: inherit;
}

.age-btn.confirm {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-glow);
}

.age-btn.confirm:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(255, 215, 61, 0.6);
}

.age-btn.deny {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 2px solid var(--fiesta-red);
}

.fiesta-sparkles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.age-btn.confirm:hover .fiesta-sparkles {
    opacity: 1;
}

.age-footer p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Navigation - Fiesta Style */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(27, 27, 47, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid var(--fiesta-yellow);
}

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

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

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: starSpin 4s linear infinite;
}

.fiesta-star {
    color: white;
    font-size: 24px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.logo-text {
    font-family: 'Fredoka', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-item {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-item:hover {
    background: var(--gradient-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-fiesta);
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--fiesta-yellow);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section - Fiesta Style */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(ellipse at center, var(--bg-accent) 0%, var(--bg-primary) 70%);
    overflow: hidden;
    padding-top: 80px;
}

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

.confetti {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    animation: confettiFall 20s linear infinite;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.float-element:nth-child(1) { top: 20%; left: 10%; animation-delay: -0.5s; }
.float-element:nth-child(2) { top: 60%; left: 80%; animation-delay: -1.5s; }
.float-element:nth-child(3) { top: 80%; left: 20%; animation-delay: -2.5s; }
.float-element:nth-child(4) { top: 30%; left: 70%; animation-delay: -3.5s; }
.float-element:nth-child(5) { top: 50%; left: 50%; animation-delay: -4.5s; }

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: var(--gradient-secondary);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-fiesta);
    animation: pulse 2s infinite;
}

.hero-title {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.1;
}

.title-welcome {
    display: block;
    font-size: 0.4em;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.title-main {
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 61, 0.5);
}

.title-sub {
    display: block;
    font-size: 0.6em;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 10px;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-button {
    background: var(--gradient-primary);
    border: none;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    color: white;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glow);
    font-family: inherit;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 50px rgba(255, 215, 61, 0.8);
}

.btn-celebration {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    animation: bounce 2s infinite;
}

/* Features Carousel */
.features-carousel {
    padding: 100px 0;
    background: var(--bg-secondary);
    position: relative;
}

.section-title {
    text-align: center;
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 60px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.carousel-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.feature-cards {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}

.feature-card {
    min-width: 100%;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    opacity: 0.7;
}

.feature-card.active {
    border-color: var(--fiesta-yellow);
    box-shadow: var(--shadow-glow);
    opacity: 1;
    transform: scale(1.02);
}

.card-icon {
    font-size: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 61, 0.5));
}

.feature-card h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.feature-card p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.carousel-btn {
    background: var(--gradient-secondary);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-fiesta);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--fiesta-yellow);
    box-shadow: 0 0 10px var(--fiesta-yellow);
}

/* Overview Zigzag */
.overview-zigzag {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-accent) 100%);
}

.zigzag-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
}

.zigzag-content h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.zigzag-content p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid var(--fiesta-green);
    font-weight: 600;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(255, 71, 87, 0.3);
}

.image-frame img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-frame:hover img {
    transform: scale(1.05);
}

.frame-decoration {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: var(--gradient-rainbow);
    border-radius: 25px;
    z-index: -1;
    animation: rainbowPulse 3s ease-in-out infinite;
}

/* Game Theater */
.game-theater {
    padding: 100px 0;
    background: var(--bg-secondary);
    position: relative;
}

.theater-title {
    text-align: center;
    margin-bottom: 60px;
}

.theater-title h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.theater-title p {
    font-size: 18px;
    color: var(--text-secondary);
}

.theater-stage {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 40px;
    background: radial-gradient(ellipse at center, rgba(255, 71, 87, 0.1) 0%, transparent 70%);
    border-radius: 30px;
}

.stage-lights {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: repeating-linear-gradient(90deg, var(--fiesta-yellow) 0px, var(--fiesta-yellow) 20px, transparent 20px, transparent 40px);
    border-radius: 10px 10px 0 0;
    box-shadow: 0 -5px 15px rgba(255, 215, 61, 0.5);
}

.game-screen {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(255, 71, 87, 0.4);
    background: var(--gradient-primary);
    padding: 5px;
}

.game-screen img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    display: block;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.game-screen:hover .play-overlay {
    opacity: 1;
}

.play-btn {
    background: var(--gradient-primary);
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    color: white;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: inherit;
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

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

.btn-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-rainbow);
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.play-btn:hover .btn-glow {
    opacity: 1;
    animation: rainbowPulse 1s ease-in-out infinite;
}

.stage-curtains {
    position: absolute;
    top: 20px;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
}

.curtain {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 30px;
    background: linear-gradient(to right, var(--fiesta-red), var(--fiesta-purple));
    opacity: 0.3;
}

.curtain.left {
    left: 0;
    border-radius: 0 15px 15px 0;
}

.curtain.right {
    right: 0;
    border-radius: 15px 0 0 15px;
}

/* About Festival */
.about-festival {
    padding: 100px 0;
    background: linear-gradient(45deg, var(--bg-primary) 0%, var(--bg-accent) 50%, var(--bg-primary) 100%);
}

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

.festival-header h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.header-decoration {
    width: 100px;
    height: 4px;
    background: var(--gradient-rainbow);
    margin: 0 auto;
    border-radius: 2px;
}

.festival-tents {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tent {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0 0 20px 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.tent:hover {
    border-color: var(--fiesta-yellow);
    box-shadow: var(--shadow-glow);
    transform: translateY(-10px);
}

.tent-top {
    height: 30px;
    background: var(--gradient-secondary);
    position: relative;
    margin-bottom: 30px;
}

.tent-top::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid var(--fiesta-pink);
}

.tent-content {
    padding: 0 30px 30px;
}

.tent-content h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.tent-content p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.tent-content a {
    color: var(--fiesta-teal);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tent-content a:hover {
    color: var(--fiesta-yellow);
    text-shadow: 0 0 10px var(--fiesta-yellow);
}

/* Disclaimer Banner */
.disclaimer-banner {
    padding: 80px 0;
    background: var(--bg-secondary);
    border-top: 4px solid var(--fiesta-red);
    border-bottom: 4px solid var(--fiesta-red);
}

.banner-content {
    display: grid;
    grid-template-columns: auto 1fr 0.6fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.banner-icon {
    font-size: 60px;
    animation: pulse 2s infinite;
}

.banner-text h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--fiesta-red);
}

.disclaimer-points {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.point {
    background: rgba(255, 71, 87, 0.1);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid var(--fiesta-red);
    font-size: 16px;
    line-height: 1.6;
}

.banner-image {
    position: relative;
    /* max-width: 200px; */
}

.banner-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 15px;
}

.image-border {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--gradient-primary);
    border-radius: 20px;
    z-index: -1;
}

/* Contact Fiesta */
.contact-fiesta {
    padding: 100px 0;
    background: radial-gradient(ellipse at center, rgba(107, 207, 127, 0.1) 0%, var(--bg-primary) 70%);
}

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

.contact-header h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.contact-header p {
    font-size: 20px;
    color: var(--text-secondary);
}

.fiesta-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.fiesta-form::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-rainbow);
    border-radius: 25px;
    z-index: -1;
    opacity: 0.3;
    animation: rainbowPulse 4s ease-in-out infinite;
}

.form-decoration {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
}

.form-grid {
    display: grid;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 16px;
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    padding: 15px;
    border-radius: 10px;
    font-size: 16px;
    color: var(--text-primary);
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--fiesta-yellow);
    box-shadow: 0 0 20px rgba(255, 215, 61, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.fiesta-submit-btn {
    background: var(--gradient-primary);
    border: none;
    padding: 20px 40px;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 700;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: inherit;
    justify-self: center;
}

.fiesta-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.submit-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: sparkle 1.5s linear infinite;
}

.fiesta-submit-btn:hover .submit-sparkles {
    opacity: 1;
}

/* Badges Showcase */
.badges-showcase {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.badges-showcase h2 {
    text-align: center;
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 50px;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badges-display {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.badge-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.badge-frame:hover {
    border-color: var(--fiesta-yellow);
    box-shadow: var(--shadow-glow);
    transform: translateY(-5px);
}

.badge-frame img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

/* Footer Fiesta */
.footer-fiesta {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-accent) 100%);
    padding: 80px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer-fireworks {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    animation: fireworks 5s linear infinite;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

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

.footer-tagline {
    font-family: 'Fredoka', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.footer-disclaimer {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-fiesta h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

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

.newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    padding: 15px;
    border-radius: 10px;
    font-size: 16px;
    color: var(--text-primary);
    font-family: inherit;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--fiesta-yellow);
    box-shadow: 0 0 15px rgba(255, 215, 61, 0.3);
}

.newsletter-form button {
    background: var(--gradient-secondary);
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-fiesta);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--fiesta-yellow);
    text-shadow: 0 0 10px var(--fiesta-yellow);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.footer-celebration {
    font-size: 24px;
    margin-bottom: 15px;
    animation: bounce 2s infinite;
}

.footer-bottom p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
}

/* Hidden Class */
.hidden {
    display: none !important;
}

/* Animations */
@keyframes confettiFall {
    0% { transform: translateY(-100vh) rotate(0deg); }
    100% { transform: translateY(100vh) rotate(360deg); }
}

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

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

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes starSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes rainbowPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.02); }
}

@keyframes sparkle {
    0%, 100% { background-position: 0 0; }
    50% { background-position: 20px 20px; }
}

@keyframes fireworks {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-primary);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .zigzag-item {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .banner-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .festival-tents {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 10px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .feature-card,
    .tent-content {
        padding: 25px;
    }
    
    .fiesta-form {
        padding: 30px 20px;
        margin: 0 10px;
    }
    
    .badges-display {
        grid-template-columns: repeat(2, 1fr);
    }
}

.content {
    padding: 40px 10%;
}

.content-block {}
.page-title{
    text-align: center;
    color: var(--fiesta-orange);
}
.content-block h2 {
    color: var(--fiesta-orange);
}

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

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

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