@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@300;400;700&display=swap');

:root {
    --bg-color: #050505;
    --surface-color: #101010;
    --primary-red: #D10000;
    --deep-crimson: #8B0000;
    --glow-red: #FF3B30;
    --gold-accent: #F5B301;
    --white: #FFFFFF;
    --secondary-text: #B6B6B6;
    --glass-bg: rgba(16, 16, 16, 0.1);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

h1, h2, h3, .heading-font {
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 2px;
}

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    border: none;
    transition: var(--transition-smooth);
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 60px 0;
}

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

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
}

.btn-primary:hover {
    background-color: var(--glow-red);
    transform: scale(1.05);
}

.btn-primary:active {
    transform: scale(0.97);
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes motionText {
    0% { transform: scale(0.9); opacity: 0; filter: blur(10px); }
    50% { transform: scale(1.05); opacity: 0.5; filter: blur(5px); }
    100% { transform: scale(1); opacity: 1; filter: blur(0); }
}

.animate-pulse {
    animation: pulse 3s infinite ease-in-out;
}

.motion-text {
    animation: motionText 1s cubic-bezier(0.34, 1.56, 0.64, 1) infinite alternate;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    border-bottom: 1px solid var(--glass-border);
}

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

.logo {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.2rem;
    color: var(--white);
    font-weight: bold;
    display: flex;
    align-items: center;
}

.logo img {
    height: 30px;
    vertical-align: middle;
    margin-right: 10px;
}

.logo span {
    color: var(--primary-red);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--white);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--secondary-text);
    transition: var(--transition-smooth);
}

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

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-content {
    z-index: 10;
    max-width: 800px;
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-title {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 20px;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--secondary-text);
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.hero-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    font-weight: 400;
    color: var(--white);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.hero .btn-primary {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

/* Cinematic Background Effects */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #050505;
}

.hero-video {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    pointer-events: none;
}

.spotlight {
    position: absolute;
    z-index: 1;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(209, 0, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
    animation: moveSpotlight 15s infinite alternate ease-in-out;
}

@keyframes moveSpotlight {
    0% { transform: translate(-20%, -20%); }
    100% { transform: translate(20%, 20%); }
}

.smoke-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.4;
}

/* Countdown Section */
.countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.countdown-item {
    text-align: center;
}

.countdown-value {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: var(--white);
    display: block;
}

.countdown-label {
    font-size: 0.7rem;
    color: var(--secondary-text);
    text-transform: uppercase;
}

/* Artists Grid */
.artist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

@keyframes slideInRight {
    0% { opacity: 0; transform: translateX(20px); }
    100% { opacity: 1; transform: translateX(0); }
}

.artist-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.artist-card.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.artist-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    animation: float 4s infinite ease-in-out;
}

.artist-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    text-align: center;
}

.artist-name {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    color: var(--white);
}

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

.artist-card:hover {
    box-shadow: 0 0 20px var(--glow-red);
}

/* Schedule Timeline */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 50px auto;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
    padding-left: 0;
}

.timeline-item {
    position: relative;
    margin-bottom: 0;
    text-align: center;
    flex: 1;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -20px;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: var(--primary-red);
    border: 4px solid var(--bg-color);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 10px var(--glow-red);
}

.timeline-time {
    font-weight: bold;
    color: var(--glow-red);
    margin-bottom: 10px;
    display: block;
    margin-top: 25px;
}

.timeline-event {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: var(--white);
}

/* Sponsors */
.sponsors-slider {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 40px 0;
}

.sponsors-track {
    display: inline-block;
    animation: scrollSponsors 30s linear infinite;
}

.sponsors-track:hover {
    animation-play-state: paused;
}

.sponsor-img {
    display: inline-block;
    width: 150px;
    height: 80px;
    margin: 0 40px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: var(--transition-smooth);
}

.sponsor-img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

@keyframes scrollSponsors {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Venue Section */
.venue-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: var(--surface-color);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-text);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title { font-size: 3rem; }
    .hero-details { flex-direction: column; gap: 15px; align-items: center; }
    .countdown { grid-template-columns: repeat(2, 1fr); }
    .venue-container { grid-template-columns: 1fr; }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(5, 5, 5, 0.95);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s ease-in-out;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }
}

/* Footer */
.main-footer {
    border-top: 4px solid var(--primary-red);
    padding: 20px 0;
    background-color: var(--bg-color);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 0.8rem;
    color: var(--secondary-text);
    min-height: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-align: center;
}

.footer-brand .footer-title {
    font-weight: bold;
    color: var(--white);
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    transition: var(--transition-smooth);
}

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

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 14px;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .footer-links a {
        font-size: 0.85rem;
        font-weight: 600;
    }
}
