/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Caveat:wght@400;700&family=Dancing+Script:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bangers&display=swap');

/* CSS Variables - Theme Colors */
:root {
    --bg-color: #FFEDD1;
    --accent-color: #50CEBB;
    --text-color: #9C7358;
    --text-box-color: #D3F3EE;
    --white: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.1);
    --heading-font: 'reklamescriptw00-medium', 'Pacifico', cursive;
    --subheading-font: 'Dancing Script', cursive;
    --accent-font: 'Caveat', cursive;

    /* Loader Variables */
    --loader-bg: #020202;
    --loader-accent: #60BDC6;
    --loader-text: #FAF9F6;
    --loader-drop-shadow: rgba(0, 0, 0, 0.55);
    --timeline: 5s;
    --slide-delay: 4.4s;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ======================================
   PAGE LOADER STYLES
   ====================================== */

.loader-stage {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background:
        radial-gradient(circle at 50% 35%, rgba(2, 2, 2, 0) 0%, rgba(48, 48, 48, 0.4) 42%, rgba(2, 2, 2, 0.88) 80%),
        var(--loader-bg);
    z-index: 10000;
    animation: fadeOutLoader 0.6s ease-out var(--slide-delay) forwards;
    pointer-events: none;
}

@keyframes fadeOutLoader {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

.machine-frame {
    position: relative;
    width: clamp(260px, 60vw, 481px);
    aspect-ratio: 481 / 892;
}

.machine-art {
    width: 100%;
    height: 100%;
    display: block;
    filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.4));
}

.animation-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.window-mask {
    position: absolute;
    top: 12.8%;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    height: 50%;
    overflow: hidden;
    border-radius: 18px;
}

.claw-rig {
    position: absolute;
    top: 0;
    left: 4%;
    width: clamp(70px, 18%, 110px);
    height: 100%;
    animation: clawHorizontal var(--timeline) ease-in-out forwards;
    z-index: 3;
}

.claw-cable {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(46px, 12vw, 68px);
    height: 34%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    animation: cableLength var(--timeline) ease-in-out forwards;
    z-index: 1;
}

.claw-cable::before {
    content: '';
    width: clamp(3px, 0.9vw, 5px);
    flex: 1 1 auto;
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.75) 0%, rgba(102, 156, 167, 0.55) 45%, rgba(10, 22, 30, 0.9) 100%);
    box-shadow:
        0 0 10px rgba(96, 189, 198, 0.32),
        inset 0 0 4px rgba(255, 255, 255, 0.4);
}

.claw-head {
    position: relative;
    width: 100%;
    height: clamp(46px, 12vw, 74px);
    z-index: 2;
}

.claw-shell {
    position: absolute;
    top: -18%;
    left: 50%;
    transform: translateX(-50%);
    width: 64%;
    height: 26%;
    background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(124,157,168,0.55), rgba(26,43,54,0.9));
    border-radius: 12px 12px 6px 6px;
    box-shadow:
        0 6px 12px rgba(0, 0, 0, 0.35),
        inset 0 3px 4px rgba(255, 255, 255, 0.6);
    z-index: 5;
}

.claw-palm {
    position: absolute;
    top: 32%;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 18%;
    background: linear-gradient(180deg, rgba(255,255,255,0.7), rgba(46,76,88,0.85));
    border-radius: 10px;
    box-shadow:
        inset 0 3px 6px rgba(255,255,255,0.45),
        inset 0 -3px 8px rgba(0,0,0,0.45);
    z-index: 3;
}

.claw-finger {
    position: absolute;
    bottom: 8%;
    width: 26%;
    height: 52%;
    background: linear-gradient(180deg, #b5c2c9 0%, #40525c 70%, #101820 100%);
    border-radius: 45% 45% 70% 70%;
    box-shadow:
        inset 0 4px 8px rgba(255,255,255,0.35),
        inset 0 -6px 12px rgba(0,0,0,0.5),
        0 4px 10px rgba(0,0,0,0.35);
    transform-origin: top center;
    z-index: 4;
}

.finger-left {
    left: 4%;
    animation: fingerLeft var(--timeline) ease-in-out forwards;
}

.finger-right {
    right: 4%;
    animation: fingerRight var(--timeline) ease-in-out forwards;
}

.finger-center {
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
    height: 48%;
    animation: fingerCenter var(--timeline) ease-in-out forwards;
}

.prize-floor {
    position: absolute;
    width: clamp(80px, 20vw, 120px);
    height: clamp(80px, 20vw, 120px);
    top: 66%;
    left: 73%;
    transform: translate(-50%, -50%);
    z-index: 2;
    animation: prizeFloorMotion var(--timeline) ease-in-out forwards;
}

.prize-floor img,
.claw-grab img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 16px 22px rgba(0,0,0,0.45));
}

.claw-grab {
    position: absolute;
    bottom: -6%;
    left: 50%;
    transform: translate(-50%, 0);
    width: clamp(70px, 18vw, 110px);
    height: clamp(70px, 18vw, 110px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: clawGrabMotion var(--timeline) ease-in-out forwards;
}

.neon-banner {
    font-family: 'Press Start 2P', monospace;
    font-size: clamp(18px, 4.5vw, 34px);
    color: var(--loader-accent);
    letter-spacing: 3px;
    text-shadow:
        0 0 6px rgba(96, 189, 198, 0.7),
        0 0 14px rgba(96, 189, 198, 0.6),
        0 0 28px rgba(96, 189, 198, 0.45),
        0 0 42px rgba(2, 2, 2, 0.9);
    text-align: center;
}

.loader-text {
    text-align: center;
    color: var(--loader-accent);
    font-family: 'Press Start 2P', monospace;
    font-size: clamp(14px, 3vw, 20px);
    letter-spacing: 2px;
    margin-top: 24px;
}

.loading {
    letter-spacing: 2px;
    animation: loaderPulse 1.2s ease-in-out infinite;
}

.dot {
    animation: loaderBlink 1.2s ease-in-out infinite;
}

.dot:nth-child(2) { animation-delay: 0.2s; }
.dot:nth-child(3) { animation-delay: 0.4s; }
.dot:nth-child(4) { animation-delay: 0.6s; }

.page-content {
    opacity: 0;
    transform: translateY(100vh);
    animation: pageReveal 0.9s ease-out var(--slide-delay) forwards;
}

/* Loader Animations */
@keyframes loaderPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

@keyframes loaderBlink {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 1; }
}

@keyframes clawHorizontal {
    0%, 20% {
        left: 4%;
    }
    30%, 55% {
        left: 62%;
    }
    70% {
        left: 40%;
    }
    80%, 100% {
        left: 8%;
    }
}

@keyframes cableLength {
    0%, 24% {
        height: 34%;
    }
    40%, 56% {
        height: 78%;
    }
    72% {
        height: 46%;
    }
    80%, 100% {
        height: 50%;
    }
}

@keyframes fingerLeft {
    0%, 24%, 70% {
        transform: rotate(12deg);
    }
    32%, 56% {
        transform: rotate(0deg);
    }
    80%, 100% {
        transform: rotate(18deg);
    }
}

@keyframes fingerRight {
    0%, 24%, 70% {
        transform: rotate(-12deg);
    }
    32%, 56% {
        transform: rotate(0deg);
    }
    80%, 100% {
        transform: rotate(-18deg);
    }
}

@keyframes fingerCenter {
    0%, 24%, 70% {
        transform: translateX(-50%) rotate(0deg);
    }
    32%, 56% {
        transform: translateX(-50%) rotate(-6deg);
    }
    80%, 100% {
        transform: translateX(-50%) rotate(4deg);
    }
}

@keyframes clawGrabMotion {
    0%, 32% {
        opacity: 0;
        transform: translate(-50%, 0) scale(0.92);
    }
    36%, 68% {
        opacity: 1;
        transform: translate(-50%, 0) scale(1);
    }
    74% {
        opacity: 1;
        transform: translate(-50%, -4%) scale(1.02);
    }
    80% {
        opacity: 1;
        transform: translate(-50%, -2%) scale(1);
    }
    82%, 100% {
        opacity: 0;
        transform: translate(-50%, 12%) scale(0.95);
    }
}

@keyframes prizeFloorMotion {
    0%, 32% {
        top: 66%;
        left: 73%;
        opacity: 1;
    }
    36%, 78% {
        opacity: 0;
        top: 66%;
        left: 73%;
    }
    82% {
        opacity: 1;
        top: 70%;
        left: 18%;
    }
    100% {
        opacity: 0;
        top: 118%;
        left: 20%;
    }
}

@keyframes pageReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ======================================
   END OF PAGE LOADER STYLES
   ====================================== */

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #50CEBB, #3BA89A);
    z-index: 9999;
    transition: width 0.1s ease-out;
}

/* Scroll Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade {
    opacity: 0;
    animation: fadeIn 0.6s ease-out forwards;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--text-color);
}

h1 {
    font-family: 'Bangers', var(--heading-font);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--text-color) 0%, #B8967C 50%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

h2 {
    font-family: 'Bangers', var(--heading-font);
    font-size: 3rem;
    margin-bottom: 0;
    text-align: center;
    font-weight: 400;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--text-color) 0%, #B8967C 50%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    position: relative;
}

/* Section Header Container */
.section-header {
    width: 100%;
    background-color: var(--text-box-color);
    padding: 1.5rem 0;
    margin: -1rem 0 2rem 0;
    position: relative;
    z-index: 10;
    border-top: 2px solid var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    box-shadow: 0 2px 10px rgba(80, 206, 187, 0.15);
}

.section-header::before,
.section-header::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.section-header::before {
    top: 0.5rem;
}

.section-header::after {
    bottom: 0.5rem;
}

section h2 {
    margin: 0;
    padding: 0;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

a {
    color: var(--accent-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Navigation */
#navbar {
    background-color: var(--text-box-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px var(--shadow);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Bangers', var(--heading-font);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--text-color);
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-image: url('hero.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    will-change: transform;
}

.hero-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 20px;
    z-index: 1;
}

.hero-text {
    background-color: rgba(255, 237, 209, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 700px;
    border: 3px solid var(--accent-color);
}

.hero-text h1 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), #3BA89A);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(80, 206, 187, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(80, 206, 187, 0.5);
    text-decoration: none;
}

.btn-primary:active {
    transform: translateY(-1px) scale(1.02);
}

.btn-secondary {
    background-color: var(--text-box-color);
    color: var(--text-color);
    border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--accent-color), #3BA89A);
    color: var(--white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(80, 206, 187, 0.4);
    text-decoration: none;
}

/* Section Banner Images */
.section-banner {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    overflow: hidden;
}

.section-banner:hover {
    transform: scale(1.05);
}

/* Mission Section */
.mission {
    padding: 0 0 4rem 0;
}

.mission .container {
    padding-top: 3rem;
}

.mission-content {
    margin-top: 2rem;
}

.mission-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    background: rgba(211, 243, 238, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    transform: translateZ(0);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 45%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0.1) 55%,
        transparent 100%
    );
    transform: rotate(45deg);
    pointer-events: none;
}

.feature:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 12px 40px rgba(80, 206, 187, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
}

.feature:hover::before {
    animation: sheen 1.5s ease-in-out;
}

@keyframes sheen {
    0% { transform: rotate(45deg) translate(-100%, -100%); }
    100% { transform: rotate(45deg) translate(100%, 100%); }
}

.feature h3 {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.feature:hover h3 {
    transform: scale(1.05);
}

.feature p {
    font-size: 0.95rem;
}

/* The Arcade Section */
.arcade {
    padding: 4rem 20px;
    background-color: var(--text-box-color);
}

.arcade-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.location-info, .hours-info {
    background-color: var(--bg-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
}

.location-info h3, .hours-info h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.address {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-info a {
    color: var(--text-color);
}

.getting-here h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.getting-here ul {
    list-style: none;
    padding-left: 0;
}

.getting-here li::before {
    content: "✓ ";
    color: var(--accent-color);
    font-weight: bold;
}

/* Hours Table */
.hours-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 0.5rem;
}

.hours-table tr {
    background-color: var(--white);
}

.hours-table td {
    padding: 1rem;
}

.hours-table .day {
    font-weight: 600;
    color: var(--text-color);
    border-radius: 5px 0 0 5px;
}

.hours-table .hours {
    text-align: right;
    color: var(--accent-color);
    font-weight: 500;
    border-radius: 0 5px 5px 0;
}

.hours-table .hours.closed {
    color: #E74C3C;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hours-table .note {
    font-size: 0.85rem;
    color: var(--text-color);
    font-style: italic;
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 20px;
}

.review-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.review-platform {
    text-align: center;
    background: rgba(211, 243, 238, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    min-width: 250px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    transform: translateZ(0);
    position: relative;
    overflow: hidden;
}

.review-platform::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 45%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0.1) 55%,
        transparent 100%
    );
    transform: rotate(45deg);
    pointer-events: none;
}

.review-platform:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow:
        0 12px 40px rgba(80, 206, 187, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(255, 255, 255, 0.3);
}

.review-platform:hover::before {
    animation: sheen 1.5s ease-in-out;
}

.review-platform h3 {
    margin-bottom: 1rem;
}

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
}

.stars {
    color: #FFC107;
    font-size: 1.5rem;
}

.score {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
}

.review-count {
    color: var(--text-color);
    font-size: 0.95rem;
}

.testimonial-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.carousel-container {
    background: rgba(211, 243, 238, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    min-height: 250px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.carousel-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 45%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0.1) 55%,
        transparent 100%
    );
    transform: rotate(45deg);
    pointer-events: none;
}

.carousel-container:hover {
    box-shadow:
        0 12px 40px rgba(80, 206, 187, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(255, 255, 255, 0.3);
}

.carousel-container:hover::before {
    animation: sheen 1.5s ease-in-out;
}

.testimonial {
    display: none;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testimonial.active {
    display: block;
    animation: fadeInSlide 0.6s ease-in-out forwards;
}

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

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-weight: 600;
}

.testimonial-author {
    font-weight: 600;
    color: var(--accent-color);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.carousel-btn:hover {
    background-color: var(--text-color);
}

.carousel-btn.prev {
    left: -70px;
}

.carousel-btn.next {
    right: -70px;
}

/* What to Expect Section */
.expect {
    padding: 0 0 4rem 0;
    background-color: var(--text-box-color);
}

.expect .container {
    padding-top: 3rem;
}
.expect-content {
    margin-top: 2rem;
}

.expect-details .intro {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.detail-box {
    background: rgba(255, 237, 209, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.detail-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 45%,
        rgba(255, 255, 255, 0.25) 50%,
        rgba(255, 255, 255, 0.1) 55%,
        transparent 100%
    );
    transform: rotate(45deg);
    pointer-events: none;
}

.detail-box:hover {
    transform: translateX(5px);
    box-shadow:
        0 10px 35px rgba(80, 206, 187, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        inset 0 -1px 0 rgba(255, 255, 255, 0.3);
}

.detail-box:hover::before {
    animation: sheen 1.5s ease-in-out;
}

.detail-box h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.detail-box ul {
    list-style: none;
    padding-left: 0;
}

.detail-box li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.detail-box li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.package {
    background-color: var(--white);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border: 2px solid var(--accent-color);
}

.package .price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.package .tokens {
    display: block;
    font-size: 0.95rem;
    color: var(--text-color);
}

.tips {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--bg-color) 100%);
    border: 3px solid var(--accent-color);
}

.tips h3 {
    color: var(--text-color);
}

/* FAQ Section */
.faq {
    padding: 4rem 20px;
}

.faq-list {
    max-width: 900px;
    margin: 2rem auto 0;
}

.faq-item {
    background-color: var(--text-box-color);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-color);
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: var(--bg-color);
}

.faq-question::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: transform 0.3s;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
    background-color: var(--bg-color);
}

.faq-answer.active {
    max-height: 500px;
    padding: 1.5rem;
}

/* Events Section */
.events {
    padding: 0 0 4rem 0;
    background-color: var(--text-box-color);
}

.events .container {
    padding-top: 3rem;
}
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.event-card {
    background: rgba(255, 237, 209, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-left: 5px solid var(--accent-color);
    transition: all 0.3s ease;
    transform: translateZ(0);
    position: relative;
    overflow: hidden;
}

.event-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 45%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0.1) 55%,
        transparent 100%
    );
    transform: rotate(45deg);
    pointer-events: none;
}

.event-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow:
        0 12px 40px rgba(80, 206, 187, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(255, 255, 255, 0.3);
    border-left-width: 8px;
}

.event-card:hover::before {
    animation: sheen 1.5s ease-in-out;
}

.event-card .event-date {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.event-card .event-time {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.event-card .event-description {
    font-size: 1rem;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 4rem 20px;
}

.contact-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-weight: 600;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    background-color: var(--text-box-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background-color: var(--white);
    color: var(--text-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--text-color);
}

.contact-info-box {
    background-color: var(--text-box-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
    align-self: start;
}

.contact-info-box h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.contact-info-box p {
    margin-bottom: 1.5rem;
}

.form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
}

.form-status.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-status.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer */
.footer {
    background-color: var(--text-box-color);
    padding: 3rem 20px 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-align: left;
}

.footer-section p {
    line-height: 1.8;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-links a {
    color: var(--text-color);
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--accent-color);
    color: var(--text-color);
}

.footer-bottom p {
    margin: 0.5rem 0;
}

.crafted-by {
    font-size: 0.95rem;
    margin-top: 0.75rem;
}

.crafted-by .daevara {
    color: #F5B841;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.crafted-by .daevara:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.footer-social-icons .social-icon {
    color: var(--text-color);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social-icons .social-icon:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-social-icons .social-icon svg {
    width: 28px;
    height: 28px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--text-box-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

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

    .nav-toggle {
        display: flex;
    }

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

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

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

    .expect-content {
    margin-top: 2rem;
}

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

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

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .review-stats {
        gap: 2rem;
    }

    .carousel-container {
        padding: 2rem 3rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

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

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}