@font-face {
    font-family: 'Metal Lord';
    src: url('fonts/MetalLord.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --text-main: #f0f0f0;
    --text-muted: #a0a0a0;
    --accent-red: #c01010;
    --accent-red-glow: rgba(192, 16, 16, 0.6);
    --steel-gray: #4a4a4a;
    --steel-light: #8c8c8c;
    
    --font-heading: 'Metal Lord', 'Cinzel', serif;
    --font-subheading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.section {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-red);
    margin: 15px auto 0;
    box-shadow: 0 0 10px var(--accent-red-glow);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #050505 0%, #1a1a1a 100%);
    overflow: hidden;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.glitch {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 900;
    color: #fff;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.8);
    margin-bottom: 10px;
}

.tagline {
    font-family: var(--font-subheading);
    font-size: 1.5rem;
    color: var(--steel-light);
    margin-bottom: 40px;
    letter-spacing: 1px;
}

@keyframes pulse-glow {
    0% { box-shadow: inset 0 0 20px rgba(0,0,0,0.9); }
    100% { box-shadow: inset 0 0 20px rgba(0,0,0,0.9), inset 0 0 50px rgba(255,0,0,0.8); }
}

.cta-btn {
    display: inline-block;
    padding: 15px 40px;
    font-family: var(--font-subheading);
    font-size: 1.5rem;
    font-weight: 900;
    font-style: italic;
    color: #fff;
    background: repeating-linear-gradient(45deg, rgba(0,0,0,0.8), rgba(0,0,0,0.8) 10px, rgba(40,40,40,0.8) 10px, rgba(40,40,40,0.8) 20px), linear-gradient(180deg, #2a2a2a 0%, #111 100%);
    border: 3px solid #666;
    border-bottom: 6px solid var(--accent-red);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 4px;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.9);
    text-shadow: 2px 2px 5px rgba(0,0,0,0.9);
    transform: skewX(-15deg);
}

.cta-btn:hover {
    background: repeating-linear-gradient(45deg, rgba(150,0,0,0.8), rgba(150,0,0,0.8) 10px, rgba(80,0,0,0.8) 10px, rgba(80,0,0,0.8) 20px), linear-gradient(180deg, #ff0000 0%, #500 100%);
    border-color: #ff4444;
    border-bottom: 6px solid #ff0000;
    color: #fff;
    text-shadow: 0 0 15px #fff, 0 0 30px var(--accent-red);
    box-shadow: inset 0 0 30px rgba(0,0,0,0.8);
    transform: skewX(-15deg) scale(1.1) translateY(-5px);
    animation: pulse-glow 1.5s infinite alternate;
}

.cta-btn i {
    margin-right: 10px;
}

/* About Section */
.about-section {
    background-color: #0f0f0f;
    border-top: 1px solid var(--steel-gray);
    border-bottom: 1px solid var(--steel-gray);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
}

.about-content p {
    margin-bottom: 20px;
}

.about-content strong {
    font-family: var(--font-subheading);
    color: #fff;
    letter-spacing: 1px;
}

.hashtags {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.hashtags span {
    font-family: var(--font-subheading);
    color: var(--accent-red);
    background: rgba(192, 16, 16, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Links Section */
.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.link-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: repeating-linear-gradient(-45deg, rgba(0,0,0,0.7), rgba(0,0,0,0.7) 5px, rgba(30,30,30,0.7) 5px, rgba(30,30,30,0.7) 10px), linear-gradient(135deg, #1f1f1f 0%, #0d0d0d 100%);
    color: var(--text-main);
    text-decoration: none;
    padding: 20px;
    font-family: var(--font-subheading);
    font-size: 1.3rem;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: 2px solid var(--steel-gray);
    border-left: 8px solid var(--steel-light);
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 20px rgba(0,0,0,1);
    transform: skewX(-10deg);
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.4s ease;
}

.link-card:hover {
    background: repeating-linear-gradient(-45deg, rgba(100,0,0,0.8), rgba(100,0,0,0.8) 5px, rgba(50,0,0,0.8) 5px, rgba(50,0,0,0.8) 10px), linear-gradient(135deg, #3a0000 0%, #110000 100%);
    border-color: #ff3333;
    border-left: 8px solid #ff0000;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px #ff0000;
    box-shadow: inset 0 0 30px rgba(0,0,0,0.9), inset 0 0 40px rgba(255,0,0,0.3);
    transform: skewX(-10deg) scale(1.05) translateY(-5px);
}

.link-card:hover::before {
    left: 100%;
}

.link-card i {
    font-size: 1.5rem;
}

.link-card.spotify:hover { border-color: #1DB954; color: #1DB954; }
.link-card.apple:hover { border-color: #FA243C; color: #FA243C; }
.link-card.amazon:hover { border-color: #00A8E1; color: #00A8E1; }
.link-card.iheart:hover { border-color: #C6002B; color: #C6002B; }
.link-card.deezer:hover { border-color: #FEAA2D; color: #FEAA2D; }
.link-card.youtube:hover { border-color: #FF0000; color: #FF0000; }
.link-card.instagram:hover { border-color: #E1306C; color: #E1306C; }
.link-card.tiktok:hover { border-color: #00f2fe; color: #00f2fe; }
.link-card.twitter:hover { border-color: #1DA1F2; color: #1DA1F2; }
.link-card.store:hover { border-color: var(--accent-red); color: var(--accent-red); }

/* Gallery Section */
.gallery-section {
    background-color: #050505;
}

.masonry-gallery {
    column-count: 3;
    column-gap: 20px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
    filter: grayscale(30%) contrast(120%);
}

.gallery-item:hover {
    border-color: var(--accent-red);
    box-shadow: 0 0 20px var(--accent-red-glow);
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0%) contrast(100%);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    animation: zoom 0.3s ease;
    border: 2px solid var(--steel-gray);
    box-shadow: 0 0 30px rgba(0,0,0,0.8);
}

@keyframes zoom {
    from {transform: scale(0)} 
    to {transform: scale(1)}
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-lightbox:hover {
    color: var(--accent-red);
}

/* Footer */
footer {
    background-color: #000;
    text-align: center;
    padding: 30px 0;
    border-top: 2px solid var(--accent-red);
    color: var(--steel-light);
    font-family: var(--font-subheading);
    letter-spacing: 1px;
}

/* Videos Page Styles */
.videos-page {
    background-color: var(--bg-dark);
    background-image: repeating-linear-gradient(45deg, rgba(0,0,0,0.2) 0px, rgba(0,0,0,0.2) 2px, transparent 2px, transparent 4px);
}

.videos-container {
    padding: 60px 0 100px;
}

.videos-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.back-btn {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) skewX(-15deg);
    font-size: 1rem;
    padding: 10px 20px;
    z-index: 10;
}

.back-btn:hover {
    transform: translateY(-50%) skewX(-15deg) scale(1.05);
    animation: none;
}

.page-title {
    font-size: 3.5rem;
    margin: 0;
}

.divider {
    height: 4px;
    background: var(--accent-red);
    width: 100px;
    margin: 20px auto 0;
    box-shadow: 0 0 15px var(--accent-red-glow);
}

.video-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.video-card {
    background: linear-gradient(135deg, #1f1f1f 0%, #0d0d0d 100%);
    border: 2px solid var(--steel-gray);
    border-bottom: 4px solid var(--accent-red);
    padding: 15px;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.9), 0 10px 30px rgba(0,0,0,0.8);
    transition: all 0.3s ease;
}

.video-card:hover {
    border-color: #ff3333;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.9), 0 10px 30px rgba(192, 16, 16, 0.4);
}

.video-title {
    font-family: var(--font-subheading);
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-left: 4px solid var(--accent-red);
    padding-left: 10px;
    text-shadow: 1px 1px 2px #000;
}

.sub-video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.sub-video-grid .video-title {
    font-size: 1.2rem;
}

.iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
    border: 1px solid #333;
}

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

/* Responsive */
@media (max-width: 992px) {
    .masonry-gallery {
        column-count: 2;
    }
    .glitch {
        font-size: 4rem;
    }
    .back-btn {
        position: static;
        transform: skewX(-15deg);
        display: inline-block;
        margin-bottom: 20px;
    }
    .back-btn:hover {
        transform: skewX(-15deg) scale(1.05);
    }
}

@media (max-width: 768px) {
    .glitch {
        font-size: 3rem;
    }
    .tagline {
        font-size: 1.2rem;
    }
    .masonry-gallery {
        column-count: 1;
    }
    .links-grid {
        grid-template-columns: 1fr;
    }
    .sub-video-grid {
        grid-template-columns: 1fr;
    }
    .page-title {
        font-size: 2.5rem;
    }
}

/* Trivia Page Styles */
.trivia-section {
    max-width: 800px;
    margin: 0 auto;
}

.trivia-card {
    background: linear-gradient(135deg, #1f1f1f 0%, #0d0d0d 100%);
    border: 2px solid var(--steel-gray);
    border-bottom: 4px solid var(--accent-red);
    padding: 40px;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.9), 0 10px 30px rgba(0,0,0,0.8);
}

.trivia-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-family: var(--font-subheading);
    font-size: 1.2rem;
    color: var(--steel-light);
    text-transform: uppercase;
}

.progress-bar-container {
    width: 100%;
    height: 10px;
    background-color: #000;
    border: 1px solid var(--steel-gray);
    margin-bottom: 30px;
    border-radius: 5px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background-color: var(--accent-red);
    width: 0%;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--accent-red-glow);
}

.question-text {
    font-family: var(--font-body);
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
}

.options-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.option-btn {
    background: #111;
    color: var(--text-main);
    border: 2px solid var(--steel-gray);
    padding: 15px 20px;
    font-size: 1.2rem;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.option-btn:hover {
    background: #222;
    border-color: var(--steel-light);
    transform: translateX(5px);
}

.option-btn.correct {
    background: rgba(0, 150, 0, 0.2);
    border-color: #00ff00;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
}

.option-btn.incorrect {
    background: rgba(150, 0, 0, 0.2);
    border-color: #ff0000;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
    animation: shake 0.5s;
}

.feedback-message {
    text-align: center;
    font-family: var(--font-subheading);
    font-size: 2rem;
    font-weight: bold;
    margin-top: 30px;
    display: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.correct-msg {
    color: #00ff00;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.incorrect-msg {
    color: #ff0000;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.final-score {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--accent-red);
    text-shadow: 0 0 20px var(--accent-red-glow);
    margin-bottom: 20px;
}

@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
    100% { transform: translateX(0); }
}
