/* ===== CSS Variables ===== */
:root {
    --primary-cyan: #22d3ee;
    --primary-purple: #7c3aed;
    --primary-magenta: #d946ef;
    --dark-bg: #050511;
    --dark-surface: #0f0f29;
    --dark-card: rgba(15, 15, 41, 0.6);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --gradient-neon: linear-gradient(135deg, #00f0ff 0%, #7c3aed 50%, #f000ff 100%);
    --glow-cyan: 0 0 25px rgba(0, 240, 255, 0.5);
    --glow-purple: 0 0 25px rgba(124, 58, 237, 0.5);
    --font-display: 'Inter', sans-serif;
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --btn-radius: 6px;
    --border-radius: 16px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    background-image:
        radial-gradient(circle at 50% 0%, rgba(124, 58, 237, 0.25) 0%, transparent 60%),
        radial-gradient(circle at 100% 0%, rgba(34, 211, 238, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 0% 0%, rgba(217, 70, 239, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 50% 100%, rgba(124, 58, 237, 0.2) 0%, transparent 60%);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ===== Stars Background ===== */
.stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    background: rgba(10, 10, 26, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 245, 255, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    position: relative;
    width: 40px;
    height: 40px;
}

.logo-square {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-cyan);
    border-radius: 8px;
    animation: logoGlow 3s ease-in-out infinite;
}

.logo-square-inner {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 16px;
    height: 16px;
    border: 2px solid var(--primary-purple);
    border-radius: 4px;
}

@keyframes logoGlow {

    0%,
    100% {
        box-shadow: var(--glow-cyan);
    }

    50% {
        box-shadow: var(--glow-purple);
    }
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 2px;
}

.logo-accent {
    color: var(--primary-cyan);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-neon);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-cyan);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-glow {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-magenta) 100%);
    border: none;
    border-radius: var(--btn-radius);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.6);
    filter: brightness(1.1);
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.7);
}

/* Glass Button Base */
.btn-glass {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    transition: var(--transition);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-cyan-solid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    /* True Glass - Very Transparent */
    background: rgba(255, 255, 255, 0.03);
    color: var(--primary-cyan);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    /* Bevelled Border */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    transition: var(--transition);
    text-align: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    /* Depth */
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-cyan-solid:hover {
    background: rgba(34, 211, 238, 0.15);
    border-color: rgba(34, 211, 238, 0.5);
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.3), inset 0 0 10px rgba(34, 211, 238, 0.1);
    transform: translateY(-2px);
    color: #fff;
    text-shadow: 0 0 8px rgba(34, 211, 238, 0.8);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    /* Outline Glass Border */
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    transition: var(--transition);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-outline:hover {
    background: rgba(34, 211, 238, 0.05);
    /* Tint on hover */
    border-color: rgba(34, 211, 238, 0.4);
    color: var(--primary-cyan);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 0 15px rgba(34, 211, 238, 0.15);
    transform: translateY(-2px);
}

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

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--primary-cyan);
    transition: var(--transition);
}

/* ===== Main Content - Velo Style ===== */
.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 8rem 2rem 4rem;
    text-align: center;
    background-image: linear-gradient(180deg, rgba(5, 5, 17, 0.7) 0%, rgba(5, 5, 17, 0.4) 50%, var(--dark-bg) 100%), url('hero-banner-no-logo.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero-subtitle-top {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--primary-cyan);
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

/* Glass Ticket Buttons */
.ticket-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.ticket-btn:hover {
    background: rgba(34, 211, 238, 0.1);
    border-color: rgba(34, 211, 238, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.ticket-qty {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 900;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.ticket-text {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary-cyan);
    letter-spacing: 1px;
    transition: var(--transition);
}

/* Price appears on hover via ::after */
.ticket-btn::after {
    content: attr(data-price);
    position: absolute;
    right: -50px;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-cyan);
    opacity: 0;
    transition: var(--transition);
}

.ticket-btn:hover::after {
    right: 1rem;
    opacity: 1;
}

.ticket-btn:hover .ticket-text {
    opacity: 0;
}

.btn-title {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.btn-price {
    font-size: 1.1rem;
    color: var(--primary-cyan);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.btn-large {
    padding: 1rem 3rem !important;
    font-size: 1.1rem !important;
    letter-spacing: 2px;
}


.main-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 68px);
    font-weight: 500;
    line-height: 0.94;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    max-width: 800px;
    letter-spacing: -0.04em;
}

.headline-gradient {
    display: block;
    background: linear-gradient(90deg, #a855f7 0%, #00f5ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-subtext {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 550px;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary-solid {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 2rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    background: var(--primary-purple);
    border: none;
    border-radius: var(--btn-radius);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary-solid:hover {
    background: #9333ea;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 2rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--btn-radius);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
}

.event-details-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 3rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 0.5px solid rgba(255, 255, 255, 0.08);
    border-top: 0.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.detail-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 2px;
}

.detail-value {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.detail-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

.venue-address {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ===== Tickets Section ===== */
.tickets-section {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.tickets-subtext {
    text-align: center;
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== About Section ===== */
.about-section {
    padding: 6rem 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text-large {
    font-family: var(--font-body);
    font-size: 1.25rem;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.about-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.highlight-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.highlight-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(34, 211, 238, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.highlight-icon {
    margin-bottom: 1rem;
    color: var(--primary-cyan);
    background: rgba(34, 211, 238, 0.1);
    padding: 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-text {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
    text-align: center;
}

.about-text {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===== Speakers Section ===== */
.speakers-section {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.15);
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 900px) {
    .speakers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .speakers-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
    }
}

.speaker-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: linear-gradient(180deg, rgba(20, 20, 40, 0.6) 0%, rgba(10, 10, 20, 0.4) 100%);
    border: 0.5px solid rgba(255, 255, 255, 0.05);
    border-top: 0.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.speaker-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, rgba(124, 58, 237, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.speaker-card:hover {
    border-color: rgba(124, 58, 237, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.speaker-card:hover::before {
    opacity: 1;
}

.speaker-photo-wrapper {
    position: relative;
    width: 160px;
    height: 200px;
    margin-bottom: 1rem;
    border-radius: 12px;
    padding: 3px;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-purple) 50%, var(--primary-magenta) 100%);
}

.speaker-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 10px;
    filter: grayscale(100%);
    transition: var(--transition);
}

.speaker-card:hover .speaker-photo {
    filter: grayscale(0%);
}

.speaker-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.speaker-title {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--primary-purple);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.speaker-bio {
    font-family: var(--font-body);
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

/* ===== Results Section ===== */
.results-section {
    padding: 6rem 0;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.result-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(180deg, rgba(20, 20, 40, 0.6) 0%, rgba(10, 10, 20, 0.4) 100%);
    border: 0.5px solid rgba(255, 255, 255, 0.05);
    border-top: 0.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: var(--transition);
}

.result-card:hover {
    border-color: rgba(34, 211, 238, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.result-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(34, 211, 238, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
    color: var(--primary-cyan);
    border: 0.5px solid rgba(34, 211, 238, 0.3);
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.15);
}

.result-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary-cyan);
    filter: drop-shadow(0 0 5px rgba(34, 211, 238, 0.6));
}

.result-text {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.6;
}

.results-tagline {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-purple);
}

/* ===== Final CTA Section ===== */
.final-cta-section {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 5rem 3rem;
    background: linear-gradient(180deg, rgba(20, 20, 40, 0.8) 0%, rgba(10, 10, 20, 0.9) 100%);
    border: 0.5px solid rgba(255, 255, 255, 0.1);
    border-top: 0.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-box::after {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.cta-headline {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.cta-text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.cta-divider {
    width: 60px;
    height: 2px;
    background: var(--gradient-neon);
    margin: 0 auto 2rem;
}

.cta-date {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.cta-tagline {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--primary-purple);
    font-weight: 500;
    margin-bottom: 2rem;
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1rem;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
    background: var(--dark-bg);
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.7) saturate(1.2);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 100%, rgba(168, 85, 247, 0.5) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 30% 80%, rgba(255, 0, 255, 0.3) 0%, transparent 40%),
        radial-gradient(ellipse 60% 40% at 70% 80%, rgba(0, 245, 255, 0.25) 0%, transparent 40%);
    z-index: 2;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(10, 10, 26, 0.8) 0%,
            rgba(20, 5, 40, 0.5) 30%,
            rgba(30, 10, 60, 0.4) 50%,
            rgba(10, 10, 26, 0.85) 85%,
            rgba(10, 10, 26, 1) 100%);
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1100px;
    width: 100%;
    padding: 0 2rem;
    margin-bottom: 2rem;
}

.hero-cards-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    max-width: 1000px;
    margin: 3rem auto 0;
    flex-wrap: wrap;
}

.hero-card {
    background: rgba(5, 5, 17, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 2rem;
    flex: 1;
    min-width: 320px;
    text-align: left;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.hero-card-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

/* Details Card Styles */
.hero-details-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.hero-detail-icon {
    color: var(--primary-cyan);
    margin-top: 2px;
}

.hero-detail-text {
    display: flex;
    flex-direction: column;
}

.detail-primary {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

.detail-secondary {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Tickets Card Styles */
.hero-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.ticket-icon-header {
    color: var(--primary-cyan);
}

.hero-card-subtitle {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-tickets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

/* Removed duplicate .btn-cyan-solid definition to allow glass style to apply */



.hero-title {
    margin-bottom: 1rem;
}

.title-line {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(4rem, 14vw, 10rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: 8px;
    text-transform: uppercase;
}

.title-outline {
    color: transparent;
    -webkit-text-stroke: 3px #4a9fff;
    text-shadow:
        0 0 60px rgba(74, 159, 255, 0.6),
        0 0 120px rgba(74, 159, 255, 0.3),
        inset 0 0 60px rgba(74, 159, 255, 0.1);
    background: linear-gradient(180deg, rgba(74, 159, 255, 0.15) 0%, transparent 100%);
    -webkit-background-clip: text;
    background-clip: text;
    filter: drop-shadow(0 0 40px rgba(74, 159, 255, 0.5));
}

/* Super Saturday Retro Banner */
.super-saturday-banner {
    position: relative;
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 3rem;
    background: linear-gradient(135deg,
            rgba(138, 43, 226, 0.3) 0%,
            rgba(75, 0, 130, 0.4) 50%,
            rgba(138, 43, 226, 0.3) 100%);
    border: 3px solid transparent;
    border-image: linear-gradient(135deg, #00f5ff, #a855f7, #ff00ff) 1;
    clip-path: polygon(0 0,
            calc(100% - 20px) 0,
            100% 50%,
            calc(100% - 20px) 100%,
            0 100%,
            20px 50%);
}

.super-saturday-banner::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, #00f5ff, #a855f7, #ff00ff);
    z-index: -1;
    clip-path: polygon(0 0,
            calc(100% - 20px) 0,
            100% 50%,
            calc(100% - 20px) 100%,
            0 100%,
            20px 50%);
}

.super-saturday-banner::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: linear-gradient(180deg,
            rgba(20, 10, 40, 0.95) 0%,
            rgba(40, 15, 70, 0.9) 100%);
    z-index: -1;
    clip-path: polygon(0 0,
            calc(100% - 18px) 0,
            100% 50%,
            calc(100% - 18px) 100%,
            0 100%,
            18px 50%);
}

.banner-text {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-weight: 800;
    letter-spacing: 6px;
    background: linear-gradient(90deg, #a855f7 0%, #00f5ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.8));
}

/* Hero Bottom Info Section */
.hero-bottom {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
    max-width: 800px;
    padding: 0 2rem;
    margin-bottom: 180px;
}

.hero-date-main {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: #00f5ff;
    letter-spacing: 4px;
    text-shadow: 0 0 30px rgba(0, 245, 255, 0.8);
    margin-bottom: 0.5rem;
}

.hero-venue {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.hero-details {
    font-family: var(--font-body);
    font-size: clamp(0.85rem, 2vw, 1.1rem);
    color: var(--text-secondary);
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--dark-bg);
    background: var(--gradient-neon);
    border: none;
    border-radius: var(--btn-radius);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.5);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 50px rgba(0, 245, 255, 0.8);
}

/* Crowd Silhouette with Raised Hands */
.crowd-silhouette {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 180px;
    z-index: 5;
    pointer-events: none;
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 100'%3E%3Cpath d='M0,100 L0,70 Q5,65 8,55 L10,35 Q12,25 15,30 L18,50 Q20,60 22,65 L22,70 Q25,72 28,68 L30,45 Q32,30 35,35 L38,55 Q40,65 42,70 L42,100 Z' fill='%230a0a1a'/%3E%3Cpath d='M35,100 L35,75 Q40,70 42,60 L45,40 Q48,25 52,30 L55,50 Q58,65 60,72 L60,100 Z' fill='%23100820'/%3E%3Cpath d='M55,100 L55,68 Q60,62 62,50 L65,30 Q68,18 72,25 L75,45 Q78,60 80,68 L80,100 Z' fill='%230a0a1a'/%3E%3Cpath d='M75,100 L75,72 Q80,68 82,58 L85,42 Q88,30 92,35 L95,52 Q98,65 100,72 L100,100 Z' fill='%23100820'/%3E%3Cpath d='M95,100 L95,70 Q100,65 102,52 L105,32 Q108,20 112,28 L115,48 Q118,62 120,70 L120,100 Z' fill='%230a0a1a'/%3E%3Cpath d='M115,100 L115,75 Q120,70 122,60 L125,38 Q128,25 132,32 L135,52 Q138,65 140,75 L140,100 Z' fill='%23100820'/%3E%3Cpath d='M135,100 L135,68 Q140,62 142,48 L145,28 Q148,15 152,22 L155,42 Q158,58 160,68 L160,100 Z' fill='%230a0a1a'/%3E%3Cpath d='M155,100 L155,72 Q160,68 162,55 L165,35 Q168,22 172,28 L175,48 Q178,62 180,72 L180,100 Z' fill='%23100820'/%3E%3Cpath d='M175,100 L175,70 Q180,65 182,50 L185,30 Q188,18 192,25 L195,45 Q198,60 200,70 L200,100 Z' fill='%230a0a1a'/%3E%3Cpath d='M195,100 L195,75 Q200,70 202,58 L205,38 Q208,25 212,32 L215,52 Q218,65 220,75 L220,100 Z' fill='%23100820'/%3E%3Cpath d='M215,100 L215,68 Q220,62 222,50 L225,30 Q228,18 232,25 L235,45 Q238,60 240,68 L240,100 Z' fill='%230a0a1a'/%3E%3Cpath d='M235,100 L235,72 Q240,68 242,55 L245,35 Q248,22 252,28 L255,48 Q258,62 260,72 L260,100 Z' fill='%23100820'/%3E%3Cpath d='M255,100 L255,70 Q260,65 262,52 L265,32 Q268,20 272,28 L275,48 Q278,62 280,70 L280,100 Z' fill='%230a0a1a'/%3E%3Cpath d='M275,100 L275,75 Q280,70 282,58 L285,38 Q288,25 292,32 L295,52 Q298,65 300,75 L300,100 Z' fill='%23100820'/%3E%3Cpath d='M295,100 L295,68 Q300,62 302,48 L305,28 Q308,15 312,22 L315,42 Q318,58 320,68 L320,100 Z' fill='%230a0a1a'/%3E%3Cpath d='M315,100 L315,72 Q320,68 322,55 L325,35 Q328,22 332,28 L335,48 Q338,62 340,72 L340,100 Z' fill='%23100820'/%3E%3Cpath d='M335,100 L335,70 Q340,65 342,50 L345,30 Q348,18 352,25 L355,45 Q358,60 360,70 L360,100 Z' fill='%230a0a1a'/%3E%3Cpath d='M355,100 L355,75 Q360,70 362,60 L365,40 Q368,28 372,35 L375,55 Q378,68 380,75 L380,100 Z' fill='%23100820'/%3E%3Cpath d='M375,100 L375,68 Q380,62 382,50 L385,32 Q388,20 392,28 L395,48 Q398,62 400,68 L400,100 Z' fill='%230a0a1a'/%3E%3C/svg%3E") repeat-x bottom;
    background-size: 400px 100px;
}

.crowd-silhouette::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to top,
            rgba(10, 10, 26, 1) 0%,
            rgba(30, 15, 60, 0.95) 30%,
            rgba(60, 30, 100, 0.7) 60%,
            transparent 100%);
}

.crowd-silhouette::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    height: 80px;
    background:
        radial-gradient(ellipse 4px 8px at 5% 80%, rgba(0, 245, 255, 0.9) 0%, transparent 100%),
        radial-gradient(ellipse 3px 6px at 12% 75%, rgba(168, 85, 247, 0.8) 0%, transparent 100%),
        radial-gradient(ellipse 4px 8px at 20% 82%, rgba(255, 0, 255, 0.7) 0%, transparent 100%),
        radial-gradient(ellipse 3px 6px at 28% 78%, rgba(0, 245, 255, 0.8) 0%, transparent 100%),
        radial-gradient(ellipse 4px 8px at 35% 75%, rgba(168, 85, 247, 0.9) 0%, transparent 100%),
        radial-gradient(ellipse 3px 6px at 42% 80%, rgba(255, 0, 255, 0.7) 0%, transparent 100%),
        radial-gradient(ellipse 4px 8px at 50% 76%, rgba(0, 245, 255, 0.8) 0%, transparent 100%),
        radial-gradient(ellipse 3px 6px at 58% 82%, rgba(168, 85, 247, 0.8) 0%, transparent 100%),
        radial-gradient(ellipse 4px 8px at 65% 78%, rgba(255, 0, 255, 0.9) 0%, transparent 100%),
        radial-gradient(ellipse 3px 6px at 72% 75%, rgba(0, 245, 255, 0.7) 0%, transparent 100%),
        radial-gradient(ellipse 4px 8px at 80% 80%, rgba(168, 85, 247, 0.8) 0%, transparent 100%),
        radial-gradient(ellipse 3px 6px at 88% 77%, rgba(255, 0, 255, 0.8) 0%, transparent 100%),
        radial-gradient(ellipse 4px 8px at 95% 82%, rgba(0, 245, 255, 0.9) 0%, transparent 100%);
    animation: phoneLights 2s ease-in-out infinite alternate;
}

@keyframes phoneLights {
    0% {
        opacity: 0.6;
        transform: translateY(0);
    }

    100% {
        opacity: 1;
        transform: translateY(-2px);
    }
}

/* Hide old hero visual elements */
.hero-visual {
    display: none;
}

.hero-glow {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 500px;
    background:
        radial-gradient(ellipse 60% 40% at 50% 80%, rgba(138, 43, 226, 0.5) 0%, transparent 70%),
        radial-gradient(ellipse 50% 30% at 30% 70%, rgba(75, 0, 130, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse 50% 30% at 70% 70%, rgba(0, 100, 255, 0.3) 0%, transparent 60%);
    z-index: 4;
    filter: blur(60px);
    pointer-events: none;
}

/* ===== Section Styles ===== */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-cyan);
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

/* Specific Hero Button Overrides - Ensure Glass */
/* Specific Hero Button Overrides - Ensure Glass */
.hero-tickets-card .hero-tickets-grid .btn-ticket-main {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 4px 15px rgba(0, 0, 0, 0.1);
    color: var(--primary-cyan);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 6px;
    transition: var(--transition);
    text-align: center;
}

.hero-tickets-card .hero-tickets-grid .btn-ticket-main:hover {
    background: rgba(255, 255, 255, 0.08);
    border-top-color: rgba(255, 255, 255, 0.5);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 0 20px rgba(34, 211, 238, 0.15);
    transform: translateY(-2px);
    color: #fff;
}



.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.8);
}

/* ===== Events Section ===== */
.events-section {
    position: relative;
    padding: 6rem 0;
    /* background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-surface) 50%, var(--dark-bg) 100%); */
    z-index: 10;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.event-card {
    background: var(--dark-card);
    border: 1px solid rgba(0, 245, 255, 0.15);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.event-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-cyan);
    box-shadow: 0 20px 60px rgba(0, 245, 255, 0.15);
}

.event-card.featured {
    border-color: var(--primary-purple);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.2);
}

.event-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #1a0a30 0%, #2d1050 100%);
    overflow: hidden;
}

.event-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--dark-card) 0%, transparent 50%);
}

.event-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.75rem;
    background: var(--gradient-neon);
    color: var(--dark-bg);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 4px;
}

.event-date-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem 0.75rem;
    background: rgba(10, 10, 26, 0.9);
    border: 1px solid var(--primary-cyan);
    border-radius: 8px;
}

.event-date-badge .month {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    color: var(--primary-cyan);
    letter-spacing: 1px;
}

.event-date-badge .day {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.event-content {
    padding: 1.5rem;
}

.event-category {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--primary-purple);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.event-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.meta-item svg {
    width: 16px;
    height: 16px;
    stroke: var(--primary-cyan);
}

.event-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.event-price {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-cyan);
}

.btn-event {
    padding: 0.6rem 1.2rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-bg);
    background: var(--gradient-neon);
    border: none;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-event:hover {
    box-shadow: var(--glow-cyan);
    transform: translateY(-2px);
}

/* ===== About Section ===== */
.about-section {
    position: relative;
    padding: 6rem 0;
    z-index: 10;
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item {
    padding: 2rem;
    background: var(--dark-card);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.stat-item:hover {
    border-color: var(--primary-cyan);
    box-shadow: var(--glow-cyan);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ===== Contact Section ===== */
.contact-section {
    position: relative;
    padding: 6rem 0;
    /* background: var(--dark-surface); */
    z-index: 10;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius);
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-cyan);
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== Ticket Cards ===== */
.tickets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.ticket-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 2rem;
    background: linear-gradient(180deg, rgba(20, 20, 40, 0.6) 0%, rgba(10, 10, 20, 0.4) 100%);
    border: 0.5px solid rgba(255, 255, 255, 0.05);
    border-top: 0.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: var(--transition);
    overflow: hidden;
}

.ticket-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, rgba(34, 211, 238, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.ticket-card:hover {
    transform: translateY(-8px);
    border-color: rgba(34, 211, 238, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.ticket-card:hover::before {
    opacity: 1;
}

.ticket-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-cyan);
    box-shadow: 0 20px 60px rgba(0, 245, 255, 0.2);
}

.ticket-card.featured {
    border-color: var(--primary-purple);
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.3);
    transform: scale(1.05);
}

.ticket-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.4);
}

.ticket-badge {
    position: absolute;
    top: -12px;
    padding: 0.4rem 1rem;
    background: var(--gradient-neon);
    color: var(--dark-bg);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 20px;
}

.ticket-header {
    text-align: center;
    margin-bottom: 1rem;
}

/* ticket-qty styles defined earlier in glass button section */

.ticket-price {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.ticket-per {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--primary-cyan);
    margin-bottom: 1.5rem;
}

.btn-ticket {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-purple) 100%);
    border: none;
    border-radius: var(--btn-radius);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(34, 211, 238, 0.3);
}

.btn-ticket:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(0, 245, 255, 0.7);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===== Footer ===== */
.footer {
    position: relative;
    padding: 4rem 0 2rem;
    border-top: 0.5px solid rgba(255, 255, 255, 0.05);
    z-index: 10;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-family: var(--font-heading);
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-domain {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--primary-cyan);
    font-family: var(--font-display);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-domain:hover {
    color: var(--dark-bg);
    background: var(--primary-cyan);
    border-color: var(--primary-cyan);
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.4);
}

.footer-copy {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark-surface);
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid rgba(0, 245, 255, 0.1);
    }

    .hero {
        padding: 6rem 1rem 2rem;
    }

    .hero-date {
        flex-direction: column;
        gap: 1rem;
    }

    .date-divider {
        width: 40px;
        height: 1px;
    }

    .hero-location {
        flex-direction: column;
        text-align: center;
    }

    .location-text {
        text-align: center;
    }

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

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .tickets-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
    }
}

/* Hide text elements that overlap with the hero banner image - REMOVED for no-logo banner */
/* .main-headline,
.main-subtext,
.event-badge-pill {
    display: none !important;
} */

.ticket-card.featured {
    transform: scale(1);
}

.ticket-card.featured:hover {
    transform: translateY(-8px);
}