/* ===== CSS VARIABLES ===== */
/* Hide empty club tags */
.club-tag:empty {
    display: none;
}

:root {
    --color-bg: #0a0a0a;
    --color-bg-light: #141414;
    --color-bg-card: #1a1a1a;
    --color-gold: #c9a84c;
    --color-gold-light: #d4b85c;
    --color-gold-dark: #a8872e;
    --color-green: #2ecc71;
    --color-white: #ffffff;
    --color-white-soft: #e0e0e0;
    --color-gray: #888888;
    --color-gray-dark: #333333;
    --font-display: 'Great Vibes', cursive;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Subtle ambient glow */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(201, 168, 76, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

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

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

.section {
    position: relative;
    padding: 100px 0;
    z-index: 1;
}

/* ===== TOP SOCIAL BAR ===== */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    background: rgba(20, 20, 20, 0.95);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    padding: 6px 0;
    backdrop-filter: blur(10px);
}

.top-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar-left span {
    font-size: 0.7rem;
    color: var(--color-gray);
    letter-spacing: 1px;
}

.top-bar-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-social-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 3px 12px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.top-social-link svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.top-social-whatsapp {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.top-social-whatsapp:hover {
    background: #25d366;
    color: white;
}

.top-social-instagram {
    background: rgba(225, 48, 108, 0.15);
    color: #e1306c;
    border: 1px solid rgba(225, 48, 108, 0.3);
}

.top-social-instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    border-color: transparent;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 30px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    top: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

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

.logo {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--color-gold);
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    white-space: nowrap;
    margin-right: 20px;
}

.logo:hover {
    color: var(--color-gold-light);
    text-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    margin-right: 20px;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-white-soft);
    transition: var(--transition-smooth);
    position: relative;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--color-gold);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Dropdown Menu Styles */
.nav-item-dropdown {
    position: relative;
    padding-bottom: 20px;
    /* Bridge gap for hover */
    margin-bottom: -20px;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    /* Align slightly left */
    background: var(--color-bg-card);
    min-width: 220px;
    padding: 10px 0;
    border-radius: 8px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    /* Ensure no bullets */
    display: flex;
    /* Use flex column */
    flex-direction: column;
}

.dropdown-item {
    padding: 12px 20px;
    display: block;
    color: var(--color-white-soft);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: rgba(201, 168, 76, 0.1);
    color: var(--color-gold);
    padding-left: 25px;
    /* Slight movement on hover */
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.social-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 12px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.social-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.social-btn span {
    white-space: nowrap;
}

.social-whatsapp {
    background: #25d366;
    color: white;
}

.social-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.social-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.social-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.4);
    filter: brightness(1.1);
}

.nav-cta {
    display: inline-block;
    background: var(--color-gold);
    border: none;
    color: var(--color-bg);
    padding: 10px 16px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.nav-cta:hover {
    background: var(--color-gold-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    position: relative;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--color-gold);
    transition: var(--transition-smooth);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
    /* Unified height with outline buttons */
    text-align: center;
    min-height: 48px;
    /* Standardize button height */
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: var(--color-bg);
    border: 1px solid transparent;
    /* Ensure same box-sizing as outline */
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    transition: left 0.4s ease;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary span,
.btn-primary {
    position: relative;
    z-index: 1;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(201, 168, 76, 0.5);
    color: var(--color-gold);
}

.btn-outline:hover {
    border-color: var(--color-gold);
    background: rgba(201, 168, 76, 0.1);
}

.btn-large {
    padding: 18px 48px;
    font-size: 0.9rem;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        url('images/clubs/opium.webp') center/cover no-repeat;
}

/* Step Video Container (for experience cards) */
.step-video {
    position: relative;
    overflow: hidden;
}

.step-video-container {
    position: relative;
    width: 100%;
    height: 350px;
    border-radius: 16px;
    overflow: hidden;
    background: #0a0a0a;
}

.step-video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
    object-fit: cover;
}

/* YouTube lite embed */
.yt-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    cursor: pointer;
}

.yt-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
    opacity: 0.9;
}

.yt-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}

.yt-play-btn.hidden,
.yt-thumb.hidden {
    display: none;
}

#yt-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#yt-player iframe {
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.6) 50%, rgba(10, 10, 10, 0.95) 100%),
        linear-gradient(to right, rgba(10, 10, 10, 0.3), transparent, rgba(10, 10, 10, 0.3));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 900px;
}

.hero-free-badge {
    display: inline-block;
    background: rgba(46, 204, 113, 0.15);
    border: 1px solid var(--color-green);
    color: var(--color-green);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 24px;
    border-radius: 50px;
    margin-bottom: 28px;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.2);
    }

    50% {
        box-shadow: 0 0 20px 5px rgba(46, 204, 113, 0.15);
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--color-white);
}

.hero-title-line {
    display: block;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: var(--color-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--color-white-soft);
}

.hero-trust-item svg {
    color: var(--color-green);
    flex-shrink: 0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.hero-scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--color-gold);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(0.5);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* ===== FREE ENTRY BANNER ===== */
.free-banner {
    position: relative;
    z-index: 1;
    padding: 0;
}

.free-banner-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.08), rgba(201, 168, 76, 0.08));
    border: 1px solid rgba(46, 204, 113, 0.2);
    border-radius: 12px;
    padding: 20px 30px;
    margin: -40px auto 0;
    max-width: 800px;
    position: relative;
    z-index: 10;
}

.free-banner-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--color-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.free-banner-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.free-banner-text {
    font-size: 0.9rem;
    color: var(--color-white-soft);
    line-height: 1.5;
}

.free-banner-text strong {
    color: var(--color-green);
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--color-gold);
    margin: 16px auto 0;
}

.section-subtitle {
    font-size: 0.9rem;
    color: var(--color-gray);
    letter-spacing: 2px;
    margin-top: 12px;
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* ===== SECTION EYEBROW ===== */
.section-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 12px;
}

/* ===== EXPERIENCE SECTION ===== */
.experience-section {
    background: var(--color-bg);
    padding-top: 120px;
}

.experience-timeline {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.experience-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 700;
    color: rgba(201, 168, 76, 0.04);
    /* Reduced from 0.07 to be even more subtle */
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

.step-reverse .step-number {
    left: auto;
    right: -10px;
}

.step-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    z-index: 1;
}

.step-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.6s ease;
}

.experience-step:hover .step-image img {
    transform: scale(1.03);
}

.step-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 1px solid rgba(201, 168, 76, 0.15);
    pointer-events: none;
}

.step-content {
    position: relative;
    z-index: 1;
}

.step-time {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.step-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--color-white);
}

.step-content p {
    font-size: 0.95rem;
    color: var(--color-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.step-perks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.step-perks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--color-white-soft);
}

.step-perks li svg {
    color: var(--color-green);
    flex-shrink: 0;
}

/* Step image badge */
.step-image-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--color-green);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    z-index: 2;
}

/* Before perks grid */
.before-perks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 4px;
}

.before-perk {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(201, 168, 76, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 10px;
    padding: 12px 14px;
    transition: var(--transition-smooth);
}

.before-perk:hover {
    background: rgba(201, 168, 76, 0.12);
    border-color: rgba(201, 168, 76, 0.25);
    transform: translateY(-2px);
}

.before-perk-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.before-perk span:last-child {
    font-size: 0.82rem;
    color: var(--color-white-soft);
    font-weight: 500;
}

/* Step transition connector */
.step-transition {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 0;
}

.step-transition-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.3), transparent);
}

.step-transition-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    text-align: center;
}

.step-reverse .step-image {
    order: 2;
}

.step-reverse .step-content {
    order: 1;
}

/* ===== CLUBS SECTION ===== */
.clubs-section {
    background: var(--color-bg-light);
}

.clubs-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.club-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--color-bg-card);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.club-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(201, 168, 76, 0.15);
}

.club-card-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.club-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.club-card:hover .club-card-image img {
    transform: scale(1.08);
}

.club-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 12px;
}

.club-rank {
    background: var(--color-gold);
    color: var(--color-bg);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
}

.club-free-tag {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--color-green);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    z-index: 2;
}

.club-card-info {
    padding: 16px;
}

.club-card-info h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.club-card-info p {
    font-size: 0.8rem;
    color: var(--color-gray);
}

/* ===== VIP SECTION ===== */
.vip-section {
    background: var(--color-bg);
}

.vip-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.vip-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--color-bg-card);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.vip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(201, 168, 76, 0.1);
}

.vip-card-large {
    grid-column: 1;
    grid-row: 1 / 3;
}

.vip-card-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 250px;
    overflow: hidden;
}

.vip-card-large .vip-card-image {
    height: 100%;
}

.vip-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.vip-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, transparent 100%);
}

.vip-badge {
    display: inline-block;
    background: var(--color-gold);
    color: var(--color-bg);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 2px;
    margin-bottom: 10px;
}

.vip-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.vip-card-content p {
    font-size: 0.85rem;
    color: var(--color-white-soft);
    opacity: 0.8;
}

/* ===== EVENT SECTION ===== */
.event-section {
    position: relative;
    padding: 140px 0;
    text-align: center;
    overflow: hidden;
}

.event-bg {
    position: absolute;
    inset: 0;
    background:
        url('https://images.unsplash.com/photo-1492684223066-81342ee5ff30?w=1920&h=800&fit=crop') center/cover no-repeat;
    opacity: 0.15;
}

.event-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--color-bg), transparent, var(--color-bg));
}

.event-content {
    position: relative;
    z-index: 1;
}

.event-date {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
    padding: 8px 24px;
    margin-bottom: 30px;
}

.event-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 7rem);
    color: var(--color-gold);
    margin-bottom: 5px;
    line-height: 1;
}

.event-tagline {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--color-white-soft);
    margin-bottom: 24px;
}

.event-description {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 0.95rem;
    color: var(--color-gray);
    line-height: 1.8;
}

.event-details {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.event-detail {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.detail-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
}

.detail-label {
    font-size: 0.8rem;
    color: var(--color-gray);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 8px;
}

/* ===== BLOG SECTION ===== */
.blog-section {
    background: var(--color-bg-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--color-bg-card);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(201, 168, 76, 0.15);
}

.blog-card-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.06);
}

.blog-category {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--color-gold);
    color: var(--color-bg);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 4px;
}

.blog-card-body {
    padding: 24px;
}

.blog-card-body time {
    font-size: 0.75rem;
    color: var(--color-gray);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.blog-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 10px 0 12px;
    color: var(--color-white);
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card-body h3 {
    color: var(--color-gold);
}

.blog-card-body h3 a {
    color: inherit;
}

.blog-card-body p {
    font-size: 0.85rem;
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-read-more {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.blog-read-more:hover {
    color: var(--color-gold-light);
    letter-spacing: 2px;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 80px 0;
    text-align: center;
    background: var(--color-bg);
}

.contact-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.contact-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
}

.contact-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-gold);
    padding: 18px;
    box-sizing: content-box;
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.contact-icon:hover svg {
    background: var(--color-gold);
    color: var(--color-bg);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.3);
}

.contact-icon span {
    font-size: 0.8rem;
    color: var(--color-gray);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-icon:hover span {
    color: var(--color-gold);
}

/* ===== FOOTER ===== */
.footer {
    padding: 60px 0 30px;
    text-align: center;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    background: var(--color-bg);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--color-gold);
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--color-gray);
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.8rem;
    color: var(--color-gray);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--color-gold);
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--color-gray-dark);
}

/* ===== SPARKLE DECORATIONS (Refined) ===== */
.sparkle {
    position: absolute;
    color: var(--color-gold);
    opacity: 0;
    pointer-events: none;
    z-index: 0;
    animation: twinkleFloat 5s ease-in-out infinite;
}

.sparkle-sm {
    width: 14px;
    height: 14px;
}

.sparkle-md {
    width: 26px;
    height: 26px;
}

.sparkle-lg {
    width: 38px;
    height: 38px;
}

.sparkle svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: currentColor;
    filter: drop-shadow(0 0 3px rgba(201, 168, 76, 0.8));
    overflow: visible;
}

@keyframes twinkleFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(0.6) rotate(0deg);
        opacity: 0;
    }

    20% {
        opacity: 0.8;
        transform: translate(5px, -10px) scale(1) rotate(45deg);
    }

    50% {
        transform: translate(15px, -25px) scale(1.2) rotate(180deg);
        opacity: 1;
    }

    80% {
        opacity: 0.4;
        transform: translate(5px, -15px) scale(0.8) rotate(270deg);
    }
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 {
    transition-delay: 0.1s;
}

.fade-in-delay-2 {
    transition-delay: 0.2s;
}

.fade-in-delay-3 {
    transition-delay: 0.3s;
}

.fade-in-delay-4 {
    transition-delay: 0.4s;
}

.fade-in-delay-5 {
    transition-delay: 0.5s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .clubs-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .clubs-grid .club-card:nth-child(4),
    .clubs-grid .club-card:nth-child(5) {
        display: none;
    }

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

    .blog-grid .blog-card:nth-child(n+5) {
        display: none;
    }

    .experience-step {
        gap: 40px;
    }

    /* Navbar optimization for smaller desktops */
    .nav-container {
        padding: 0 15px;
    }

    .nav-links {
        gap: 20px;
        margin-right: 20px;
    }

    .nav-links a {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .nav-right {
        gap: 25px;
    }

    .social-btn {
        padding: 7px 10px;
    }

    .lang-switcher {
        gap: 5px;
        margin-left: 5px;
    }

    .lang-link {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .top-bar-left span {
        font-size: 0.6rem;
        letter-spacing: 0.5px;
    }

    .navbar {
        top: 28px;
    }

    .navbar.scrolled {
        top: 0;
    }

    .nav-links {
        display: none;
    }

    .nav-right {
        display: flex;
        align-items: center;
        margin-left: auto;
        margin-right: 15px;
    }

    .nav-socials>a,
    .nav-cta {
        display: none;
    }

    .top-social-link span {
        display: none;
    }

    .top-social-link {
        padding: 4px;
        border-radius: 50%;
    }

    .top-social-link svg {
        width: 16px;
        height: 16px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    /* Mobile menu overlay */
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        justify-content: flex-start;
        align-items: center;
        gap: 30px;
        z-index: 999;
        overflow-y: auto;
        padding: 100px 20px 60px;
    }

    .nav-item-dropdown:hover .dropdown-menu,
    .nav-item-dropdown:active .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        box-shadow: none;
        background: transparent;
        border: none;
        padding-top: 15px;
    }

    .dropdown-menu {
        display: none;
    }

    .nav-item-dropdown:hover .dropdown-menu,
    .nav-item-dropdown:active .dropdown-menu {
        display: flex;
    }


    .nav-links.active a {
        font-size: 1.2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }

    .hero-free-badge {
        font-size: 0.65rem;
        padding: 6px 16px;
    }

    .hero-trust {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .free-banner-inner {
        flex-direction: column;
        text-align: center;
        padding: 16px 20px;
        margin: -30px 16px 0;
    }

    .experience-step,
    .experience-step.step-reverse {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .step-reverse .step-image {
        order: unset;
    }

    .step-reverse .step-content {
        order: unset;
    }

    .step-image img {
        height: 240px;
    }

    .step-number {
        font-size: 4rem;
        top: -10px;
    }

    .before-perks-grid {
        grid-template-columns: 1fr;
    }

    .step-transition {
        flex-direction: column;
        gap: 10px;
    }

    .step-transition-line {
        width: 60%;
        height: 1px;
    }

    .step-transition-text {
        white-space: normal;
        font-size: 0.7rem;
    }

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

    .clubs-grid .club-card:nth-child(4),
    .clubs-grid .club-card:nth-child(5) {
        display: block;
    }

    .clubs-grid .club-card:nth-child(5) {
        display: none;
    }

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

    .vip-card-large {
        grid-column: 1;
        grid-row: auto;
    }

    .event-details {
        gap: 30px;
    }

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

    .blog-grid .blog-card:nth-child(n+5) {
        display: block;
    }

    .contact-icons {
        gap: 24px;
    }

    .section {
        padding: 70px 0;
    }

    .btn-large {
        padding: 16px 28px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .clubs-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .event-title {
        font-size: 3rem;
    }

    .event-details {
        flex-direction: column;
        gap: 20px;
    }

    .footer-links {
        flex-wrap: wrap;
    }

    .hero-trust-item {
        font-size: 0.75rem;
    }

    .experience-timeline {
        gap: 50px;
    }
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 10px;
    margin-left: 15px;
    align-items: center;
}

.lang-link {
    text-decoration: none;
    font-size: 1.2rem;
    padding: 5px;
    border-radius: 5px;
    transition: transform 0.2s;
    filter: grayscale(100%);
    opacity: 0.7;
}

.lang-link:hover,
.lang-link.active {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .lang-switcher {
        margin-left: 0;
        margin-top: 10px;
    }
}

/* --- SEO & Trust Signals (NAP / Maps) --- */
.footer-nap {
    margin: 20px 0;
    font-size: 0.9rem;
    color: var(--color-gray);
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.footer-nap strong {
    color: var(--color-gold);
}

.map-container {
    width: 100%;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    margin: 40px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%) invert(90%);
    /* Dark mode map style attempt */
}

/* --- Language Dropdown --- */
.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-smooth);
}

.lang-btn:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.lang-flag {
    font-size: 1rem;
}

.lang-btn .arrow {
    font-size: 0.6rem;
    margin-left: 2px;
}

.lang-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--color-bg-card);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 120px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
    list-style: none;
    display: flex;
    flex-direction: column;
}

.lang-dropdown:hover .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.lang-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    color: var(--color-white-soft);
    font-size: 0.85rem;
    transition: var(--transition-smooth);
    text-decoration: none;
    white-space: nowrap;
}

.lang-menu li a:hover {
    background: rgba(201, 168, 76, 0.1);
    color: var(--color-gold);
}

.lang-menu li a.active {
    color: var(--color-gold);
    font-weight: bold;
    background: rgba(201, 168, 76, 0.05);
}

/* ===== TONIGHT CLUBS & CARDS (Added for dynamic events) ===== */

.tonight-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(rgba(10, 10, 10, 0.5), rgba(10, 10, 10, 0.9)),
        url('https://images.unsplash.com/photo-1516450360452-9312f5e86fc7?w=1200&fit=crop');
    background-size: cover;
    background-position: center;
}

.tonight-hero .hero-content {
    position: relative;
    z-index: 2;
}

.today-badge {
    display: inline-block;
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(231, 76, 60, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.breadcrumbs {
    padding: 15px 0;
    margin-top: 75px;
    background: var(--color-bg-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumbs li {
    font-size: 0.85rem;
    color: var(--color-gray);
}

.breadcrumbs li a {
    color: var(--color-gold);
    text-decoration: none;
}

.breadcrumbs li a:hover {
    text-decoration: underline;
}

.breadcrumbs li+li::before {
    content: '›';
    margin-right: 8px;
    color: var(--color-gray);
}

.tonight-schedule {
    padding: 60px 0;
}

.schedule-timeline {
    max-width: 700px;
    margin: 40px auto 0;
}

.schedule-item {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    position: relative;
}

.schedule-item::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 45px;
    bottom: -30px;
    width: 2px;
    background: rgba(201, 168, 76, 0.2);
}

.schedule-item:last-child::before {
    display: none;
}

.schedule-time {
    min-width: 70px;
    background: rgba(201, 168, 76, 0.1);
    color: var(--color-gold);
    padding: 8px 12px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    height: fit-content;
}

.schedule-content h3 {
    color: var(--color-white);
    margin-bottom: 5px;
}

.schedule-content p {
    color: var(--color-white-soft);
    opacity: 0.8;
    line-height: 1.6;
}

.tonight-clubs {
    padding: 60px 0 80px;
    background: var(--color-bg-light);
}


/* TABS STYLES */
.events-filter-container {
    margin-top: -30px;
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
}

.events-tabs {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 5px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--color-white-soft);
    padding: 10px 25px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.tab-btn.active {
    background: var(--color-gold);
    color: #000;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.tab-btn:hover:not(.active) {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.05);
}

.events-tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.events-tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.tonight-clubs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.tonight-club-card {
    background: rgba(20, 20, 20, 0.9);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.12);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
}

.tonight-club-card:hover {
    border-color: rgba(201, 168, 76, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(201, 168, 76, 0.12), 0 0 60px rgba(201, 168, 76, 0.05);
}

.tonight-club-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.tonight-club-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(transparent, rgba(20, 20, 20, 0.95));
}

.tonight-club-img .day-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-gold);
    color: #000;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.club-status {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    color: var(--color-white-soft);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

/* Status variants */
.club-status.status-open {
    color: #2ecc71;
    border-color: rgba(46, 204, 113, 0.3);
}

.club-status.status-open::before {
    background: #2ecc71;
    box-shadow: 0 0 8px rgba(46, 204, 113, 0.4);
}

.club-status.status-soon {
    color: #f1c40f;
    border-color: rgba(241, 196, 15, 0.3);
}

.club-status.status-soon::before {
    background: #f1c40f;
    box-shadow: 0 0 8px rgba(241, 196, 15, 0.4);
}

.club-status.status-closed {
    color: #e74c3c;
    border-color: rgba(231, 76, 60, 0.3);
}

.club-status.status-closed::before {
    background: #e74c3c;
    box-shadow: 0 0 8px rgba(231, 76, 60, 0.4);
}

.club-status::before {
    content: '';
    width: 8px;
    height: 8px;
    background: currentColor;
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes statusPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.5);
    }

    50% {
        box-shadow: 0 0 0 4px rgba(46, 204, 113, 0);
    }
}

.club-vip-badge {
    position: absolute;
    bottom: 12px;
    right: 15px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.9), rgba(180, 140, 50, 0.9));
    color: #000;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 4px;
}

.tonight-club-body {
    padding: 22px 20px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tonight-club-body h3 {
    font-family: var(--font-heading);
    color: var(--color-gold);
    font-size: 1.3rem;
    margin-bottom: 6px;
}

.club-event {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 12px;
}

.club-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.club-tag {
    background: rgba(201, 168, 76, 0.1);
    color: var(--color-gold);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 500;
    border: 1px solid rgba(201, 168, 76, 0.15);
}

.club-location {
    font-size: 0.8rem;
    color: var(--color-gray);
    margin-bottom: 18px;
}

.location-link {
    color: var(--color-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.location-link:hover {
    color: var(--color-gold);
    text-decoration: underline;
}

.club-official-link {
    font-size: 0.7rem;
    color: var(--color-gray);
    text-decoration: none;
    opacity: 0.6;
    transition: all 0.3s ease;
    margin-left: 6px;
}

.club-official-link:hover {
    color: var(--color-gold);
    opacity: 1;
}

.btn-book-tonight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25D366;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-book-tonight:hover {
    background: #128C7E;
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.club-detail-link {
    display: block;
    text-align: center;
    margin-top: 10px;
    color: var(--color-gold);
    font-size: 0.8rem;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.club-detail-link:hover {
    opacity: 1;
    text-decoration: underline;
}

.tonight-cta {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(180deg, var(--color-bg-light) 0%, var(--color-bg) 100%);
}

.tonight-cta h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.tonight-cta p {
    color: var(--color-white-soft);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.tonight-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.btn-cta-vip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--color-gold);
    font-weight: 600;
    font-size: 1rem;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid rgba(201, 168, 76, 0.4);
    transition: all 0.3s ease;
}

.btn-cta-vip:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: var(--color-gold);
}

@media (max-width: 768px) {

    .tonight-clubs-grid,
    body .other-clubs-grid {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px !important;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        margin-left: -24px;
        margin-right: -24px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .tonight-clubs-grid::-webkit-scrollbar,
    body .other-clubs-grid::-webkit-scrollbar {
        display: none;
    }

    .tonight-clubs-grid,
    body .other-clubs-grid {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .tonight-club-card,
    body .other-club-link {
        min-width: 85vw;
        scroll-snap-align: center;
        flex-shrink: 0;
    }

    .tonight-cta h2 {
        font-size: 1.6rem;
    }

    .tonight-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ===== INDIVIDUAL EVENT PAGE STYLES ===== */

.event-detail-hero {
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
    color: white;
}

.event-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
    z-index: 1;
}

.event-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.event-tagline {
    font-size: 1.1rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 700;
}

.event-title {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.event-date-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.next-date-dynamic {
    color: var(--color-gold);
    font-weight: 700;
}

.event-info-bar {
    background: var(--color-bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
}

.event-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.info-item h4 {
    color: var(--color-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.info-item p {
    color: var(--color-white);
    font-size: 1.1rem;
    font-weight: 500;
}

.event-content-section {
    padding: 80px 0;
    background: var(--color-bg-light);
}

.event-description {
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-white-soft);
}

.event-description h2 {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 20px;
    margin-top: 40px;
}

.event-description h2:first-child {
    margin-top: 0;
}

.event-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.feature-tag {
    background: rgba(201, 168, 76, 0.1);
    color: var(--color-gold);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.9rem;
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.event-cta-box {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9), rgba(30, 30, 30, 0.9));
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.event-cta-box h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 15px;
}

.event-cta-box p {
    color: var(--color-white-soft);
    margin-bottom: 30px;
}

.guestlist-btn {
    display: inline-block;
    background: #25D366;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.guestlist-btn:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
    .event-title {
        font-size: 2.5rem;
    }

    .event-info-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}