• {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #050505;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3 {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #ff000033;
}

.logo {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ff0000;
    text-shadow: 0 0 10px #ff0000;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 30px;
    font-size: 0.9rem;
    transition: 0.3s;
}

nav a:hover {
    color: #ff0000;
}

section {
    padding: 100px 10%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(5,5,5,1)), url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&q=80&w=1920');
    background-size: cover;
    background-position: center;
    text-align: center;
    align-items: center;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #fff;
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 10px #ff0000; }
    to { text-shadow: 0 0 30px #ff0000, 0 0 40px #8b0000; }
}

.hero p {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 600px;
}

.about-text {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #ddd;
    border-left: 3px solid #ff0000;
    padding-left: 20px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.card {
    background: #111;
    padding: 30px;
    border: 1px solid #333;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.card:hover {
    border-color: #ff0000;
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
}

.card h3 {
    color: #ff0000;
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background: #ff0000;
    color: #fff;
    text-decoration: none;
    margin-top: 20px;
    font-weight: bold;
    transition: 0.3s;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}

.btn:hover {
    background: #8b0000;
    transform: scale(1.05);
}

.playlist-embed {
    width: 100%;
    height: 400px;
    background: #111;
    border: 1px solid #ff0000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

footer {
    padding: 50px;
    text-align: center;
    border-top: 1px solid #333;
    color: #666;
    } 
@media (max-width: 768px) {

    body {
        font-size: 14px;
    }

    h1, h2, h3 {
        text-align: center;
    }

    header {
        padding: 15px;
        flex-direction: column; 
        text-align: center;
        position: static; 
        background: rgba(0, 0, 0, 0.9); 
    }

    .logo {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    nav a {
        font-size: 0.9rem;
        padding: 8px 12px;
    }

    .hero {
        padding: 80px 20px 40px; 
        background-size: cover;
    }

    .hero-content h1 {
        font-size: 2.5rem; 
    }

    .hero-content p {
        font-size: 1.1rem;
        text-align: center;
    }

    .scroll-indicator {
        display: none; 
    }

    section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .grid-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card {
        padding: 20px;
    }

    .cta-section {
        padding: 60px 20px;
    }

    .cta-container h2 {
        font-size: 1.8rem;
    }

    .cta-container p {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 1rem;
    }

    .playlist-embed {
        width: 100%; 
        margin: 20px auto;
        padding: 10px;
        border-radius: 15px;
    }

    footer {
        padding: 30px 20px;
    }

    .footer-logo {
        font-size: 1.5rem;
    }

    .social-links {
        gap: 15px;
    }
}
@media (max-width: 480px) {
    nav a {
        font-size: 0.8rem;
        padding: 6px 10px;
    }

    .card-icon {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 15px;
        font-size: 0.9rem;
        width: 100%;
        box-sizing: border-box;
    }
}
#prehistory {
    background: linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
    padding: 60px 10%; 
}

.prehistory-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}
.prehistory-box span {
    color: #ff0000;
    font-weight: bold;
    font-family: 'Orbitron', sans-serif; 
}

.prehistory-box p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 20px;
}

.prehistory-box span {
    color: #ff0000;
    font-weight: bold;
    font-family: 'Orbitron', sans-serif;
}
.btn {
    display: inline-block;
    margin-left: 50px;
    width: fit-content; 
    padding: 15px 30px; 
}
@media (max-width: 768px) {
    .grid-container {
        display: grid;
        grid-template-columns: 1fr !important;
        padding: 10px;
    }

    nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

 
    h1 {
        font-size: 28px !important;
    }

 
    .playlist-embed iframe {
        height: 450px;
    }

    section {
    padding: 20px 10px !important;

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #050505;
    display: flex;
    justify-content: center; 
    align-items: center; 
    z-index: 9999; 
    transition: opacity 0.8s ease-out, transform 0.8s ease-out; 
    opacity: 1; 
    transform: translateY(0); 
}

#loader.loaded {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none; 
}

.loader-inner {
    text-align: center; 
}

.loader-circle {
    width: 80px;
    height: 80px;
    border: 5px solid #ff0000;
    border-top-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
    margin: 0 auto 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); } 
    100% { transform: rotate(360deg); }
}


.loader-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
#merch {
    background-image: url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?q=80&w=2070&auto=format&fit=crop'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 !important;
}

.merch-overlay {
    background: rgba(0, 0, 0, 0.6); 
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-go {
    margin-top: 25px;
    padding: 12px 40px;
    background-color: #ff0000;
    color: white;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    border-radius: 4px; 
}

.btn-go:hover {
    background-color: transparent;
    border: 2px solid #ff0000;
    color: #ff0000;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5); 

.card-link {
    text-decoration: none; 
    color: inherit; 
    display: block; 
    transition: transform 0.3s ease;
}

.card-link:hover .card {
    transform: translateY(-5px); 
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.2);
    cursor: pointer;
}