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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: #000000;
    color: #F5F5F0;
    overflow-x: hidden;
}

/* NAVIGATION */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #1A1A1A;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 3rem;
}

nav a {
    color: #F5F5F0;
    text-decoration: none;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #F5F5F0;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: #808080;
}

/* SECTIONS */
section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 6rem 2rem 4rem;
}

/* HOME SECTION */
#home {
    background: linear-gradient(135deg, #000000 0%, #1A1A1A 100%);
    position: relative;
}

#home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(128, 128, 128, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.countdown-container {
    text-align: center;
    position: relative;
    z-index: 1;
}

.countdown-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    letter-spacing: 8px;
    margin-bottom: 3rem;
    animation: fadeInDown 1s ease-out;
}

.countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 900px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.countdown-item {
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid #808080;
    padding: 2rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
    border-color: #F5F5F0;
    box-shadow: 0 10px 30px rgba(245, 245, 240, 0.1);
}

.countdown-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 5rem);
    color: #F5F5F0;
    line-height: 1;
    text-shadow: 0 0 20px rgba(245, 245, 240, 0.3);
}

.countdown-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: #808080;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 1rem;
}

/* MUSIC SECTION */
#music {
    background-color: #000000;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    letter-spacing: 8px;
    margin-bottom: 3rem;
    text-align: center;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    padding-bottom: 50.625%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.dsp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 2rem;
    max-width: 800px;
    width: 100%;
}

.dsp-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #F5F5F0;
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 10px;
    background: rgba(26, 26, 26, 0.3);
    border: 1px solid transparent;
}

.dsp-icon:hover {
    transform: translateY(-10px);
    border-color: #808080;
    background: rgba(26, 26, 26, 0.6);
}

.dsp-icon i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.dsp-icon span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.dsp-icon:hover i {
    color: #808080;
}

/* MERCH SECTION */
#merch {
    background: linear-gradient(135deg, #1A1A1A 0%, #000000 100%);
}

.coming-soon {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 12vw, 10rem);
    letter-spacing: 20px;
    text-align: center;
    animation: pulse 3s ease-in-out infinite;
    text-shadow: 0 0 40px rgba(245, 245, 240, 0.3);
}

/* MODAL POPUP */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: #1A1A1A;
    border: 2px solid #808080;
    border-radius: 10px;
    padding: 3rem 2rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: slideIn 0.4s ease;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: #808080;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #F5F5F0;
    transform: rotate(90deg);
}

.modal-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    letter-spacing: 6px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.modal-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    color: #808080;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.6;
}

#subscriptionForm {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#subscriptionForm input[type="email"] {
    padding: 1rem;
    background-color: #000000;
    border: 1px solid #808080;
    border-radius: 5px;
    color: #F5F5F0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

#subscriptionForm input[type="email"]:focus {
    outline: none;
    border-color: #F5F5F0;
    box-shadow: 0 0 10px rgba(245, 245, 240, 0.2);
}

#subscriptionForm input[type="email"]::placeholder {
    color: #808080;
}

#subscriptionForm button {
    padding: 1rem;
    background-color: #F5F5F0;
    color: #000000;
    border: none;
    border-radius: 5px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#subscriptionForm button:hover {
    background-color: #808080;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 245, 240, 0.3);
}

/* FOOTER */
.footer {
    background-color: #000000;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid #1A1A1A;
    width: 100%;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    color: #808080;
    letter-spacing: 1px;
    margin: 0;
}

/* ANIMATIONS */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    nav ul {
        gap: 1.5rem;
    }

    nav a {
        font-size: 1.2rem;
    }

    .countdown {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .dsp-grid {
        grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
        gap: 1rem;
    }

    .coming-soon {
        letter-spacing: 10px;
    }

    .modal-content {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    nav ul {
        gap: 1rem;
    }

    nav a {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .countdown-item {
        padding: 1.5rem 0.5rem;
    }

    .dsp-icon i {
        font-size: 2rem;
    }
}
