/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #030407;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(90deg, rgba(5, 5, 5, 0.86), rgba(5, 5, 5, 0.46), rgba(5, 5, 5, 0.9)),
        url('../assets/71E05125-382E-4A34-9BD0-F90E02BF59E2.png');
    background-size: cover;
    background-position: center;
    opacity: 0.6;
}

#hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, transparent 0%, var(--v-bg) 78%),
        linear-gradient(180deg, rgba(5,5,5,0.12), rgba(5,5,5,0.86));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 100%;
    padding-top: 15px; /* Minimal padding */
}

.hero-elements {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.8;
}

.floating-controller {
    width: 600px;
    max-width: 80vw;
    filter: drop-shadow(0 0 30px rgba(0, 242, 255, 0.3));
    animation: floatController 6s ease-in-out infinite;
}

@keyframes floatController {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

.hero-title {
    display: none; /* Replaced by stack */
}

.hero-title-stack {
    margin: 15px 0; /* Minimal margin */
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 0.88;
    position: relative;
}

.hero-main-line {
    font-size: clamp(3rem, 11vw, 7.2rem); /* Aggressively reduced for 1080p fold */
    font-family: 'Rajdhani', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 10px 25px rgba(0, 0, 0, 0.6), 0 0 15px var(--v-blue-glow);
    letter-spacing: -2px;
    margin: 0;
    position: relative;
    z-index: 2;
}

.hero-main-line.text-glow-red {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3), 0 0 40px var(--v-red-glow);
}

/* Decorative Orbital Rings */
.hero-content::before, .hero-content::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.hero-content::before, .hero-content::after {
    display: none !important; /* Remove cluttered rings on PC for clean view */
}
@media (max-width: 768px) {
    .hero-content::before, .hero-content::after {
        display: block !important;
    }
}

@keyframes rotateRing {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@media (max-width: 768px) {
    .hero-main-line { font-size: clamp(3.5rem, 22vw, 6rem); }
    .hero-content::before { width: 400px; height: 400px; }
    .hero-content::after { width: 350px; height: 350px; }
}

.hero-desc {
    max-width: 800px;
    margin: 5px auto 20px;
    font-size: clamp(0.7rem, 1vw, 0.85rem);
    color: var(--v-text-dim);
    letter-spacing: 3px;
    font-weight: 600;
}

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 15px;
}

.hero-btns .btn {
    min-width: 260px;
    justify-content: center;
    display: flex;
    align-items: center;
    letter-spacing: 2px;
}

.hero-footer-bar {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    border-top: 1px solid var(--v-border);
    z-index: 10;
}

.bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Rajdhani';
    font-weight: 700;
    letter-spacing: 5px;
    font-size: clamp(0.8rem, 2vw, 1.2rem);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.6;
    z-index: 3;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--v-text);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 8px;
    background: var(--v-blue);
    left: 50%;
    transform: translateX(-50%);
    top: 7px;
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

/* --- HIGHLIGHTS BAR --- */
.highlights-bar {
    background: var(--v-blue);
    padding: 15px 0;
    display: flex;
    white-space: nowrap;
    overflow: hidden;
    color: var(--v-bg);
    font-weight: 800;
    font-family: 'Rajdhani';
    font-size: 14px;
    letter-spacing: 2px;
}

.highlight-item {
    padding: 0 50px;
    position: relative;
}

.highlight-item::after {
    content: '/';
    position: absolute;
    right: 0;
    opacity: 0.3;
}

/* --- GAMING ZONES --- */
.section-header {
    margin-bottom: 60px;
    text-align: center;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.zones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.zone-card {
    background: var(--v-card-bg);
    border: 1px solid var(--v-border);
    border-radius: 15px;
    padding: 30px;
    transition: var(--transition-base);
    backdrop-filter: var(--glass);
    position: relative;
    overflow: hidden;
}

.zone-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--v-blue), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
}

.zone-card:hover {
    border-color: var(--v-blue);
    transform: translateY(-10px);
}

.zone-card:hover::before {
    transform: translateX(100%);
}

.zone-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    margin-bottom: 20px;
}

.zone-info h3 { margin-bottom: 10px; }
.zone-info p { color: var(--v-text-dim); font-size: 0.9rem; margin-bottom: 15px; }

.pricing-list {
    margin: 15px 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.price-row span:first-child {
    font-family: 'Rajdhani';
    font-weight: 700;
    color: var(--v-blue);
    letter-spacing: 1px;
}

.price-row span:last-child {
    color: var(--v-text);
}

.offer-tag {
    background: rgba(255, 0, 60, 0.08);
    color: var(--v-red);
    padding: 10px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    font-family: 'Rajdhani';
    text-align: center;
    border: 1px solid rgba(255, 0, 60, 0.2);
    margin-top: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* --- PRIVATE LOUNGE TEASER --- */
.private-lounge-teaser {
    background: linear-gradient(to right, #000, #111, #000);
    padding: 150px 0;
    margin: 100px 0;
    border-top: 1px solid var(--v-red);
    border-bottom: 1px solid var(--v-red);
    text-align: center;
    position: relative;
}

.badge {
    background: var(--v-red);
    color: white;
    padding: 5px 15px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: inline-block;
}

/* --- COZYAN BRIDGE --- */
.bridge-card {
    background: var(--c-bg);
    border-radius: 20px;
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
    color: var(--c-text);
}

.bridge-text h2 { font-size: 3rem; color: var(--c-brown); }
.bridge-img {
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
}

/* --- INSTAGRAM GRID --- */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

.insta-card {
    aspect-ratio: 1;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition-base);
    background-size: cover;
    background-position: center;
}

@media (max-width: 768px) {
    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

.insta-card:hover { opacity: 0.7; }

/* --- LOCATION --- */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: var(--v-card-bg);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid var(--v-border);
}

.map-placeholder {
    background: #111;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    color: var(--v-text);
    text-align: center;
    border: 1px solid var(--v-border);
    overflow: hidden;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

/* --- MOBILE --- */
/* --- ANIMATIONS --- */
.fade-in { opacity: 0; transform: translateY(20px); }
.reveal-text { clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%); }

@media (max-width: 768px) {
    .hero-title { font-size: 4rem; }
    .floating-controller { width: 300px; }
    .hero-btns { flex-direction: column; }
    .hero::before {
        background:
            linear-gradient(180deg, rgba(5,5,5,0.82), rgba(5,5,5,0.9)),
            url('../assets/photo-output(4).png');
        background-size: cover;
        background-position: center top;
    }
    .bridge-card { grid-template-columns: 1fr; text-align: center; }
    .location-grid { grid-template-columns: 1fr; }
    .mobile-booking-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: var(--v-blue);
        z-index: 1001;
        display: block;
    }
    .mobile-booking-cta a {
        display: block;
        padding: 20px;
        text-align: center;
        color: var(--v-bg);
        font-weight: 800;
        font-family: 'Rajdhani';
    }
    .section-padding { padding: 60px 0; }
    .insta-grid { padding: 0 10px; }
    .location-info { text-align: center; }
    .location-info .contact-item { justify-content: center; }
    .location-section .btn { width: 100%; }
}
