/* ==========================================================
   FONTS + BASE
========================================================== */
:root {
    --accent1: #8a2eff;
    /* Purple */
    --accent2: #00eaff;
    /* Cyan */
    --muted: #bdbac7;
    --bg-dark: #05050a;
    --card-bg: #0d0a14;
    --card-border: rgba(255, 255, 255, 0.06);
    --glow-color: rgba(138, 46, 255, 0.4);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* NEW: GAMING TRON WIREFRAME GRID EFFECT */
body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-dark);
    color: white;
    overflow-x: hidden;
    scroll-behavior: smooth;
    /* TRON Grid Effect (2 Overlapping Diagonal Grids for depth and movement) */
    background-image:
        /* Layer 1: Diagonal Grid 1 (Cyan) */
        linear-gradient(45deg, rgba(0, 234, 255, 0.15) 1px, transparent 1px, transparent 50px),
        /* Layer 2: Diagonal Grid 2 (Purple) - Offset for depth */
        linear-gradient(-45deg, rgba(138, 46, 255, 0.1) 1px, transparent 1px, transparent 50px),
        /* Layer 3: Dark Overlay (Ensures text readability) */
        linear-gradient(var(--bg-dark), var(--bg-dark));
    background-size: 50px 50px, 50px 50px, 100% 100%;
    /* Animation: Slow, continuous, subtle movement */
    animation: grid-flow 30s linear infinite;
}
@keyframes grid-flow {
    0% {
        background-position: 0 0, 0 0, 0 0;
    }
    100% {
        /* Moves the two grid layers subtly in opposite directions */
        background-position: 50px 50px, -50px 50px, 0 0;
    }
}
/* ==========================================================
   NAVIGATION
========================================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 16px 32px;
    background: rgba(10, 8, 20, 0.55);
    backdrop-filter: blur(14px);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    /* Added shadow for lift */
}
.nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.logo {
    height: 46px;
}
.brand,
.tagline {
    text-transform: uppercase;
    color: #FFDD00;
    font-weight: 300;
    text-align: center;
}
.brand {
    font-size: 18px;
    padding-bottom: 3px;
}
.tagline {
    font-size: 10px;
    color: var(--muted);
    padding-top: 3px;
    border-top: 1px solid #FFDD00;
}
.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 22px;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 15px;
    font-weight: 300;
    position: relative;
    transition: color 0.2s;
}
.nav-links a:hover {
    color: var(--accent2);
}
.nav-links a:hover::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--accent2);
    left: 0;
    bottom: -4px;
}
/* ==========================================================
   HERO SECTION
========================================================== */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: #090716;
}
/* FALLBACK STATIC BG */
.hero-fallback {
    position: absolute;
    inset: 0;
    background: url("../images/hero_fallback.png") center/cover no-repeat;
    z-index: 0;
    filter: brightness(0.7);
}
/* BG VIDEO */
#heroVideo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(.8);
}
/* DARK GRADIENT OVERLAY */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(5, 5, 12, 0.92));
    z-index: 2;
}
/* HERO CONTENT */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    margin-top: 160px;
    max-width: 900px;
    padding: 20px;
    margin-left: auto;
    margin-right: auto;
}
/* SLIDER CONTAINER: FIXED HEIGHT FOR NO JUMPING + SMOOTH TRANSITION */
.slider-text-container {
    height: 220px;
    /* Fixed height accommodating 3 lines of text */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease-in-out;
    /* Smooth fade effect */
}
.badge {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent2);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
}
.badge img {
    width: 120px;
    height: auto;
}
/* SLIDER TITLES */
.hero-title {
    font-size: 50px;
    font-weight: 300;
    background: linear-gradient(90deg, #b084ff, #8a2eff, #00eaff);
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    /*min-height: 125px;*/
    /* Ensure space for one line */
}
.hero-sub {
    color: var(--muted);
    font-family: "Roboto Condensed", sans-serif;
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 24px;
    min-height: 50px;
    /* Ensure space for two lines */
    line-height: 1.25;
}
/* Social Promo Text */
.social-promo-text {
    color: var(--accent2);
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0, 234, 255, 0.6);
    animation: pulseGlow 1.5s infinite alternate;
}
.social-promo-text strong {
    color: #FFDD00;
}
@keyframes pulseGlow {
    from {
        opacity: 0.8;
    }
    to {
        opacity: 1;
    }
}
/* SLIDER DOTS */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}
.slider-dots span {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s;
}
.slider-dots span.active {
    background: white;
    transform: scale(1.2);
    box-shadow: 0 0 8px var(--accent1);
}
/* HERO BUTTONS (MODIFIED TO STACK VERTICALLY BY COLUMN) */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 25px;
    flex-direction: column;
    /* Force vertical stacking on all devices */
    align-items: center;
    /* Center the buttons */
}
.btn-primary,
.btn-secondary,
.btn-tournament {
    width: 100%;
    /* Make buttons full width in the column layout */
    max-width: 400px;
    /* Limit max width for desktop view */
    padding: 14px 22px;
    border-radius: 10px;
    color: white;
    font-weight: 400;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
}
.btn-primary {
    background: linear-gradient(90deg, #a65bff, #8a2eff);
}
.btn-tournament {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a3d1a 45%, #00c853 100%);
    color: #ffffff;
    font-weight: 600;
    border: 2px solid #39ff14;
    box-shadow: 0 0 18px rgba(57, 255, 20, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.btn-tournament:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #111 0%, #2e7d32 40%, #00e676 100%);
    border-color: #76ff03;
    box-shadow: 0 6px 28px rgba(0, 230, 118, 0.65), 0 0 24px rgba(57, 255, 20, 0.35);
    color: #fff;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(138, 46, 255, 0.6);
}
.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}
.btn-secondary.btn-WA {
    background: #25d366;
    color: #ffffff;
    font-weight: 600;
    border: none;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.5);
}
.btn-secondary.btn-WA:hover {
    transform: translateY(-2px);
    background: #1ebe57;
    border: none;
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.65);
    color: #ffffff;
}
/* SOCIAL ICONS */
.social-wap {
    padding-top: 50px;
}
.social-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
}
.social-icons img {
    width: 40px;
    opacity: 0.85;
    transition: 0.2s;
}
.social-icons img:hover {
    opacity: 1;
    transform: scale(1.12);
    filter: drop-shadow(0 0 10px var(--accent2));
    /* Glow on hover */
}
/* ==========================================================
   SECTIONS & CARD STYLING (The "WOW" Improvements)
========================================================== */
.section {
    width: 92%;
    max-width: 1100px;
    margin: 80px auto 0;
    padding: 30px 0;
    border-radius: 10px;
}
.section h2 {
    font-size: 38px;
    font-weight: 400;
    background: linear-gradient(90deg, #a65bff, #00d6ff);
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 30px;
    text-align: center;
    font-family: "Roboto Condensed", sans-serif;
    text-shadow: 0 0 10px rgba(138, 46, 255, 0.2);
}
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}
.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 24px;
    border-radius: 14px;
    transition: 0.3s ease-out;
    position: relative;
    overflow: hidden;
    /* Inner dimension and subtle glow */
    box-shadow: inset 0 0 10px rgba(138, 46, 255, 0.1), 0 5px 15px rgba(0, 0, 0, 0.4);
}
.card:hover {
    transform: translateY(-7px) scale(1.02);
    border-color: var(--accent1);
    box-shadow: inset 0 0 15px rgba(138, 46, 255, 0.2), 0 15px 35px rgba(138, 46, 255, 0.3);
}
.card h3 {
    font-size: 22px;
    background: linear-gradient(90deg, #a65bff, #00d6ff);
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 10px;
    font-weight: 600;
    font-family: "Roboto Condensed", sans-serif;
}
.card p {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: var(--muted);
    line-height: 1.6rem;
}
.card-gifts {
    margin-top: 20px;
}
/* Highlight “featured” card - with a subtle pulse animation */
.featured {
    border: 2px solid var(--accent1);
    box-shadow: 0 0 20px rgba(138, 46, 255, 0.4);
    animation: subtlePulse 3s infinite ease-in-out;
}
@keyframes subtlePulse {
    0% {
        border-color: var(--accent1);
        box-shadow: 0 0 20px rgba(138, 46, 255, 0.3);
    }
    50% {
        border-color: var(--accent2);
        box-shadow: 0 0 25px rgba(0, 234, 255, 0.3);
    }
    100% {
        border-color: var(--accent1);
        box-shadow: 0 0 20px rgba(138, 46, 255, 0.3);
    }
}
/* --- Thematic Creativity --- */
/* Gaming Section - Iconography */
.gaming-creative .card:before {
    font-size: 70px;
    opacity: 0.1;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}
.gaming-creative .card-console:before {
    content: '🎮';
}
.gaming-creative .card-vr:before {
    content: '🕶️';
}
.gaming-creative .card-tournament:before {
    content: '🏆';
}
.gaming-creative .card-social:before {
    content: '☕';
}
/* Beverages Section - Energy Grid Effect */
.drinks-vending .card {
    border: 1px solid var(--accent2);
    /* Blue border for contrast */
    box-shadow: inset 0 0 10px rgba(0, 234, 255, 0.2);
    background-image: linear-gradient(0deg, #0d0a14 50%, #080510 100%);
}
/* This is the cool, different background requested */
.drinks-vending .card-vending {
    background-image: repeating-linear-gradient(45deg,
            rgba(0, 234, 255, 0.05),
            rgba(0, 234, 255, 0.05) 10px,
            transparent 10px,
            transparent 20px);
}
/* T-Shirt Section - Fabric/Layered Look */
.tshirt-design .card {
    border-left: 5px solid var(--accent1);
}
.tshirt-design .card-custom h3 {
    color: white;
    -webkit-background-clip: border-box;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}
/* Rentals Section - Gold Accents for Premium Service */
.rentals-events .card {
    border: 1px solid #FFDD00;
    box-shadow: inset 0 0 10px rgba(255, 221, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.4);
}
.rentals-events .card h3 {
    background: linear-gradient(90deg, #FFDD00, #b084ff);
    -webkit-background-clip: text;
    color: transparent;
}
/* ==========================================================
   CONTACT
========================================================== */
.contact .hero-fallback {
    filter: brightness(0.3);
}
.contact .hero-sub {
    line-height: 1.5;
    color: #fff;
}
.contact .hero-sub strong {
    color: #FFDD00;
    font-weight: 400;
}
.contact .social-wap {
    padding-top: 0;
    background: none;
}
.contact .register-section {
    margin-top: 0;
    position: relative;
    z-index: 1;
}
/* ==========================================================
   BOOK SLOT CTA
========================================================== */
.register-section {
    width: 92%;
    max-width: 900px;
    margin: 120px auto;
    background: #100a16;
    padding: 34px;
    border-radius: 16px;
    border: 1px solid var(--accent1);
    text-align: center;
    box-shadow: 0 0 30px rgba(138, 46, 255, 0.2);
}
.register-section h2 {
    text-align: center;
    margin-bottom: 12px;
}
.form-note {
    text-align: center;
    color: var(--muted);
    margin-bottom: 30px;
    font-size: 16px;
}
.btn-book-slot {
    display: inline-block;
    width: auto;
    max-width: 400px;
    padding: 16px 30px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(90deg, #a65bff, #00eaff);
    color: var(--bg-dark);
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    max-width: 400px;
}
.btn-book-slot:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 234, 255, 0.5);
    color: white;
}
/* ==========================================================
   FOOTER (NEW SIMPLE STRUCTURE)
========================================================== */
footer {
    background: #000000;
    padding: 30px 32px;
    margin-top: 100px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1;
    position: relative;
}
.footer-simple-content {
    display: flex;
    flex-direction: column;
    /* Stack vertically for the required order */
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    gap: 20px;
    /* Space between logo, icons, and legal */
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    /* Space above icons */
}
.footer-logo .brand {
    font-size: 18px;
    border: none;
    padding: 0;
}
.footer-social-icons {
    display: flex;
    gap: 14px;
    margin-bottom: 10px;
    padding-left: 20px;
    /* Space below icons */
}
.footer-social-icons img {
    width: 35px;
    /* Slightly larger icons */
    opacity: 0.8;
    transition: 0.2s;
}
.footer-social-icons img:hover {
    opacity: 1;
    filter: drop-shadow(0 0 8px var(--accent1));
    transform: scale(1.1);
}
.footer-legal {
    color: #3d3d3d;
    font-size: 13px;
    line-height: 1.6;
    padding-bottom: 50px;
}
.footer-legal .qr {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    padding-bottom: 20px;
}
.footer-legal .qr img.qr_img {
    width: 200px;
    height: 200px;
}
.footer-legal .qr p {
    padding-bottom: 20px;
    font-size: 15px;
    font-family: "Roboto Condensed", sans-serif;
    color: #fff;
    padding-left: 20px;
    text-align: left;
}
.footer-legal .qr p span {
    font-size: 20px;
    color: #FFDD00;
}
.legal-links {
    margin-top: 5px;
    display: inline;
}
.legal-links a {
    color: #3d3d3d;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}
.legal-links a:hover {
    color: var(--accent2);
}
.legal-links span {
    margin: 0 8px;
}
/* ==========================================================
   RESPONSIVE
========================================================== */
@media (max-width: 900px) {
    .slider-text-container {
        /*height: 160px;*/
        /* Adjust height for smaller screens if needed */
    }
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero-title {
        font-size: 40px;
    }
    .hero-sub {
        font-size: 18px;
    }
    .section h2 {
        font-size: 30px;
    }
}
@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    .slider-text-container {
        height: 140px;
    }
    .hero-sub {
        font-size: 16px;
    }
    .social-promo-text {
        font-size: 16px;
    }
}