/* Crimson Oath - Heavy Metal Website Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cinzel', serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Metal Mania', cursive;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
}

p {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
}

/* Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #8B0000;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    flex-shrink: 0;
}

.logo-img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(139, 0, 0, 0.5));
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(139, 0, 0, 0.8));
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Metal Mania', cursive;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
}

.nav-link:hover,
.nav-link.active {
    color: #8B0000;
    text-shadow: 0 0 10px rgba(139, 0, 0, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8B0000, #DC143C);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        url('../images/crimson-oath-hero-background.png') center/cover no-repeat,
        radial-gradient(circle at 20% 80%, rgba(139, 0, 0, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(220, 20, 60, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(139, 0, 0, 0.1) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 1.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo-img {
    height: 200px;
    width: auto;
    filter: drop-shadow(0 0 30px rgba(139, 0, 0, 0.8));
    animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 30px rgba(139, 0, 0, 0.8));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 40px rgba(139, 0, 0, 1));
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow:
        0 0 20px rgba(139, 0, 0, 0.8),
        0 0 40px rgba(139, 0, 0, 0.6),
        0 0 60px rgba(139, 0, 0, 0.4);
    margin-bottom: 1rem;
    animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
    from { text-shadow: 0 0 20px rgba(139, 0, 0, 0.8), 0 0 40px rgba(139, 0, 0, 0.6), 0 0 60px rgba(139, 0, 0, 0.4); }
    to { text-shadow: 0 0 30px rgba(139, 0, 0, 1), 0 0 60px rgba(139, 0, 0, 0.8), 0 0 90px rgba(139, 0, 0, 0.6); }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #cccccc;
    margin-bottom: 3rem;
    font-family: 'Cinzel', serif;
    text-transform: none;
    letter-spacing: 1px;
}

.hero-cta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    font-family: 'Metal Mania', cursive;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #8B0000, #DC143C);
    color: #ffffff;
    border: 2px solid #8B0000;
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #DC143C, #8B0000);
    box-shadow: 0 0 30px rgba(139, 0, 0, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: #ffffff;
    color: #0a0a0a;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #8B0000;
    border: 2px solid #8B0000;
}

.btn-outline:hover {
    background: #8B0000;
    color: #ffffff;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #cccccc;
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    margin: 0.5rem auto;
    border: 2px solid #8B0000;
    border-left: none;
    border-top: none;
    transform: rotate(45deg);
    animation: arrowPulse 2s infinite;
}

@keyframes arrowPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Main Content */
.main {
    padding-top: 80px; /* Account for fixed header */
}

/* Sections */
.section {
    padding: 5rem 0;
    position: relative;
}

.section:nth-child(even) {
    background: rgba(26, 26, 26, 0.3);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 3rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 0 0 20px rgba(139, 0, 0, 0.5);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #8B0000, #DC143C);
}

/* About Preview */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content-centered p {
    margin-bottom: 2rem;
    color: #cccccc;
    font-size: 1.2rem;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 2rem;
    color: #cccccc;
    font-size: 1.2rem;
    line-height: 1.8;
}

.metal-frame {
    border: 4px solid #8B0000;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(10, 10, 10, 0.8));
    box-shadow: 0 0 30px rgba(139, 0, 0, 0.3);
    position: relative;
}

.metal-frame::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(45deg, #8B0000, #DC143C, #8B0000);
    z-index: -1;
    filter: blur(4px);
    opacity: 0.5;
}

.gothic-text {
    font-size: 2rem;
    color: #8B0000;
    text-align: center;
    text-shadow: 0 0 10px rgba(139, 0, 0, 0.8);
    margin-bottom: 1rem;
}

.skull-icon {
    font-size: 3rem;
    text-align: center;
    animation: skullGlow 3s ease-in-out infinite alternate;
}

@keyframes skullGlow {
    from { text-shadow: 0 0 10px rgba(139, 0, 0, 0.5); }
    to { text-shadow: 0 0 20px rgba(139, 0, 0, 1); }
}

/* Album Grid */
.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 47%;
    margin-left: auto;
    margin-right: auto;
}

.album-card {
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid #8B0000;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.2);
}

.album-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(139, 0, 0, 0.4);
    border-color: #DC143C;
}

.album-cover {
    height: 300px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.album-cover-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.album-cover:hover .album-cover-image {
    transform: scale(1.02);
}

.album-placeholder {
    color: #8B0000;
    font-size: 1.5rem;
    font-family: 'Metal Mania', cursive;
    text-align: center;
    text-shadow: 0 0 10px rgba(139, 0, 0, 0.5);
}

.album-cover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(139, 0, 0, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.album-card:hover .album-cover::after {
    opacity: 1;
}

.album-title {
    padding: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
    color: #ffffff;
}

.album-year {
    text-align: center;
    color: #8B0000;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
}

/* Streaming Grid */
.streaming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.streaming-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid #8B0000;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.2);
}

.streaming-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(139, 0, 0, 0.4);
    border-color: #DC143C;
    background: rgba(139, 0, 0, 0.1);
}

.streaming-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease, color 0.3s ease;
    color: #8B0000;
}

.streaming-card:hover .streaming-icon {
    transform: scale(1.1);
    color: #DC143C;
    filter: drop-shadow(0 0 10px rgba(139, 0, 0, 0.6));
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.video-card {
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid #8B0000;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.2);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(139, 0, 0, 0.4);
    border-color: #DC143C;
}

.video-embed-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-thumbnail {
    height: 200px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.video-thumbnail img {
    transition: transform 0.3s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.video-thumbnail:hover .play-overlay {
    opacity: 1;
}

.play-button {
    font-size: 3rem;
    color: #DC143C;
    text-shadow: 0 0 20px rgba(220, 20, 60, 0.8);
}

.video-placeholder {
    color: #8B0000;
    font-size: 4rem;
    text-shadow: 0 0 10px rgba(139, 0, 0, 0.5);
}

.video-title {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.3rem;
    color: #ffffff;
}

.video-description {
    padding: 0 1.5rem 1.5rem;
    color: #cccccc;
    font-family: 'Cinzel', serif;
}

/* Section CTA */
.section-cta {
    text-align: center;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    border-top: 4px solid #8B0000;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    text-align: center;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(139, 0, 0, 0.5));
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #8B0000;
}

.footer-social {
    text-align: center;
}

.social-link {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Metal Mania', cursive;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    border: 2px solid #8B0000;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-link:hover {
    background: #8B0000;
    box-shadow: 0 0 15px rgba(139, 0, 0, 0.5);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
    font-family: 'Cinzel', serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.95);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        border-bottom: 2px solid #8B0000;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .album-grid,
    .streaming-grid,
    .video-grid {
        grid-template-columns: 1fr;
    }

    .about-showcase,
    .album-showcase,
    .mission-content,
    .style-content,
    .youtube-content,
    .video-showcase {
        max-width: 100%;
        padding: 0;
        gap: 0;
    }

    .influences-grid {
        grid-template-columns: 1fr;
    }

    .album-showcase > h2.album-title-large {
        font-size: 2rem;
        padding: 2rem 1.5rem 1.5rem;
        letter-spacing: 2px;
    }

    .album-cover-large {
        height: 400px;
    }

    .album-info {
        padding: 2rem 1.5rem;
    }

    .album-description {
        font-size: 1rem;
    }

    .album-details {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .section {
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Page Hero Styles */
.page-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    overflow: hidden;
    padding: 80px 2rem 2rem;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(139, 0, 0, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(220, 20, 60, 0.15) 0%, transparent 50%);
}

.page-hero-about::before,
.page-hero-discography::before,
.page-hero-streaming::before,
.page-hero-videos::before {
    background:
        url('../images/crimson-oath-hero-background.png') center/cover no-repeat,
        radial-gradient(circle at 20% 80%, rgba(139, 0, 0, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(220, 20, 60, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(139, 0, 0, 0.1) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="page-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.01"/></pattern></defs><rect width="100" height="100" fill="url(%23page-grain)"/></svg>');
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow:
        0 0 20px rgba(139, 0, 0, 0.8),
        0 0 40px rgba(139, 0, 0, 0.6);
    margin-bottom: 1rem;
}

.page-hero-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    font-family: 'Cinzel', serif;
    text-transform: none;
    letter-spacing: 1px;
}

/* About Page Styles */
.about-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 47%;
    margin-left: auto;
    margin-right: auto;
}

.about-showcase-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-info h3 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-title-large {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-description {
    color: #cccccc;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.metal-frame-large {
    border: 4px solid #8B0000;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(10, 10, 10, 0.9));
    box-shadow: 0 0 40px rgba(139, 0, 0, 0.3);
    position: relative;
    text-align: center;
}

.metal-frame-large::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(45deg, #8B0000, #DC143C, #8B0000);
    z-index: -1;
    filter: blur(6px);
    opacity: 0.5;
}

.gothic-quote {
    font-size: 1.8rem;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(139, 0, 0, 0.8);
    margin-bottom: 2rem;
    font-style: italic;
}

.influences-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.influence-card {
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid #8B0000;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.2);
}

.influence-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(139, 0, 0, 0.4);
    border-color: #DC143C;
}

.influence-icon {
    font-size: 3rem;
    color: transparent;
    margin-bottom: 1.5rem;
    display: block;
    transition: all 0.3s ease;
    -webkit-text-stroke: 2px #8B0000;
    font-weight: 400;
}

.influence-card:hover .influence-icon {
    -webkit-text-stroke: 2px #DC143C;
    transform: scale(1.1);
}

.influence-card h3 {
    color: #ffffff;
    margin: 1rem 0;
    font-size: 1.3rem;
}

.influence-card p {
    color: #cccccc;
    font-family: 'Cinzel', serif;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-text h2 {
    color: #ffffff;
    margin-bottom: 2rem;
}

.mission-text p {
    color: #cccccc;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.gothic-frame {
    border: 4px solid #8B0000;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(10, 10, 10, 0.9));
    box-shadow: 0 0 30px rgba(139, 0, 0, 0.3);
    position: relative;
    text-align: center;
}

.decoration-line {
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #8B0000, #DC143C);
    margin: 1rem auto;
}

.decoration-text {
    font-size: 1.5rem;
    color: #8B0000;
    text-shadow: 0 0 10px rgba(139, 0, 0, 0.8);
    margin: 1rem 0;
}

.oath-text {
    font-size: 2.5rem;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(139, 0, 0, 0.8);
}

/* Discography Page Styles */
.upcoming-album {
    margin-bottom: 3rem;
}

.album-showcase {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    background: linear-gradient(180deg, #000000 0%, #1a0000 50%, #000000 100%);
    border: 4px solid #8B0000;
    box-shadow: 
        0 0 80px rgba(139, 0, 0, 0.6),
        inset 0 0 60px rgba(139, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.album-showcase::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(45deg, #8B0000, #DC143C, #FF0000, #8B0000);
    background-size: 400% 400%;
    z-index: -1;
    filter: blur(12px);
    opacity: 0.8;
    animation: borderGlow 3s ease infinite;
}

@keyframes borderGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.album-cover-large {
    height: 600px;
    background: #000;
    border: none;
    border-top: 3px solid rgba(139, 0, 0, 0.5);
    border-bottom: 3px solid rgba(139, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        inset 0 40px 60px rgba(0, 0, 0, 0.6),
        inset 0 -40px 60px rgba(0, 0, 0, 0.6),
        inset 0 0 40px rgba(139, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.album-cover-large::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.4), transparent);
    transition: left 0.8s;
}

.album-cover-large:hover::after {
    left: 100%;
}

.album-cover-large:hover {
    box-shadow: 
        inset -40px 0 80px rgba(0, 0, 0, 0.6),
        inset 0 0 60px rgba(220, 20, 60, 0.3);
}

.album-cover-large-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    filter: brightness(1.1) contrast(1.2);
}

.album-cover-large:hover .album-cover-large-image {
    transform: scale(1.08);
    filter: brightness(1.2) contrast(1.3);
}

.album-placeholder-large {
    text-align: center;
    color: #8B0000;
}

.album-placeholder-large span {
    font-size: 6rem;
    display: block;
    margin-bottom: 1rem;
}

.album-placeholder-large h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.album-placeholder-large p {
    font-size: 1.5rem;
    color: #cccccc;
}

.album-showcase > h2.album-title-large {
    color: #ffffff;
    font-size: 3.5rem;
    padding: 3rem 3rem 2rem;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 
        0 0 30px rgba(220, 20, 60, 1),
        0 0 50px rgba(139, 0, 0, 0.8),
        3px 3px 6px rgba(0, 0, 0, 1),
        -2px -2px 4px rgba(139, 0, 0, 0.5);
    line-height: 1.2;
    font-weight: 900;
    animation: titlePulse 3s ease-in-out infinite;
    border-bottom: 3px solid rgba(139, 0, 0, 0.5);
}

.album-info {
    padding: 3rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

@keyframes titlePulse {
    0%, 100% {
        text-shadow: 
            0 0 30px rgba(220, 20, 60, 1),
            0 0 50px rgba(139, 0, 0, 0.8),
            3px 3px 6px rgba(0, 0, 0, 1);
    }
    50% {
        text-shadow: 
            0 0 40px rgba(220, 20, 60, 1),
            0 0 70px rgba(139, 0, 0, 1),
            3px 3px 8px rgba(0, 0, 0, 1);
    }
}

.album-description {
    color: #e0e0e0;
    font-size: 1.2rem;
    line-height: 2;
    margin-bottom: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    text-align: center;
}

.album-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border: 2px solid rgba(139, 0, 0, 0.5);
    border-left: 5px solid #DC143C;
    box-shadow: 
        inset 0 0 30px rgba(139, 0, 0, 0.2),
        0 5px 20px rgba(0, 0, 0, 0.8);
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 2px solid rgba(139, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item:hover {
    border-bottom-color: #8B0000;
    padding-left: 0.5rem;
}

.detail-label {
    color: #DC143C;
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(220, 20, 60, 0.5);
}

.detail-value {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.release-card {
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid #8B0000;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.2);
}

.release-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(139, 0, 0, 0.4);
    border-color: #DC143C;
}

.release-cover {
    height: 200px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    display: flex;
    align-items: center;
    justify-content: center;
}

.release-placeholder {
    color: #8B0000;
    font-size: 3rem;
}

.release-info {
    padding: 1.5rem;
}

.release-title {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.release-description {
    color: #cccccc;
    font-family: 'Cinzel', serif;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.release-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.release-type {
    background: #8B0000;
    color: #ffffff;
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.release-year {
    color: #8B0000;
    font-weight: bold;
}

.style-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.style-elements {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.style-element {
    background: rgba(26, 26, 26, 0.8);
    padding: 1.5rem;
    border: 1px solid #8B0000;
    text-align: center;
}

.style-element h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.style-element p {
    color: #cccccc;
    font-size: 0.9rem;
    font-family: 'Cinzel', serif;
}

.guitar-frame {
    text-align: center;
    padding: 3rem;
    border: 4px solid #8B0000;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(10, 10, 10, 0.9));
    box-shadow: 0 0 30px rgba(139, 0, 0, 0.3);
}

.guitar-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.flames {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 2rem;
}

/* Streaming Page Styles */
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.platform-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid #8B0000;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.2);
    overflow: hidden;
    padding: 2.5rem 2rem;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(139, 0, 0, 0.4);
    border-color: #DC143C;
    background: rgba(139, 0, 0, 0.1);
}

.platform-header {
    text-align: center;
    margin-bottom: 2rem;
}

.platform-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    color: #8B0000;
    transition: transform 0.3s ease, color 0.3s ease;
}

.platform-card:hover .platform-icon {
    transform: scale(1.15);
    color: #DC143C;
}

.platform-card h3 {
    color: #ffffff;
    margin: 0;
    font-size: 1.5rem;
}

.platform-link {
    padding: 1rem 1.5rem;
    background: rgba(139, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(139, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.platform-card:hover .platform-link {
    background: rgba(139, 0, 0, 0.3);
    border-color: #8B0000;
}

.link-arrow {
    font-size: 1.2rem;
    color: #DC143C;
    transition: transform 0.3s ease;
}

.platform-card:hover .link-arrow {
    transform: translateX(5px);
    color: #ffffff;
}

.everywhere-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.everywhere-text {
    max-width: 700px;
}

.everywhere-text h2 {
    color: #ffffff;
    margin-bottom: 2rem;
}

.everywhere-text p {
    color: #cccccc;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.listen-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cccccc;
    font-family: 'Cinzel', serif;
}

.feature-icon {
    font-size: 1.5rem;
}

.devices-frame {
    text-align: center;
    padding: 3rem;
    border: 4px solid #8B0000;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(10, 10, 10, 0.9));
    box-shadow: 0 0 30px rgba(139, 0, 0, 0.3);
}

.device-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.device-icon {
    font-size: 3rem;
}

.sound-waves {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 2rem;
    color: #8B0000;
}

/* CTA Section */
.cta-section {
    text-align: center;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.cta-content p {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Video Page Styles */
.video-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.video-wrapper {
    position: relative;
}

.video-player {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border: 4px solid #8B0000;
    box-shadow: 0 0 30px rgba(139, 0, 0, 0.3);
}

.video-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-placeholder-large {
    height: 300px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border: 4px solid #8B0000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(139, 0, 0, 0.3);
    position: relative;
}

.play-button-large {
    text-align: center;
    margin-bottom: 2rem;
}

.play-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.play-text {
    font-size: 1.5rem;
    color: #8B0000;
    font-weight: bold;
}

.video-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem;
    text-align: center;
}

.video-info h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.video-info p {
    color: #cccccc;
    font-size: 0.9rem;
}

.video-details h3 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.video-description {
    color: #cccccc;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.video-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #333;
}

.video-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.video-error {
    text-align: center;
    padding: 3rem;
    color: #cccccc;
}

.video-error p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.loading-spinner {
    text-align: center;
    padding: 3rem;
    color: #8B0000;
    font-size: 1.2rem;
}

.stat-label {
    color: #8B0000;
    font-weight: bold;
}

.stat-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.stat-link:hover {
    color: #8B0000;
}

.stat-value {
    color: #cccccc;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.type-card {
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid #8B0000;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.2);
}

.type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(139, 0, 0, 0.4);
    border-color: #DC143C;
}

.type-card .type-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.type-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.type-card p {
    color: #cccccc;
    font-family: 'Cinzel', serif;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.type-status {
    background: #8B0000;
    color: #ffffff;
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    display: inline-block;
}

.youtube-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.youtube-content-centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.youtube-content-centered h2 {
    color: #ffffff;
    margin-bottom: 2rem;
}

.youtube-content-centered p {
    color: #cccccc;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.youtube-text h2 {
    color: #ffffff;
    margin-bottom: 2rem;
}

.youtube-text p {
    color: #cccccc;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.channel-features {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    margin-bottom: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.youtube-content-centered .channel-features {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

.channel-features .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    color: #cccccc;
    font-family: 'Cinzel', serif;
}

.channel-features .feature-icon {
    font-size: 2.5rem;
    color: #8B0000;
    transition: all 0.3s ease;
}

.channel-features .feature-item:hover .feature-icon {
    color: #DC143C;
    transform: scale(1.1);
}

.youtube-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.youtube-content-centered .youtube-buttons {
    justify-content: center;
}

.youtube-frame {
    text-align: center;
    padding: 3rem;
    border: 4px solid #8B0000;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(10, 10, 10, 0.9));
    box-shadow: 0 0 30px rgba(139, 0, 0, 0.3);
}

.youtube-icon-large {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.channel-name {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.subscriber-count {
    color: #8B0000;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.playlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.playlist-item {
    display: flex;
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid #8B0000;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.2);
    overflow: hidden;
}

.playlist-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(139, 0, 0, 0.4);
    border-color: #DC143C;
}

.playlist-thumbnail {
    width: 120px;
    height: 90px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.thumbnail-placeholder {
    color: #8B0000;
    font-size: 2rem;
}

.playlist-duration {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 2px 6px;
    font-size: 0.7rem;
    border-radius: 2px;
}

.playlist-info {
    padding: 1rem;
    flex-grow: 1;
}

.playlist-info h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.playlist-info p {
    color: #cccccc;
    font-size: 0.9rem;
    font-family: 'Cinzel', serif;
}

/* Utility Classes */
.fade-in {
    animation: fadeIn 1s ease-out;
}

.slide-up {
    animation: slideUp 1s ease-out;
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 1s ease-out 0.5s forwards;
}
