/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #DC143C;
    --primary-gold: #FFD700;
    --accent-orange: #FF4500;
    --dark-bg: #0A0A0A;
    --light-text: #FFFFFF;
    --gray-text: #999999;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

/* ===== NAVIGATION ===== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

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

.nav-logo {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    color: #FFD700;
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #FFD700;
}

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

.nav-link:hover::after {
    width: 100%;
}

/* ===== LOADER ===== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

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

.flame-loader {
    width: 60px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(to top, #FF0000, #FF6347, #FFD700);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: flicker 1s ease-in-out infinite alternate;
}

@keyframes flicker {
    0% { transform: scale(1) rotate(-2deg); filter: brightness(1); }
    100% { transform: scale(1.1) rotate(2deg); filter: brightness(1.2); }
}

.loader-text {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    letter-spacing: 4px;
    color: var(--primary-gold);
    animation: pulse 1s infinite;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 69, 0, 0.3);
}

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

.nav-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo-img {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
    transition: var(--transition);
}

.nav-logo-img:hover {
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
    transform: scale(1.05);
}

/* Reduce logo size when scrolled */
.navbar.scrolled .nav-logo-img {
    height: 45px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--light-text);
    text-decoration: none;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-gold);
}

.nav-link:hover::after {
    width: 100%;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    height: 100vh;
    padding-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(220, 20, 60, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 69, 0, 0.2) 0%, transparent 50%),
        radial-gradient(circle at center, rgba(0, 0, 0, 0.8) 0%, transparent 100%),
        #000;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}

.particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(5rem, 15vw, 12rem);
    line-height: 0.9;
    margin-bottom: 20px;
}

.title-line {
    display: block;
    letter-spacing: 5px;
    text-shadow: 
        0 0 30px rgba(255, 69, 0, 0.5),
        0 0 60px rgba(255, 69, 0, 0.3),
        3px 3px 0 rgba(0, 0, 0, 0.8);
    animation: glitch 3s infinite;
}

.title-line.accent {
    color: var(--primary-gold);
    text-shadow: 
        0 0 40px rgba(255, 215, 0, 0.6),
        0 0 80px rgba(255, 215, 0, 0.4),
        4px 4px 0 rgba(220, 20, 60, 0.8);
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

.hero-tagline {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 3px;
    color: var(--gray-text);
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    color: var(--primary-gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: var(--gray-text);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-decoration: none;
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: var(--primary-red);
    color: white;
    border-color: var(--primary-red);
}

.cta-button.primary:hover {
    background: transparent;
    color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary-gold);
    border-color: var(--primary-gold);
}

.cta-button.secondary:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.button-icon {
    font-size: 1.3rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-text {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--gray-text);
    margin-bottom: 10px;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    margin: 0 auto;
    border-right: 2px solid var(--primary-gold);
    border-bottom: 2px solid var(--primary-gold);
    transform: rotate(45deg);
}

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

/* ===== MUSIC SECTION ===== */
.music-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0F0F0F 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 4rem;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.title-accent {
    color: var(--primary-gold);
}

.section-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: var(--gray-text);
    letter-spacing: 2px;
}

.music-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.featured-video {
    margin-bottom: 60px;
}

.video-frame {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border: 3px solid var(--primary-red);
    box-shadow: 0 0 50px rgba(220, 20, 60, 0.3);
    background: #000;
}

.video-frame video,
.video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-info {
    margin-top: 30px;
    text-align: center;
}

.track-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.track-description {
    color: var(--gray-text);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.streaming-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.album-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-gold);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
    padding: 12px 24px;
    border: 2px solid var(--primary-gold);
    background: rgba(255, 215, 0, 0.1);
    transition: var(--transition);
}

.album-link:hover {
    color: var(--dark-bg);
    background: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.platform-icon {
    font-size: 1.3rem;
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.track-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 69, 0, 0.2);
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

a.track-card {
    background: rgba(255, 215, 0, 0.05);
    border-color: var(--primary-gold);
}

.track-card:hover {
    background: rgba(255, 69, 0, 0.1);
    border-color: var(--primary-gold);
    transform: translateX(10px);
}

a.track-card:hover {
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.track-number {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: var(--primary-red);
    opacity: 0.5;
}

.track-name {
    flex: 1;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
}

.track-duration {
    color: var(--gray-text);
    font-size: 0.9rem;
}

.download-section {
    text-align: center;
    padding: 60px 0;
}

.download-box {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.1), rgba(255, 69, 0, 0.1));
    border: 2px solid var(--primary-red);
    padding: 50px;
    max-width: 600px;
    margin: 0 auto;
}

.download-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.download-subtitle {
    color: var(--gray-text);
    margin-bottom: 30px;
}

.download-btn {
    display: inline-block;
    position: relative;
    padding: 20px 50px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: white;
    text-decoration: none;
    background: transparent;
    border: 3px solid var(--primary-gold);
    overflow: hidden;
    transition: var(--transition);
}

.btn-bg {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-gold);
    transition: left 0.3s ease;
    z-index: -1;
}

.download-btn:hover .btn-bg {
    left: 0;
}

.download-btn:hover {
    color: var(--dark-bg);
    transform: scale(1.05);
}

/* ===== MISSION SECTION ===== */
.mission-section {
    padding: 100px 0;
    background: #050505;
    position: relative;
    overflow: hidden;
}

.mission-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mission-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 5rem;
    line-height: 0.9;
    margin-bottom: 30px;
}

.mission-title .line {
    display: block;
}

.mission-title .highlight {
    color: var(--primary-gold);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.mission-statement {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray-text);
    margin-bottom: 40px;
}

.mission-values {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.value-icon {
    font-size: 2rem;
    color: var(--primary-red);
}

.value h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--primary-gold);
}

.value p {
    color: var(--gray-text);
}

.mission-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flame-animation {
    position: relative;
    width: 300px;
    height: 400px;
}

.flame {
    position: absolute;
    bottom: 0;
    width: 100px;
    height: 150px;
    background: linear-gradient(to top, #FF0000, #FF6347, #FFD700, transparent);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0.8;
    filter: blur(10px);
    animation: burn 2s ease-in-out infinite;
}

.flame:nth-child(1) {
    left: 30%;
    animation-delay: 0s;
}

.flame:nth-child(2) {
    left: 50%;
    width: 120px;
    height: 180px;
    animation-delay: 0.5s;
}

.flame:nth-child(3) {
    left: 40%;
    width: 80px;
    height: 130px;
    animation-delay: 1s;
}

@keyframes burn {
    0%, 100% {
        transform: scaleY(1) rotate(-2deg);
        filter: blur(10px) brightness(1);
    }
    50% {
        transform: scaleY(1.2) rotate(2deg);
        filter: blur(15px) brightness(1.2);
    }
}

/* ===== SUPPORT SECTION ===== */
.support-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.05), rgba(0, 0, 0, 0.95));
    text-align: center;
}

.support-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.support-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 4rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.support-text {
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-bottom: 50px;
    line-height: 1.8;
}

.support-options {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 30px;
}

.support-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 30px 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--primary-red);
    text-decoration: none;
    color: white;
    transition: var(--transition);
}

.support-btn:hover {
    background: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.4);
}

.support-icon {
    font-size: 2.5rem;
}

.support-method {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.support-note {
    color: var(--gray-text);
    font-style: italic;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(0, 0, 0, 0.95));
    text-align: center;
}

.newsletter-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.newsletter-text {
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-bottom: 40px;
}

.newsletter-form {
    display: flex;
    gap: 20px;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.email-input {
    flex: 1;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--primary-gold);
    color: white;
    font-size: 1rem;
    border-radius: 50px;
    outline: none;
    transition: var(--transition);
}

.email-input::placeholder {
    color: var(--gray-text);
}

.email-input:focus {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.subscribe-btn {
    padding: 15px 40px;
    background: var(--primary-gold);
    color: var(--dark-bg);
    border: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.subscribe-btn:hover {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .newsletter-form {
        flex-direction: column;
    }
    
    .email-input, .subscribe-btn {
        width: 100%;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: #000;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 69, 0, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.footer-brand {
    margin-bottom: 40px;
}

.footer-logo {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.footer-verse {
    color: var(--gray-text);
    font-style: italic;
}

.footer-links h4 {
    font-family: 'Oswald', sans-serif;
    margin-bottom: 20px;
    color: var(--primary-gold);
}

.social-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 40px;
}

.social-links a {
    color: var(--gray-text);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-text);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 0.8rem;
    }
    
    .nav-logo-img {
        height: 45px;
        max-width: 150px;
    }
    
    .hero-title {
        font-size: clamp(4rem, 12vw, 8rem);
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-visual {
        order: -1;
    }
    
    .support-options {
        flex-direction: column;
        align-items: center;
    }
    
    .support-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 20px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 250px;
    }
    
    .music-grid {
        grid-template-columns: 1fr;
    }
    
    .download-box {
        padding: 30px 20px;
    }
}