/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --red: #8b1a1a;
    --red-light: #c0392b;
    --red-glow: #ff2200;
    --dark: #0a0a0a;
    --darker: #050505;
    --gray: #1a1a1a;
    --gray-light: #2a2a2a;
    --metal: #4a4a4a;
    --metal-light: #7a7a7a;
    --text: #e0e0e0;
    --text-dim: #888;
    --gold: #c9a84c;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--darker);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* === NAVIGATION === */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(139, 26, 26, 0.3);
    padding: 1rem 2rem;
}

.main-nav ul {
    display: flex;
    justify-content: center;
    gap: 3rem;
    list-style: none;
}

.main-nav a {
    color: var(--text-dim);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    transition: color 0.3s, text-shadow 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--red-light);
    text-shadow: 0 0 10px rgba(192, 57, 43, 0.5);
}

/* === HERO === */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, 
        rgba(5,5,5,0.6) 0%, 
        rgba(5,5,5,0.5) 40%,
        rgba(5,5,5,0.7) 80%,
        rgba(5,5,5,1) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero-logo {
    width: 144px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(139, 26, 26, 0.5));
}

.hero-title {
    max-width: 600px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(0,0,0,0.8));
}

.hero-subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--text);
    margin-top: 0.5rem;
}

.scroll-arrow {
    display: inline-block;
    margin-top: 2rem;
    color: var(--text-dim);
    transition: color 0.3s, transform 0.3s;
    animation: bounceDown 2s infinite;
}

.scroll-arrow:hover {
    color: var(--red-light);
    transform: translateY(4px);
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* === SECTIONS === */
.section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    letter-spacing: 6px;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-dim);
    position: relative;
}

.section-title::before,
.section-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 80px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--red), transparent);
}

.section-title::before { right: calc(50% + 120px); }
.section-title::after { left: calc(50% + 120px); }

/* === LATEST RELEASE === */
.release-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.release-cover img {
    width: 100%;
    max-width: 380px;
    aspect-ratio: 1;
    object-fit: cover;
    border: 1px solid var(--gray-light);
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}

.release-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--red-light);
}

.release-title {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 900;
    margin: 0.5rem 0 1rem;
    letter-spacing: 4px;
}

.release-description {
    color: var(--text-dim);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.btn-tracklist {
    display: inline-block;
    padding: 0.7rem 2rem;
    border: 1px solid var(--metal);
    color: var(--text);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    transition: all 0.3s;
}

.btn-tracklist:hover {
    border-color: var(--red);
    box-shadow: 0 0 15px rgba(139, 26, 26, 0.3);
}

.streaming-icons {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    width: 100%;
    gap: 1rem;
}

.stream-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--red-light);
    background: transparent;
    color: var(--red-light);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 0 8px rgba(192, 57, 43, 0.15), inset 0 0 8px rgba(192, 57, 43, 0.05);
}

.stream-btn:hover {
    background: rgba(192, 57, 43, 0.1);
    box-shadow: 0 0 20px rgba(192, 57, 43, 0.4), inset 0 0 15px rgba(192, 57, 43, 0.1);
    color: #fff;
    border-color: var(--red-glow);
}

@media (max-width: 768px) {
    .streaming-icons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .stream-btn {
        width: 100%;
        max-width: 280px;
    }
}

.stream-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--metal-light);
    text-decoration: none;
    font-size: 1.4rem;
    transition: color 0.3s;
}

.stream-link span {
    font-size: 1rem;
}

.stream-link:hover {
    color: #fff;
}

/* === MEET THE CREW === */
.crew-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.crew-member {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s;
}

.crew-member:hover {
    transform: translateY(-5px);
}

.crew-portrait {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid var(--gray-light);
}

.crew-portrait img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s, filter 0.3s;
}

.crew-member:hover .crew-portrait img {
    transform: scale(1.03);
}

.crew-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 10, 0.85);
    opacity: 0;
    transition: opacity 0.4s;
    padding: 1rem;
}

.crew-member:hover .crew-overlay {
    opacity: 1;
}

.crew-quote {
    font-style: italic;
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.5;
}

.crew-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 2px;
    margin-bottom: 0.3rem;
}

.crew-role {
    font-size: 0.8rem;
    color: var(--text-dim);
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.crew-element {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 1px;
    color: var(--red-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.element-icon {
    font-size: 0.9rem;
}

/* === THE WORLD OF DRAKKARS === */
.world-section {
    position: relative;
    overflow: hidden;
}

.world-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: url('images/circle.png') center/contain no-repeat;
    opacity: 0.3;
    pointer-events: none;
}

.world-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.world-intro {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.world-desc {
    color: var(--text-dim);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.btn-explore {
    display: inline-block;
    padding: 0.7rem 2rem;
    border: 1px solid var(--metal);
    color: var(--text);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    transition: all 0.3s;
}

.btn-explore:hover {
    border-color: var(--red);
    box-shadow: 0 0 15px rgba(139, 26, 26, 0.3);
}

/* Compass */
.world-compass {
    display: flex;
    justify-content: center;
    align-items: center;
}

.compass-ring {
    position: relative;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 1px solid var(--gray-light);
    background: radial-gradient(circle, rgba(20,20,20,0.8) 0%, rgba(10,10,10,0.9) 100%);
    box-shadow: 
        0 0 40px rgba(139, 26, 26, 0.1),
        inset 0 0 40px rgba(0,0,0,0.5);
}

.compass-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.compass-logo {
    width: 60px;
    height: auto;
    opacity: 0.8;
    filter: drop-shadow(0 0 10px rgba(139, 26, 26, 0.3));
}

.compass-element {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-120px) rotate(calc(-1 * var(--angle)));
    cursor: pointer;
    transition: transform 0.3s, filter 0.3s;
}

.compass-element:hover {
    filter: drop-shadow(0 0 10px rgba(192, 57, 43, 0.8));
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-125px) rotate(calc(-1 * var(--angle))) scale(1.2);
}

.compass-symbol {
    font-size: 1.5rem;
}

.compass-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.5rem;
    letter-spacing: 1px;
    color: var(--text-dim);
    margin-top: 2px;
    white-space: nowrap;
}

/* World Info Panel */
.world-info-content {
    padding: 2rem;
    border: 1px solid var(--gray-light);
    border-radius: 4px;
    background: rgba(20, 20, 20, 0.5);
}

.world-element-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.world-element-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.world-element-phrase {
    font-style: italic;
    color: var(--text-dim);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.world-element-member,
.world-element-songs {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.world-element-member strong,
.world-element-songs strong {
    color: var(--text);
    display: block;
}

/* === VIDEOS === */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.video-card {
    cursor: pointer;
    transition: transform 0.3s;
}

.video-card:hover {
    transform: translateY(-3px);
}

.video-thumbnail {
    aspect-ratio: 16/9;
    background: var(--gray);
    border: 1px solid var(--gray-light);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.video-thumbnail::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139,26,26,0.1), transparent);
}

.video-play {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s;
    z-index: 1;
}

.video-card:hover .video-play {
    border-color: var(--red-light);
    color: var(--red-light);
    box-shadow: 0 0 20px rgba(192, 57, 43, 0.3);
}

.video-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-align: center;
    margin-top: 0.8rem;
    color: var(--text-dim);
}

.btn-view-all {
    display: block;
    text-align: center;
    color: var(--text-dim);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 2px;
    margin-top: 2rem;
    transition: color 0.3s;
}

.btn-view-all:hover {
    color: var(--red-light);
}

/* === STREAM EVERYWHERE === */
.stream-section {
    text-align: center;
}

.stream-platforms {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    align-items: center;
}

.platform-icon {
    color: var(--metal-light);
    text-decoration: none;
    font-size: 2.8rem;
    transition: color 0.3s, transform 0.3s;
}

.platform-icon:hover {
    color: #fff;
    transform: translateY(-3px);
}

/* === CONTACT === */
.contact-section {
    border-top: 1px solid var(--gray-light);
    text-align: center;
}

.contact-social-main {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.contact-social-main a {
    color: var(--metal-light);
    font-size: 2.2rem;
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
}

.contact-social-main a:hover {
    color: #fff;
    transform: translateY(-3px);
}

/* === FOOTER === */
.main-footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid var(--gray-light);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 2px;
    color: var(--text-dim);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .crew-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
    
    .world-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .world-compass {
        order: -1;
    }
}

@media (max-width: 768px) {
    .main-nav ul {
        gap: 1.5rem;
    }
    
    .main-nav a {
        font-size: 0.6rem;
    }
    
    .release-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .release-cover img {
        margin: 0 auto;
    }
    
    .streaming-icons {
        justify-content: center;
    }
    
    .crew-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .contact-social {
        justify-content: center;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .compass-ring {
        width: 260px;
        height: 260px;
    }
    
    .compass-element {
        transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-95px) rotate(calc(-1 * var(--angle)));
    }
    
    .stream-platforms {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .main-nav ul {
        gap: 1rem;
    }
    
    .hero-title {
        max-width: 280px;
    }
    
    .section {
        padding: 4rem 1.5rem;
    }
    
    .crew-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .videos-grid {
        grid-template-columns: 1fr 1fr;
    }
}
