/* --- CSS RESET & VARIABLES --- */
:root {
    --bg: #050505;
    --surface: #0f0f0f;
    --text-main: #e0e0e0;
    --text-muted: #666;
    --accent: #ccff00;
    --accent-hover: #b3e600;
    --border: rgba(255, 255, 255, 0.1);
    
    --font-head: 'Outfit', sans-serif;
    --font-mono: 'Space Mono', monospace;
    
    --pad-x: 5%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    color: var(--text-main);
    font-family: var(--font-head);
    overflow-x: hidden;
    line-height: 1.4;
}

/* NOISE TEXTURE */
.noise {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.05"/%3E%3C/svg%3E');
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
}

/* --- CUSTOM CURSOR --- */
.cursor {
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.cursor-follower {
    width: 40px; height: 40px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.1s;
}

/* --- NAVIGATION --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px var(--pad-x); /* Reduced padding slightly to fit logo better */
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

/* LOGO IMAGE STYLING */
.nav-logo {
    display: block;
    cursor: none;
}

.nav-logo img {
    height: 50px; /* Adjust this height if your logo is too big or small */
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-items {
    display: flex;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: 0.3s;
}

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

.nav-cta {
    background: var(--text-main);
    color: var(--bg);
    padding: 10px 20px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 2px;
    transition: 0.3s;
}

.nav-cta:hover { background: var(--accent); }

.menu-toggle, .mobile-menu { display: none; }

/* --- HERO SECTION --- */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 var(--pad-x);
    position: relative;
    border-bottom: 1px solid var(--border);
}

.hero-tag {
    font-family: var(--font-mono);
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 7rem);
    line-height: 0.9;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.reveal-text {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s forwards;
}

.reveal-text:nth-child(2) { animation-delay: 0.2s; }

.hero-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 500px;
}

.scroll-indicator {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.line { width: 40px; height: 1px; background: var(--text-muted); }

/* --- MARQUEE --- */
.marquee-strip {
    background: var(--accent);
    color: var(--bg);
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 1px solid var(--border);
}

.marquee-content {
    display: inline-block;
    font-weight: 800;
    font-size: 1.2rem;
    animation: scroll 30s linear infinite;
    font-family: var(--font-mono);
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* --- BENTO GRID (ABOUT) --- */
.bento-section, .pricing-section, .gallery-section, .contact-section {
    padding: 100px var(--pad-x);
    border-bottom: 1px solid var(--border);
}

.section-label {
    font-family: var(--font-mono);
    color: var(--accent);
    margin-bottom: 40px;
}

.bento-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 320px;
    gap: 20px;
}

.bento-box {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}

.bento-box:hover { border-color: var(--accent); }

.box-large {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.box-large h3 { font-size: 2.5rem; line-height: 1; text-transform: uppercase; }
.box-large p { color: var(--text-muted); max-width: 90%; }

.box-img { padding: 0; }
.box-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: 0.5s; }
.box-img:hover img { filter: grayscale(0%); transform: scale(1.1); }
.box-overlay {
    position: absolute; bottom: 10px; left: 10px;
    background: var(--accent); color: black;
    padding: 5px 10px; font-weight: bold; font-family: var(--font-mono); font-size: 0.8rem;
}

.box-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.list-label {
    font-family: var(--font-mono); 
    font-size: 0.8rem; 
    color: var(--accent); 
    margin-bottom: 15px; 
    display: block;
}
.box-list ul { list-style: none; padding-left: 0; }
.box-list li { margin-bottom: 8px; font-size: 0.95rem; color: var(--text-main); }
.box-list li::before { content: "› "; color: var(--accent); }

.box-stat {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--surface);
}

.box-stat.dark { background: var(--accent); color: black; }
.stat-num { font-size: 3rem; font-weight: 800; line-height: 1; }
.stat-label { font-family: var(--font-mono); font-size: 0.8rem; text-transform: uppercase; text-align: center;}

/* --- PRICING --- */
.section-heading {
    font-size: 4rem;
    line-height: 0.9;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.pricing-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 1fr;
    border-top: 1px solid var(--border);
    padding: 30px 0;
    align-items: center;
    transition: 0.3s;
}

.pricing-row:hover { background: rgba(255,255,255,0.02); padding-left: 20px; }
.pricing-row.highlight .game-type { color: var(--accent); }

.game-type { font-weight: 800; font-size: 1.5rem; }
.game-list { color: var(--text-muted); font-family: var(--font-mono); font-size: 0.9rem; line-height: 1.6; }
.price { font-size: 1.5rem; font-weight: 700; text-align: right; }
.price .per { font-size: 0.9rem; color: var(--text-muted); }

.book-btn {
    background: transparent;
    border: 1px solid var(--text-main);
    color: var(--text-main);
    padding: 10px 20px;
    margin-left: auto;
    display: block;
    font-family: var(--font-mono);
    transition: 0.3s;
}

.book-btn:hover { background: var(--text-main); color: black; }

/* --- GALLERY --- */
.gallery-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-card { position: relative; height: 300px; overflow: hidden; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: 0.5s; }
.gallery-card:hover img { filter: grayscale(0%); transform: scale(1.05); }

.cap {
    position: absolute; bottom: 0; left: 0;
    width: 100%; padding: 15px;
    background: rgba(0,0,0,0.85);
    font-family: var(--font-mono);
    border-top: 1px solid var(--accent);
    font-size: 0.8rem;
    transform: translateY(100%);
    transition: 0.3s;
    color: white;
}

.gallery-card:hover .cap { transform: translateY(0); }

/* --- CONTACT --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info .label { color: var(--accent); font-family: var(--font-mono); margin-bottom: 20px; }
.contact-info address { font-style: normal; font-size: 1.2rem; color: var(--text-main); line-height: 1.6; max-width: 400px; }
.big-link { display: block; font-size: 2.5rem; color: var(--text-main); text-decoration: none; margin-bottom: 30px; transition: 0.3s; font-weight: 800; }
.big-link:hover { color: var(--accent); }

.map-btn {
    display: inline-block;
    border-bottom: 1px solid var(--accent);
    color: var(--accent);
    text-decoration: none;
    padding-bottom: 5px;
    font-family: var(--font-mono);
}

.contact-form-wrapper {
    background: var(--surface);
    padding: 40px;
    border: 1px solid var(--border);
}

.form-header {
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
    margin-bottom: 30px;
    font-family: var(--font-mono);
    color: var(--text-muted);
}

.input-line { margin-bottom: 30px; }
.input-line label { display: block; font-family: var(--font-mono); font-size: 0.8rem; color: var(--accent); margin-bottom: 10px; }
.input-line input, .input-line textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #333;
    color: white;
    padding: 10px 0;
    font-size: 1.1rem;
    font-family: var(--font-head);
    outline: none;
    transition: 0.3s;
}

.input-line input:focus, .input-line textarea:focus { border-bottom-color: var(--accent); }

.submit-hex {
    width: 100%;
    background: var(--accent);
    border: none;
    padding: 15px;
    font-weight: 800;
    letter-spacing: 1px;
    transition: 0.3s;
}

.submit-hex:hover { background: white; }

#form-feedback { margin-top: 15px; font-family: var(--font-mono); font-size: 0.8rem; color: var(--accent); }

/* --- FOOTER --- */
footer { padding: 40px var(--pad-x); border-top: 1px solid var(--border); }
.footer-content { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 0.8rem; color: var(--text-muted); }

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .nav-items, .nav-cta { display: none; }
    .menu-toggle { display: block; font-family: var(--font-mono); cursor: pointer; color: var(--accent); }
    
    .mobile-menu {
        position: fixed; top: 0; left: 0; width: 100%; height: 100%;
        background: var(--bg); z-index: 2000;
        display: flex; flex-direction: column;
        justify-content: center; align-items: center;
        gap: 30px;
        transform: translateX(100%); transition: 0.3s;
    }
    
    .mobile-menu.active { transform: translateX(0); }
    .mobile-menu a { color: white; font-size: 2rem; text-decoration: none; font-weight: 800; }
    .close-menu { color: var(--accent); font-family: var(--font-mono); cursor: pointer; margin-top: 50px; }

    .bento-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .pricing-row { grid-template-columns: 1fr; gap: 10px; text-align: left; }
    .pricing-row .price { text-align: left; margin: 10px 0; }
    .contact-grid { grid-template-columns: 1fr; }
    
    .cursor, .cursor-follower { display: none; } /* Disable custom cursor on mobile */
    * { cursor: auto; }
    
    .section-heading { font-size: 2.5rem; }
}