:root {
    --bg-deep: #05070f;
    --bg-dark: #0b1436;
    --neon-blue: #3a6df0;
    --electric-neon: #3a6df0;
    --cyan-glow: #00f2fe;
    --text-main: #ffffff;
    --text-secondary: #a6b8d4;
    --text-muted: #a6b8d4;
    --glass-bg: rgba(11, 20, 54, 0.4);
    --glass-border: rgba(58, 109, 240, 0.2);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-deep);
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Base Antigravity Container */
#antigravity-container {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    perspective: 1200px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Hero Fullscreen Section */
.hero-fullscreen {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-bottom: 6rem;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(5, 7, 15, 0.4) 0%, rgba(5, 7, 15, 0.6) 60%, var(--bg-deep) 100%);
}

/* Layers */
.antigravity-layer {
    transition: transform 0.1s ease-out;
    transform-style: preserve-3d;
    will-change: transform;
}

/* Header */
header {
    position: absolute;
    top: 2rem;
    left: 5%;
    right: 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.logo-img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));
}

.btn-instagram {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-instagram:hover {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Hero Content */
.hero-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    z-index: 3;
    padding: 0 1.5rem;
}

.main-content {
    padding: 0 20px;
    max-width: 100%;
    overflow-x: hidden;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(45deg, #ffffff 30%, var(--cyan-glow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(0, 242, 254, 0.4), 0 10px 40px rgba(5, 7, 15, 0.8);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.75rem;
    text-transform: uppercase;
    color: rgba(240, 244, 255, 0.75);
    margin-top: 10px;
    letter-spacing: 4px;
    font-weight: 400;
}

/* Typography specifics */
h2.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-align: center;
    color: #ffffff;
}

/* Tickets Banner */
.tickets-banner {
    text-align: center;
    margin: 0 auto 6rem auto;
    padding: 3rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    max-width: 800px;
    z-index: 6;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    position: relative;
}

.tickets-banner::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(58, 109, 240, 0.8), transparent);
}

.tickets-banner h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #ffffff;
    font-weight: 800;
}

.btn-ticket {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--bg-deep);
    background: linear-gradient(135deg, var(--cyan-glow), var(--neon-blue));
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 0 25px rgba(0, 242, 254, 0.5), inset 0 0 10px rgba(255,255,255,0.5);
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.btn-ticket:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 0 35px rgba(0, 242, 254, 0.8), inset 0 0 15px rgba(255,255,255,0.8);
}

/* Shows Grid */
.shows-section {
    max-width: 1200px;
    margin: 0 auto 6rem auto;
    z-index: 5;
    width: 100%;
}

.shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.show-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.4s ease, box-shadow 0.4s ease;
}

.show-card:hover {
    border-color: rgba(0, 242, 254, 0.5);
    box-shadow: 0 25px 50px rgba(0, 242, 254, 0.2);
    transform: translateY(-10px);
}

.show-img {
    height: 450px;
    background-size: cover;
    background-position: center;
    position: relative;
    width: 100%;
}

.show-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.show-info {
    padding: 1.5rem;
    position: relative;
}

.show-date {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, var(--neon-blue), var(--cyan-glow));
    color: var(--bg-deep);
    padding: 0.4rem 1.2rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 800;
    box-shadow: 0 5px 15px rgba(58, 109, 240, 0.5);
    text-transform: uppercase;
}

.show-info h4 {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 800;
    margin-top: 0.5rem;
}

/* Gallery Section */
.gallery-section {
    max-width: 1200px;
    margin: 0 auto 6rem auto;
    z-index: 5;
    width: 100%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-auto-rows: 250px;
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.item-1 { grid-column: span 2; grid-row: span 2; }
.item-2 { grid-column: span 2; grid-row: span 1; }
.item-3 { grid-column: span 1; grid-row: span 1; }
.item-4 { grid-column: span 1; grid-row: span 1; }

/* Grid Content (Info & Res) */
.grid-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 4rem auto;
    z-index: 5;
}

.info-card, .reservation-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.info-card::before, .reservation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 242, 254, 0.5), transparent);
}

.info-card h3, .reservation-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 800;
}

.info-card ul {
    list-style: none;
}

.info-card li {
    margin-bottom: 1.2rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
    display: flex;
    flex-direction: column;
}

.info-card li strong {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.reservation-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.btn-primary {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 1.2rem;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--neon-blue), var(--cyan-glow));
    color: var(--bg-deep);
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(58, 109, 240, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 242, 254, 0.6);
}

/* Upcoming Events Section */
.events {
    max-width: 1200px;
    margin: 0 auto 6rem auto;
    z-index: 5;
    width: 100%;
}

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

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    min-height: 250px;
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.loading-events {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--glass-border);
    border-top: 4px solid var(--cyan-glow);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 20px var(--cyan-glow), inset 0 0 10px rgba(0, 242, 254, 0.2);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.events-action {
    text-align: center;
    margin-top: 4rem;
}

.btn-outline {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--cyan-glow);
    background: transparent;
    border: 2px solid var(--cyan-glow);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.2), inset 0 0 10px rgba(0, 242, 254, 0.1);
    letter-spacing: 1px;
}

.btn-outline:hover {
    background: rgba(0, 242, 254, 0.1);
    box-shadow: 0 0 25px rgba(0, 242, 254, 0.5), inset 0 0 15px rgba(0, 242, 254, 0.3);
    transform: scale(1.05) translateY(-3px);
    color: #ffffff;
    border-color: var(--electric-neon);
}

/* Interactive Map Section */
.map-section {
    max-width: 1200px;
    margin: 0 auto 6rem auto;
    z-index: 5;
    width: 100%;
    padding: 0 1rem;
}

.map-header {
    text-align: center;
    margin-bottom: 2rem;
}

.map-header .section-title {
    margin-bottom: 0.5rem;
}

.map-address {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 300;
    letter-spacing: 1px;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    background: var(--glass-bg);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: invert(90%) hue-rotate(180deg) grayscale(30%) contrast(1.2);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: invert(90%) hue-rotate(180deg) grayscale(10%) contrast(1.2);
}

/* Footer */
footer {
    margin-top: auto;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 10;
}

footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.support-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.support-link:hover {
    color: var(--cyan-glow);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .item-1 { grid-column: span 2; }
    .item-2 { grid-column: span 2; }
    .item-3, .item-4 { grid-column: span 1; }
}

@media (max-width: 768px) {
    #antigravity-container {
        perspective: none;
        overflow-y: auto;
    }

    .hero-fullscreen {
        min-height: 100vh;
        height: 100vh;
    }

    .antigravity-layer {
        transform: none !important;
        transition: none !important;
    }

    header {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-content {
        margin: 4rem auto;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    .grid-content, .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .item-1, .item-2, .item-3, .item-4 {
        grid-column: span 1;
        grid-row: span 1;
        grid-auto-rows: 200px;
    }

    .tickets-banner {
        padding: 2rem 1.5rem;
    }

    .btn-ticket {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }

    footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
