	/* Prevent horizontal scroll */
		html, body {
			overflow-x: hidden;
			width: 100%;
			position: relative;
		}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --gold: #D4AF37;
            --gold-dark: #B8960F;
            --gold-light: #F4E4BC;
            --black: #000000;
            --black-soft: #1A1A1A;
            --white: #FFFFFF;
            --white-soft: #F8F8F8;
            --grey: #666666;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            color: var(--black);
            background: var(--white);
            overflow-x: hidden;
        }

        /* Typography */
        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            line-height: 1.2;
        }

        /* Header Navigation */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 20px 0;
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        }

        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            transition: filter 0.3s ease;
        }

        .logo:hover img {
            filter: brightness(0) invert(1) sepia(1) saturate(10000%) hue-rotate(5deg) brightness(1.2) !important;
        }

        .header-cta {
            padding: 12px 35px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: var(--black);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            border-radius: 0;
            transition: all 0.3s ease;
            border: 2px solid var(--gold);
        }

        .header-cta:hover {
            background: transparent;
            color: var(--gold);
        }

        /* Navigation Menu */
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 35px;
            margin: 0;
            padding: 0;
        }

        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--gold);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Hero Section */
		.hero {
			min-height: 90vh;
			height: 120vh;
			display: flex;
			align-items: center;
			justify-content: center;
			position: relative;
			margin-top: 80px;
			overflow: hidden;
					background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)),
								url('https://images.unsplash.com/photo-1470229722913-7c0e2dbbafd3?q=80&w=2070&auto=format&fit=crop') center/cover;
				}

		.hero-video-bg iframe,
		.hero-video-bg video {
			width: 100%;
			height: 100%;
			position: absolute;
			top: 50%;
			left: 50%;
			transform: translate(-50%, -50%);
			object-fit: cover;
		}

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
            z-index: 1;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: repeating-linear-gradient(
                0deg,
                transparent,
                transparent 2px,
                rgba(212, 175, 55, 0.02) 2px,
                rgba(212, 175, 55, 0.02) 4px
            );
            z-index: 1;
        }

        .hero-content {
            max-width: 1000px;
            text-align: center;
            padding: 80px 40px;
            position: relative;
            z-index: 2;
        }

        .event-date {
            font-size: 0.9rem;
            letter-spacing: 4px;
            color: var(--gold);
            text-transform: uppercase;
            margin-bottom: 30px;
            font-weight: 500;
        }

        .hero h1 {
            font-size: 5rem;
            color: var(--white);
            margin-bottom: 20px;
            letter-spacing: 2px;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: var(--white-soft);
            margin-bottom: 50px;
            font-weight: 300;
            letter-spacing: 1px;
        }

        .venue-info {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            color: var(--gold-light);
            font-size: 1rem;
            margin-bottom: 50px;
            padding: 15px 30px;
            border: 1px solid rgba(212, 175, 55, 0.3);
            background: rgba(0, 0, 0, 0.3);
        }

        /* Countdown */
        .countdown {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin: 60px 0;
        }

        .countdown-item {
            text-align: center;
            min-width: 100px;
        }

        .countdown-number {
            font-size: 3.5rem;
            font-family: 'Playfair Display', serif;
            color: var(--gold);
            font-weight: 700;
            display: block;
            line-height: 1;
        }

        .countdown-label {
            font-size: 0.75rem;
            color: var(--white-soft);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-top: 10px;
            font-weight: 300;
        }

        .divider {
            color: var(--gold);
            font-size: 3rem;
            line-height: 1;
            opacity: 0.3;
        }

        /* CTA Buttons */
        .cta-primary {
            display: inline-block;
            padding: 20px 60px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: var(--black);
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: all 0.4s ease;
            border: 2px solid var(--gold);
            margin: 10px;
        }

        .cta-primary:hover {
            background: transparent;
            color: var(--gold);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
        }

        .cta-secondary {
            display: inline-block;
            padding: 20px 60px;
            background: transparent;
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            border: 2px solid var(--white);
            transition: all 0.4s ease;
            margin: 10px;
        }

        .cta-secondary:hover {
            background: var(--white);
            color: var(--black);
        }

        /* Section Styles */
        section {
            padding: 120px 40px;
        }

        .section-dark {
            background: var(--black);
            color: var(--white);
        }

        .section-light {
            background: var(--white-soft);
            color: var(--black);
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-subtitle {
            font-size: 0.85rem;
            color: var(--gold);
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 20px;
            font-weight: 500;
        }

        .section-title {
            font-size: 3rem;
            margin-bottom: 25px;
        }

        .section-dark .section-title {
            color: var(--white);
        }

        .section-description {
            font-size: 1.1rem;
            color: var(--grey);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
            font-weight: 300;
        }

        .section-dark .section-description {
            color: rgba(255, 255, 255, 0.7);
        }

        /* Icon Styles - SVG Icons */
        .icon {
            width: 48px;
            height: 48px;
            stroke: var(--gold);
            stroke-width: 1.5;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 60px;
            margin-top: 80px;
        }

        .feature-item {
            text-align: center;
            padding: 40px 30px;
            transition: transform 0.3s ease;
        }

        .feature-item:hover {
            transform: translateY(-10px);
        }

        .feature-icon {
            margin-bottom: 30px;
            display: inline-block;
        }

        .feature-title {
            font-size: 1.3rem;
            margin-bottom: 15px;
            font-family: 'Playfair Display', serif;
        }

        .section-dark .feature-title {
            color: var(--white);
        }

        .feature-description {
            color: var(--grey);
            line-height: 1.8;
            font-weight: 300;
        }

        .section-dark .feature-description {
            color: rgba(255, 255, 255, 0.6);
        }

        /* Artists Section */
        .artists-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 50px;
            margin-top: 80px;
        }

        .artist-card {
            background: var(--white);
            text-align: center;
            border: 1px solid rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            position: relative;
        }

        .artist-card:hover {
            border-color: var(--gold);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            transform: translateY(-10px);
        }

        .artist-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), var(--gold-dark));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .artist-card:hover::before {
            transform: scaleX(1);
        }

        .artist-name {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--black);
            font-family: 'Playfair Display', serif;
        }

        .artist-description {
            color: var(--grey);
            line-height: 1.8;
            font-weight: 300;
        }

        /* Tickets Section */
        .tickets-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 80px;
        }

        .ticket-card {
            background: var(--white);
            border: 1px solid rgba(0, 0, 0, 0.1);
            padding: 60px 40px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
        }

        .ticket-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--gold), var(--gold-dark));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .ticket-card:hover::before {
            transform: scaleX(1);
        }

        .ticket-card:hover {
            border-color: var(--gold);
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
        }

        .ticket-tier {
            font-size: 1.85rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 20px;
            font-weight: 600;
        }

        .ticket-price {
            font-size: 3.5rem;
            font-family: 'Playfair Display', serif;
            color: var(--black);
            margin-bottom: 10px;
            font-weight: 600;
        }

        .ticket-currency {
            font-size: 1.2rem;
            vertical-align: super;
        }

        .ticket-period {
            font-size: 0.9rem;
            color: var(--grey);
            margin-bottom: 40px;
        }

        .ticket-features {
            list-style: none;
            text-align: left;
            margin: 40px 0;
        }

        .ticket-features li {
            padding: 15px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            color: var(--grey);
            font-weight: 300;
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .ticket-features li:last-child {
            border-bottom: none;
        }

        .check-icon {
            width: 20px;
            height: 20px;
            stroke: var(--gold);
            flex-shrink: 0;
            margin-top: 2px;
        }

        .ticket-cta {
            display: block;
            width: 100%;
            padding: 18px 40px;
            background: var(--black);
            color: var(--white);
            text-decoration: none;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-size: 0.85rem;
            transition: all 0.3s ease;
            border: 2px solid var(--black);
        }

        .ticket-cta:hover {
            background: transparent;
            color: var(--black);
        }

        .ticket-card.featured {
            border: 2px solid var(--gold);
            transform: scale(1.05);
        }

        .ticket-card.featured .ticket-cta {
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: var(--black);
            border-color: var(--gold);
        }

        .ticket-card.featured .ticket-cta:hover {
            background: transparent;
            color: var(--gold);
        }

        /* Venue Section */
		.venue-section {
			background-image: 
				linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
				url('https://digital.ihg.com/is/image/ihg/intercontinental-dubai-9831088279-2x1?wid=1100');
			background-attachment: fixed;
			background-position: center;
			background-repeat: no-repeat;
			background-size: cover;
		}

        .venue-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            margin-top: 60px;
        }

        .venue-text h3 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: var(--gold);
        }
		
        .venue-text h3 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: var(--gold);
        }

        .venue-text p {
            font-size: 1.1rem;
            line-height: 1.9;
            color: #ffffff;
            margin-bottom: 20px;
            font-weight: 400;
        }

        .venue-features {
            list-style: none;
            margin: 40px 0;
        }

        .venue-features li {
            padding: 15px 0;
            display: flex;
            align-items: center;
            gap: 20px;
            color: #ffffff;
            font-weight: 300;
        }

        .venue-links {
            display: flex;
            gap: 20px;
            margin-top: 40px;
        }

        .venue-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 30px;
            border: 1px solid var(--gold);
            color: var(--gold);
            text-decoration: none;
            font-weight: 500;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .venue-link:hover {
            background: var(--gold);
            color: var(--black);
        }

        .venue-link .icon {
            width: 20px;
            height: 20px;
        }

        .venue-map {
            height: 500px;
            border: 1px solid rgba(212, 175, 55, 0.2);
        }

        /* Discount Section */
		.discount-section {
			background-image: 
				linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
				url('../img/new-year.jpg');
			background-attachment: fixed;
			background-position: bottom-center;
			background-repeat: no-repeat;
			background-size: cover;
		}

        .discount-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .discount-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(212, 175, 55, 0.2);
            padding: 50px 40px 70px 40px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .discount-card:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--gold);
            transform: translateY(-5px);
        }

        .discount-tier {
            font-size: 1.2rem;
            color: var(--gold);
            margin-bottom: 20px;
            font-family: 'Playfair Display', serif;
        }

        .discount-code {
            font-size: 2rem;
            font-weight: 700;
            color: var(--white);
            background: rgba(212, 175, 55, 0.1);
            padding: 20px;
            margin: 30px 0;
            letter-spacing: 3px;
            border: 1px solid rgba(212, 175, 55, 0.3);
        }

        .discount-details {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            font-weight: 300;
        }

        /* Clickable Promo Cards */
        .clickable-promo {
            cursor: pointer;
            position: relative;
            user-select: none;
        }

        .clickable-promo:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: var(--gold);
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
        }

        .clickable-promo:active {
            transform: translateY(-5px);
        }

        .copy-indicator {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            color: var(--gold);
            font-size: 0.85rem;
            font-weight: 600;
            opacity: 0.7;
            transition: opacity 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .clickable-promo:hover .copy-indicator {
            opacity: 1;
        }

        .clickable-promo.copied {
            animation: copyFlash 0.6s ease;
        }

        @keyframes copyFlash {
            0%, 100% {
                background: rgba(255, 255, 255, 0.05);
            }
            50% {
                background: rgba(76, 175, 80, 0.2);
                border-color: #4CAF50;
            }
        }

        /* Contact Section */
        .contact-section {
            background: var(--white-soft);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .contact-card {
            text-align: center;
            padding: 40px 30px;
            background: var(--white);
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .contact-card:hover {
            border-color: var(--gold);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        }

        .contact-icon-wrapper {
            width: 70px;
            height: 70px;
            margin: 0 auto 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid var(--gold);
            border-radius: 50%;
        }

        .contact-link {
            display: block;
            color: var(--black);
            text-decoration: none;
            font-weight: 500;
            margin-top: 15px;
            letter-spacing: 1px;
        }

        .contact-link:hover {
            color: var(--gold);
        }

        /* Footer */
        footer {
            background: var(--black);
            color: var(--white);
            padding: 80px 40px 40px;
            text-align: center;
        }

        .footer-logo {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--gold);
            margin-bottom: 20px;
            letter-spacing: 3px;
        }

        .footer-tagline {
            color: rgba(255, 255, 255, 0.5);
            margin: 30px 0;
            font-weight: 300;
            font-style: italic;
        }

        .footer-divider {
            width: 100px;
            height: 1px;
            background: var(--gold);
            margin: 40px auto;
        }

        .footer-copyright {
            color: rgba(255, 255, 255, 0.3);
            font-size: 0.85rem;
            font-weight: 300;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 3.5rem;
            }

            .venue-content {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .header-content {
                padding: 0 20px;
            }

            .logo img {
                height: 40px;
            }

    .hero {
        min-height: 100vh !important;
        height: 100vh !important;
    }

    .hero-video-bg {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        overflow: hidden !important;
    }
	
    .hero-video-bg video,
    .hero-video-bg iframe {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        min-width: 100% !important;
        min-height: 100% !important;
        width: auto !important;
        height: auto !important;
        transform: translate(-50%, -50%) !important;
        object-fit: cover !important;
        z-index: 0 !important;
    }

   .hero-content {
        position: relative !important;
        z-index: 2 !important;
        padding: 80px 20px !important;
    }

    .hero::before,
    .hero::after {
        z-index: 1 !important;
    }

    .hero {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .hero-content > div[style*="margin-bottom: 40px"] {
        margin-bottom: 20px !important;
    }

    .hero-content > div[style*="margin-bottom: 40px"] img {
        max-width: 150px !important;
    }

	

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .countdown {
                gap: 20px;
            }

            .countdown-item {
                min-width: 70px;
            }

            .countdown-number {
                font-size: 2.5rem;
            }

            .divider {
                display: none;
            }

            section {
                padding: 80px 20px;
            }

            .section-title {
                font-size: 2rem;
            }

            .features-grid,
            .artists-grid,
            .tickets-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .ticket-card.featured {
                transform: scale(1);
            }

            .cta-primary,
            .cta-secondary {
                padding: 18px 40px;
                font-size: 0.9rem;
            }

            .venue-links {
                flex-direction: column;
            }

            /* Hotel Showcase Mobile */
            .venue-content {
                grid-template-columns: 1fr;
            }

            .venue-content > div:last-child {
                order: -1;
                height: 300px;
                margin-bottom: 30px;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            animation: fadeInUp 0.8s ease-out;
        }
		
		/* FAQ Section */
		.faq-section {
			background: var(--white-soft);
			padding: 120px 0;
			padding-bottom: 10px;
		}

		.faq-container {
			max-width: 900px;
			margin: 0 auto;
		}

		.faq-item {
			background: var(--white);
			border: 1px solid rgba(0, 0, 0, 0.05);
			margin-bottom: 15px;
			transition: all 0.3s ease;
			overflow: hidden;
		}

		.faq-item:hover {
			border-color: var(--gold);
		}

		.faq-item.active {
			border-color: var(--gold);
			box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
		}

		.faq-question {
			font-size: 1.2rem;
			color: var(--black);
			font-weight: 600;
			padding: 30px 60px 30px 40px;
			margin: 0;
			cursor: pointer;
			font-family: 'Playfair Display', serif;
			position: relative;
			transition: all 0.3s ease;
			user-select: none;
		}

		.faq-question:hover {
			color: var(--gold);
		}

		.faq-question::after {
			content: '+';
			position: absolute;
			right: 40px;
			top: 50%;
			transform: translateY(-50%);
			font-size: 2rem;
			color: var(--gold);
			font-weight: 300;
			transition: transform 0.3s ease;
			line-height: 1;
		}

		.faq-item.active .faq-question::after {
			transform: translateY(-50%) rotate(45deg);
		}

		.faq-answer {
			max-height: 0;
			overflow: hidden;
			transition: max-height 0.3s ease, padding 0.3s ease;
			color: var(--grey);
			line-height: 1.8;
			font-size: 1.05rem;
			padding: 0 40px;
		}

		.faq-item.active .faq-answer {
			max-height: 300px;
			padding: 0 40px 30px 40px;
		}

		/* Social Media Icons */
		.social-links {
			display: flex;
			justify-content: center;
			gap: 25px;
			margin: 30px 0;
		}

		.social-link {
			width: 50px;
			height: 50px;
			background: rgba(212, 175, 55, 0.1);
			border: 2px solid var(--gold);
			border-radius: 50%;
			display: flex;
			align-items: center;
			justify-content: center;
			transition: all 0.3s ease;
			text-decoration: none;
		}

		.social-link:hover {
			background: var(--gold);
			transform: translateY(-5px);
			box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
		}

		.social-link svg {
			width: 24px;
			height: 24px;
			stroke: var(--gold);
			fill: none;
			transition: stroke 0.3s ease;
		}

		.social-link:hover svg {
			fill: var(--black);
		}
		
		@media (max-width: 768px) {
			/* Header */
			.header-content {
				padding: 0 20px;
			}

			.nav-links {
				display: none;
			}

			/* Hero */
			.hero h1 {
				font-size: 2.5rem;
			}

			.hero-subtitle {
				font-size: 1rem;
			}

			.countdown {
				gap: 20px;
			}

			.countdown-value,
			.countdown-number {
				font-size: 2.5rem;
			}

			/* Section titles */
			.section-title {
				font-size: 2.5rem;
			}

			/* Hotel Showcase Gallery - CAROUSEL */
			.section-light > .container > div[style*="grid-template-columns"] {
				display: flex !important;
				overflow-x: auto !important;
				scroll-snap-type: x mandatory !important;
				gap: 20px !important;
				padding: 20px 0 !important;
				-webkit-overflow-scrolling: touch !important;
				scrollbar-width: none !important;
				grid-template-columns: none !important;
			}

			.section-light > .container > div[style*="grid-template-columns"]::-webkit-scrollbar {
				display: none !important;
			}

			.section-light > .container > div[style*="grid-template-columns"] > div {
				flex: 0 0 85% !important;
				scroll-snap-align: center !important;
				min-width: 85% !important;
			}

			/* IMAGINE Show section responsive */
			.section-light div[style*="grid-template-columns: 1fr 1fr"] {
				grid-template-columns: 1fr !important;
				gap: 30px !important;
			}

			/* Hide venue map on mobile */
			.venue-map,
			.venue-section iframe,
			.venue-section .venue-map,
			.venue-grid .venue-map,
			.venue-content .venue-map {
				display: none !important;
			}

			.venue-grid,
			.venue-content {
				grid-template-columns: 1fr !important;
			}

			/* Grids to single column */
			.tickets-grid,
			.discount-cards,
			.contact-grid,
			.features-grid {
				grid-template-columns: 1fr !important;
			}

			/* FAQ */
			.faq-question {
				font-size: 1.1rem;
				padding: 25px 50px 25px 30px;
			}

			.faq-question::after {
				right: 30px;
			}

			.faq-answer {
				padding: 0 30px;
			}

			.faq-item.active .faq-answer {
				padding: 0 30px 25px 30px;
			}

			/* Social links */
			.social-links {
				gap: 15px;
			}

			.social-link {
				width: 45px;
				height: 45px;
			}

			.social-link svg {
				width: 20px;
				height: 20px;
			}
		}

		@media (max-width: 480px) {
			.hero-content > div[style*="margin-bottom: 40px"] img {
				max-width: 120px !important;
			}
			/* Very small screens */
			.hero h1 {
				font-size: 2rem;
			}

			.section-title {
				font-size: 2rem;
			}

			.countdown {
				gap: 10px;
			}

			.countdown-value,
			.countdown-number {
				font-size: 2rem;
			}

			.ticket-price,
			.discount-code {
				font-size: 1.5rem;
			}

			.section-light > .container > div[style*="grid-template-columns"] > div {
				flex: 0 0 90% !important;
				min-width: 90% !important;
			}
		}

		/* Mobile Menu Toggle */
		.mobile-menu-toggle {
			display: none;
			background: none;
			border: none;
			color: var(--gold);
			font-size: 1.8rem;
			cursor: pointer;
			padding: 5px;
			z-index: 1001;
		}

		/* Mobile Menu Overlay */
		.mobile-menu {
			position: fixed;
			top: 0;
			right: -100%;
			width: 280px;
			height: 100vh;
			background: rgba(0, 0, 0, 0.98);
			backdrop-filter: blur(10px);
			z-index: 9998;
			transition: right 0.3s ease;
			overflow-y: auto;
			padding: 100px 30px 30px;
			border-left: 1px solid rgba(212, 175, 55, 0.2);
		}

		.mobile-menu.active {
			right: 0;
		}

		.mobile-menu-close {
			position: absolute;
			top: 20px;
			right: 20px;
			background: none;
			border: none;
			color: var(--white);
			font-size: 2rem;
			cursor: pointer;
			width: 40px;
			height: 40px;
			display: flex;
			align-items: center;
			justify-content: center;
			transition: all 0.3s ease;
		}

		.mobile-menu-close:hover {
			color: var(--gold);
			transform: rotate(90deg);
		}

		.mobile-nav-links {
			list-style: none;
			padding: 0;
			margin: 0;
		}

		.mobile-nav-links li {
			margin-bottom: 10px;
		}

		.mobile-nav-links a {
			display: block;
			color: var(--white);
			text-decoration: none;
			font-size: 1.1rem;
			font-weight: 500;
			padding: 15px 20px;
			transition: all 0.3s ease;
			border-left: 3px solid transparent;
		}

		.mobile-nav-links a:hover {
			color: var(--gold);
			border-left-color: var(--gold);
			padding-left: 25px;
		}

		.mobile-menu-cta {
			display: block;
			margin-top: 30px;
			padding: 15px 30px;
			background: linear-gradient(135deg, var(--gold), var(--gold-dark));
			color: var(--black);
			text-decoration: none;
			font-weight: 600;
			font-size: 1rem;
			letter-spacing: 1px;
			text-transform: uppercase;
			text-align: center;
			transition: all 0.3s ease;
			border: 2px solid var(--gold);
		}

		.mobile-menu-cta:hover {
			background: transparent;
			color: var(--gold);
		}

		/* Mobile Menu Backdrop */
		.mobile-menu-backdrop {
			position: fixed;
			top: 0;
			left: 0;
			width: 100%;
			height: 100vh;
			background: rgba(0, 0, 0, 0.8);
			z-index: 9997;
			opacity: 0;
			visibility: hidden;
			transition: all 0.3s ease;
		}

		.mobile-menu-backdrop.active {
			opacity: 1;
			visibility: visible;
		}

		@media (max-width: 768px) {
			/* Hide desktop menu and show hamburger */
			.nav-links {
				display: none !important;
			}

			.header .header-cta {
				display: none !important;
			}

			.mobile-menu-toggle {
				display: block;
			}
		}

		/* Scroll to Top Button */
		.scroll-to-top {
			position: fixed;
			bottom: 30px;
			right: 30px;
			width: 50px;
			height: 50px;
			background: linear-gradient(135deg, var(--gold), var(--gold-dark));
			border: 2px solid var(--gold);
			border-radius: 50%;
			display: flex;
			align-items: center;
			justify-content: center;
			cursor: pointer;
			opacity: 0;
			visibility: hidden;
			transition: all 0.3s ease;
			z-index: 999;
			box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
		}

		.scroll-to-top.visible {
			opacity: 1;
			visibility: visible;
		}

		.scroll-to-top:hover {
			transform: translateY(-5px);
			box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
			background: var(--gold-light);
		}

		.scroll-to-top:active {
			transform: translateY(-2px);
		}

		.scroll-to-top svg {
			width: 24px;
			height: 24px;
			fill: none;
			stroke: var(--black);
			stroke-width: 2;
			stroke-linecap: round;
			stroke-linejoin: round;
		}

		@media (max-width: 768px) {
			.scroll-to-top {
				bottom: 20px;
				right: 20px;
				width: 45px;
				height: 45px;
			}

			.scroll-to-top svg {
				width: 20px;
				height: 20px;
			}
		}