:root {
    --primary-black: #000000;
    --neon-red: #d60000;
    --text-white: #ffffff;
    --glass-bg: rgba(0, 0, 0, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--primary-black);
    color: var(--text-white);
    font-family: var(--font-main);
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 4rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    display: flex;
    justify-content: center;
}

.nav-container {
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 4rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 300;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--neon-red);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--neon-red);
}

.nav-links a:hover {
    color: var(--text-white);
    text-shadow: 0 0 15px var(--neon-red);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    color: var(--text-white);
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background: radial-gradient(circle at center, #1a0000 0%, #000000 70%);
}

.hero-content {
    text-align: center;
    z-index: 10;
}

.hero-title {
    font-size: 12rem;
    font-weight: 900;
    color: var(--text-white);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    text-shadow:
        0 0 10px var(--neon-red),
        0 0 20px var(--neon-red),
        0 0 40px var(--neon-red),
        0 0 80px var(--neon-red);
    animation: neonPulse 2s ease-in-out infinite;
}

@keyframes neonPulse {

    0%,
    100% {
        text-shadow:
            0 0 10px var(--neon-red),
            0 0 20px var(--neon-red),
            0 0 40px var(--neon-red),
            0 0 80px var(--neon-red);
    }

    50% {
        text-shadow:
            0 0 5px var(--neon-red),
            0 0 15px var(--neon-red),
            0 0 30px var(--neon-red),
            0 0 60px var(--neon-red);
    }
}

.hero-title:hover {
    text-shadow:
        0 0 20px var(--neon-red),
        0 0 40px var(--neon-red),
        0 0 60px var(--neon-red),
        0 0 100px var(--neon-red);
    transform: scale(1.05);
}

.hero-subtitle {
    font-size: 1.5rem;
    letter-spacing: 10px;
    margin-top: -20px;
    opacity: 0.8;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    animation: bounce 2s infinite;
    color: var(--neon-red);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 400px;
    aspect-ratio: 9/16;
    background: #000;
    border: 2px solid var(--neon-red);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(214, 0, 0, 0.3);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    z-index: 10;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* About Section */
.about {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #000000 0%, #1a0000 50%, #000000 100%);
    text-align: center;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--neon-red);
    text-transform: uppercase;
}

.about-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    color: #ccc;
}

.features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.feature-item i {
    width: 48px;
    height: 48px;
    color: var(--neon-red);
}

/* DJ Program */
.dj-program {
    padding: 6rem 2rem;
    background: #000;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    text-transform: uppercase;
    color: var(--text-white);
    border-bottom: 2px solid var(--neon-red);
    display: inline-block;
    padding-bottom: 0.5rem;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.dj-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.dj-card {
    background: #0a0a0a;
    border: 1px solid #222;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.dj-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--neon-red);
    box-shadow: 0 0 20px rgba(214, 0, 0, 0.2);
}

.dj-image-placeholder {
    height: 250px;
    background: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #444;
    font-weight: bold;
    letter-spacing: 2px;
}

.dj-info {
    padding: 1.5rem;
    text-align: center;
}

.dj-info h3 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.dj-info p {
    color: var(--neon-red);
    font-weight: bold;
}

/* Gallery Section */
.gallery {
    padding: 6rem 2rem;
    background: #050505;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    aspect-ratio: 1;
    background: #111;
    border-radius: 10px;
    border: 2px solid #222;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
    border-color: var(--neon-red);
    box-shadow: 0 0 30px rgba(214, 0, 0, 0.4);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* Video Gallery Item */
.gallery-video {
    grid-column: span 1;
    grid-row: span 2;
    aspect-ratio: 9/16;
}

.gallery-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-video:hover video {
    transform: scale(1.05);
}

/* Contact Section */
.contact {
    padding: 6rem 2rem;
    background: linear-gradient(0deg, #000000 0%, #1a0000 50%, #000000 100%);
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    flex: 1;
    min-width: 300px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.2rem;
    color: #ccc;
}

.info-item i {
    color: var(--neon-red);
    width: 24px;
    height: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
    min-width: 300px;
}

.contact-form input,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    padding: 1rem;
    border-radius: 5px;
    color: white;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--neon-red);
    background: rgba(255, 255, 255, 0.1);
}

.contact-form button {
    background: var(--neon-red);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background: #ff0000;
    box-shadow: 0 0 20px rgba(214, 0, 0, 0.4);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: #050505;
    padding: 3rem 2rem;
    border-top: 1px solid #222;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-white);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: white;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--neon-red);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 6rem;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
}