/* Global Variables - Brand Guidelines */
:root {
    /* Primary Colors */
    --synthauros-black: #010101;
    --synthauros-dark-brown: #190E0E;
    --synthauros-blood-red: #971c1a;
    --synthauros-crimson: #4F1414;
    --synthauros-steel: #242526;
    
    /* Legacy compatibility */
    --primary-color: #3B0F0E;
    --secondary-color: #190E0E;
    --accent-color: #4F1414;
    --blood-red: #3B0F0E;
    --dark-bg: #010101;
    --dark-surface: #190E0E;
    --text-primary: #ffffff;
    --text-secondary: #999999;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #3B0F0E, #190E0E);
    --gradient-secondary: linear-gradient(135deg, #4F1414, #3B0F0E);
    --gradient-accent: linear-gradient(135deg, #4F1414, #3B0F0E);
    --gradient-dark: linear-gradient(180deg, #010101, #190E0E);
    --glow-red: #4F1414;
    
    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 32px;
    --space-xl: 64px;
    --space-2xl: 128px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--synthauros-black);
    color: var(--text-primary);
    font-weight: 400;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--synthauros-black);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s, visibility 0.5s;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 80px;
    height: 80px;
    position: relative;
}

.loader-inner {
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-inner::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 3px solid transparent;
    border-top-color: var(--secondary-color);
    border-radius: 50%;
    animation: spin 0.6s linear infinite reverse;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    margin-top: 20px;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.3em;
    color: var(--synthauros-blood-red);
    animation: pulse 1s ease-in-out infinite;
    text-transform: uppercase;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(1, 1, 1, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(59, 15, 14, 0.3);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(1, 1, 1, 0.98);
}

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

/* Navigation Menu Layout - Simplified */
.nav-menu li {
    list-style: none;
}

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    cursor: pointer;
    position: relative;
}

.nav-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(1, 1, 1, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(244, 67, 54, 0.3);
    border-radius: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    padding: 0.5rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown-toggle:focus + .nav-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-submenu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-submenu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-submenu a:hover {
    background: rgba(244, 67, 54, 0.1);
    color: var(--text-primary);
    border-left: 3px solid var(--synthauros-crimson);
}

.nav-submenu a:last-child {
    border-bottom: none;
}

/* Mobile dropdown active state */
.nav-submenu.active {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    position: static !important;
    background: rgba(1, 1, 1, 0.9) !important;
    border: 1px solid rgba(244, 67, 54, 0.5) !important;
    box-shadow: none !important;
    margin-top: 0.5rem !important;
}

.nav-submenu.active a {
    padding: 1rem 1.5rem !important;
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo {
    position: relative;
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: var(--synthauros-crimson);
    cursor: pointer;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--primary-color), transparent);
    opacity: 0;
    animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
    50% { opacity: 0.3; transform: translate(-50%, -50%) scale(1.2); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-social {
    display: flex;
    align-items: center;
    margin-left: 1rem;
}

.nav-social .social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(79, 20, 20, 0.5);
    color: var(--text-secondary);
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-social .social-link:hover {
    background: var(--synthauros-blood-red);
    border-color: var(--synthauros-blood-red);
    color: var(--text-primary);
    transform: scale(1.1);
}

.nav-social .social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.nav-link,
.nav-home-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

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

.nav-link:hover,
.nav-link.active,
.nav-home-link:hover,
.nav-home-link.active {
    color: var(--text-primary);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--gradient-dark);
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('public/images/Hero_section.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(1, 1, 1, 0.7), rgba(25, 14, 14, 0.6));
}

.cyber-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(59, 15, 14, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 15, 14, 0.2) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    z-index: 1;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.particle-field {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle-field::before,
.particle-field::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--primary-color);
    box-shadow: 
        100px 100px var(--primary-color),
        200px 200px var(--accent-color),
        300px 150px var(--secondary-color),
        400px 300px var(--primary-color),
        500px 250px var(--accent-color),
        600px 400px var(--secondary-color),
        700px 350px var(--primary-color),
        800px 450px var(--accent-color);
    animation: float 15s infinite linear;
}

@keyframes float {
    0% { transform: translateY(100vh) translateX(0); }
    100% { transform: translateY(-100vh) translateX(100px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.hero-logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin: 0 auto 2rem;
    display: block;
    filter: drop-shadow(0 0 20px rgba(79, 20, 20, 0.6));
}

.hero-title {
    font-family: var(--font-mono);
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 400;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    position: relative;
    color: var(--text-primary);
    background: linear-gradient(135deg, #fff, var(--synthauros-crimson));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(79, 20, 20, 0.8);
    animation: glowText 2s ease-in-out infinite alternate;
}

@keyframes glowText {
    0% { 
        filter: drop-shadow(0 0 10px rgba(79, 20, 20, 0.6));
    }
    100% { 
        filter: drop-shadow(0 0 30px rgba(79, 20, 20, 0.9)) drop-shadow(0 0 60px rgba(79, 20, 20, 0.5));
    }
}

/* Glitch Effect */
.glitch {
    position: relative;
    animation: glitch-main 3s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.glitch::before {
    color: var(--accent-color);
    z-index: -1;
    animation: glitch-1 2s infinite;
    text-shadow: 
        2px 0 var(--accent-color),
        -2px 0 var(--primary-color);
}

.glitch::after {
    color: var(--secondary-color);
    z-index: -2;
    animation: glitch-2 2.5s infinite;
    text-shadow: 
        -2px 0 var(--secondary-color),
        2px 0 var(--primary-color);
}

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

@keyframes glitch-1 {
    0%, 100% { 
        opacity: 0;
        transform: translate(0);
    }
    10% { 
        opacity: 0.8;
        transform: translate(-3px, 2px);
    }
    20% { 
        opacity: 0;
        transform: translate(3px, -2px);
    }
    30% { 
        opacity: 0.6;
        transform: translate(-2px, -3px);
    }
    40% { 
        opacity: 0;
        transform: translate(2px, 3px);
    }
    50% { 
        opacity: 0.7;
        transform: translate(-3px, -2px);
    }
    60% { 
        opacity: 0;
        transform: translate(3px, 2px);
    }
    70% { 
        opacity: 0.5;
        transform: translate(2px, -3px);
    }
    80% { 
        opacity: 0;
        transform: translate(-2px, 3px);
    }
    90% { 
        opacity: 0.6;
        transform: translate(-3px, -3px);
    }
}

@keyframes glitch-2 {
    0%, 100% { 
        opacity: 0;
        transform: translate(0);
    }
    15% { 
        opacity: 0.7;
        transform: translate(3px, -2px);
    }
    25% { 
        opacity: 0;
        transform: translate(-3px, 2px);
    }
    35% { 
        opacity: 0.6;
        transform: translate(2px, 3px);
    }
    45% { 
        opacity: 0;
        transform: translate(-2px, -3px);
    }
    55% { 
        opacity: 0.8;
        transform: translate(3px, 2px);
    }
    65% { 
        opacity: 0;
        transform: translate(-3px, -2px);
    }
    75% { 
        opacity: 0.5;
        transform: translate(-2px, 3px);
    }
    85% { 
        opacity: 0;
        transform: translate(2px, -3px);
    }
    95% { 
        opacity: 0.6;
        transform: translate(3px, 3px);
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    font-family: var(--font-mono);
    color: var(--text-secondary);
    margin-bottom: 1rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-top: 190px;
    margin-bottom: 2rem;
}

/* Mobile Responsive Improvements */
@media (max-width: 480px) {
    /* Hero Section Mobile */
    .hero-description {
        margin-top: 20px;
        font-size: 1rem;
        padding: 0 1rem;
    }

    .hero-title {
        font-size: clamp(2rem, 12vw, 4rem);
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 0.1em;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 16px 24px;
        font-size: 1rem;
    }

    /* Section Spacing Mobile */
    .section-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
        margin-bottom: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    /* Featured Section Mobile */
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .featured-item {
        max-width: 100%;
    }

    /* Video Grid Mobile */
    .video-item {
        max-width: 100%;
    }

    /* Form Elements Mobile */
    input[type="text"],
    input[type="email"],
    textarea,
    select {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px 16px;
    }

    .btn-submit,
    .btn-primary,
    .btn-secondary {
        padding: 14px 24px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }

    /* Footer Mobile */
    .footer-legal-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .footer-legal-links a {
        display: block;
        padding: 0.5rem 0;
    }

    /* Cookie Banner Mobile */
    .cookie-consent-content {
        padding: 1rem;
    }

    .cookie-consent-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .cookie-btn {
        width: 100%;
        padding: 12px 16px;
    }
}

/* Tablet Responsive Improvements */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-description {
        margin-top: 30px;
        font-size: 1rem;
    }

    .cta-buttons {
        gap: 1.5rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 28px;
    }
}

/* Reduce hero description margin on larger screens too */
@media (max-width: 1200px) {
    .hero-description {
        margin-top: 100px;
    }
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    position: relative;
    padding: 12px 32px;
    background: transparent;
    border: 2px solid var(--synthauros-blood-red);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border-radius: 4px;
}

.btn-primary {
    background: var(--synthauros-blood-red);
    border: none;
    color: var(--text-primary);
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--synthauros-crimson);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(79, 20, 20, 0.5);
}

.btn-secondary:hover {
    background: var(--synthauros-blood-red);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(79, 20, 20, 0.5);
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover .btn-glow,
.btn-secondary:hover .btn-glow {
    width: 300px;
    height: 300px;
}

/* Audio Visualizer */
.audio-visualizer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 350px;
    opacity: 0.5;
}

#visualizer {
    width: 100%;
    height: 100%;
}

/* Features Section */
.features {
    padding: var(--space-xl) 0;
    background: var(--gradient-dark);
    background-image: url('public/images/the_anvil_of_creation.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

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

.features .container {
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--space-lg);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
    width: 60px;
    height: 4px;
    background: var(--synthauros-blood-red);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-style: italic;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    perspective: 1000px;
    height: 400px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.feature-card:hover .card-inner {
    transform: rotateY(180deg) translateZ(20px);
}

.feature-card:hover .card-front {
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.feature-card:hover .card-back {
    box-shadow:
        0 20px 56px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background: rgba(59, 15, 14, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(244, 67, 54, 0.3);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.card-back {
    transform: rotateY(180deg);
    background: rgba(25, 14, 14, 0.9);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-color: rgba(244, 67, 54, 0.4);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    animation: iconFloat 3s ease-in-out infinite;
}

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

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.feature-card h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #8B0000;
    text-shadow:
        0 0 5px rgba(139, 0, 0, 0.8),
        0 0 10px rgba(139, 0, 0, 0.6),
        0 0 15px rgba(139, 0, 0, 0.4),
        2px 2px 4px rgba(0, 0, 0, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.btn-explore {
    margin-top: 1.5rem;
    padding: 12px 32px;
    background: transparent;
    border: 2px solid var(--synthauros-blood-red);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-weight: 600;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border-radius: 4px;
}

.btn-explore:hover {
    background: var(--synthauros-blood-red);
    color: var(--text-primary);
    transform: translateY(-2px);
}

/* Music Section */
.music-section {
    padding: var(--space-xl) 0;
    background: var(--synthauros-black);
    position: relative;
    overflow: hidden;
}

.music-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(79, 20, 20, 0.1), transparent);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.music-player {
    max-width: 800px;
    margin: 3rem auto;
    background: var(--synthauros-dark-brown);
    border: 1px solid var(--synthauros-blood-red);
    border-radius: 8px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.player-display {
    margin-bottom: 2rem;
}

.track-image-container {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 1.5rem;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--synthauros-blood-red);
    box-shadow: 0 20px 40px rgba(79, 20, 20, 0.3);
}

.track-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.playlist-loading {
    text-align: center;
    color: var(--text-secondary);
    padding: 2rem;
    font-family: var(--font-primary);
}

.xeho-notice {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(1, 1, 1, 0.5);
    border: 1px solid var(--synthauros-blood-red);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.xeho-text {
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--text-primary);
    letter-spacing: 0.05em;
    margin: 0;
    text-transform: uppercase;
}

.xeho-link {
    color: var(--synthauros-crimson);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.xeho-link:hover {
    color: var(--synthauros-blood-red);
    text-decoration: underline;
}

.waveform-container {
    height: 100px;
    background: rgba(10, 10, 10, 0.5);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

#waveform {
    width: 100%;
    height: 100%;
}

.track-info {
    text-align: center;
}

.track-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--synthauros-blood-red);
    margin-bottom: 0.5rem;
}

.track-artist {
    color: var(--text-secondary);
}

.player-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.control-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--synthauros-steel);
    background: transparent;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--synthauros-crimson);
}

.control-btn:hover {
    background: rgba(59, 15, 14, 0.2);
    border-color: var(--synthauros-blood-red);
    transform: scale(1.1);
}

.play-btn {
    width: 70px;
    height: 70px;
    background: var(--synthauros-blood-red);
    border: none;
    color: var(--text-primary);
}

.play-btn:hover {
    background: var(--synthauros-crimson);
}

.control-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.progress-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: var(--synthauros-blood-red);
    border-radius: 2px;
    width: 30%;
    transition: width 0.1s linear;
}

.time-current,
.time-total {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}

.playlist {
    max-height: 300px;
    overflow-y: auto;
}

.playlist::-webkit-scrollbar {
    width: 8px;
}

.playlist::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.playlist::-webkit-scrollbar-thumb {
    background: rgba(59, 15, 14, 0.4);
    border-radius: 4px;
}

.playlist-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.playlist-item:hover {
    background: rgba(59, 15, 14, 0.2);
}

.playlist-item.active {
    background: rgba(59, 15, 14, 0.3);
    border-left: 3px solid var(--synthauros-blood-red);
}

.track-number {
    font-family: var(--font-mono);
    color: var(--synthauros-crimson);
    margin-right: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.track-details {
    flex: 1;
    display: flex;
    justify-content: space-between;
}

.track-name {
    color: var(--text-primary);
}

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

/* Contact Section */
.contact-section {
    padding: var(--space-xl) 0;
    background: var(--synthauros-black);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.contact-form {
    background: rgba(21, 21, 21, 0.5);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(59, 15, 14, 0.3);
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--synthauros-black);
    border: 1px solid var(--synthauros-steel);
    border-radius: 4px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--synthauros-blood-red);
    box-shadow: 0 0 0 3px rgba(79, 20, 20, 0.2);
}

.form-group label {
    position: absolute;
    top: -10px;
    left: 12px;
    background: var(--synthauros-dark-brown);
    padding: 0 8px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label {
    color: var(--synthauros-crimson);
}

.btn-submit {
    width: 100%;
    padding: 12px 32px;
    background: var(--synthauros-blood-red);
    border: none;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border-radius: 4px;
}

.btn-submit:hover {
    background: var(--synthauros-crimson);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(79, 20, 20, 0.5);
}

.social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.social-links h3 {
    font-family: var(--font-mono);
    color: var(--synthauros-crimson);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.social-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.social-link {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--synthauros-steel);
    border-radius: 50%;
    color: var(--synthauros-crimson);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--synthauros-blood-red);
    border-color: var(--synthauros-blood-red);
    color: var(--text-primary);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(79, 20, 20, 0.5);
}

.social-link svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Footer */
.footer {
    padding: var(--space-xl) 0;
    background: var(--gradient-dark);
    border-top: 1px solid var(--synthauros-blood-red);
}

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

.footer-logo {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    color: var(--synthauros-crimson);
    margin-bottom: 1rem;
    letter-spacing: 0.2em;
    font-weight: 800;
}

.footer-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-family: var(--font-mono);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.footer-quote {
    color: var(--synthauros-crimson);
    font-style: italic;
    font-size: 0.9rem;
    font-family: var(--font-primary);
}

.footer-creator {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-family: var(--font-mono);
    letter-spacing: 0.05em;
}

.footer-creator a {
    color: var(--synthauros-crimson);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-creator a:hover {
    color: var(--text-primary);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Mobile Menu */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(1, 1, 1, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    /* Mobile Menu Items */
    .nav-menu li {
        width: 100%;
        margin: 0;
    }

    .nav-menu a,
    .nav-menu .nav-link {
        display: block;
        padding: 1rem 2rem;
        color: var(--text-secondary);
        text-decoration: none;
        font-family: var(--font-mono);
        font-size: 1rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu a:hover {
        background: rgba(244, 67, 54, 0.1);
        color: var(--text-primary);
    }

    /* Mobile Submenu */
    .nav-submenu {
        display: none;
        background: rgba(1, 1, 1, 0.9);
        border-top: 1px solid rgba(244, 67, 54, 0.3);
    }

    .nav-submenu.active {
        display: block;
    }

    .nav-submenu a {
        padding: 0.75rem 3rem;
        font-size: 0.9rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .hamburger {
        display: flex;
    }

    .nav-social {
        display: none; /* Hide on mobile to keep navbar clean */
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 4rem);
        font-weight: 400;
        letter-spacing: 8px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .social-grid {
        justify-content: center;
    }
}

/* Animations on Scroll */
[data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--synthauros-black);
}

::-webkit-scrollbar-thumb {
    background: rgba(79, 20, 20, 0.6);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--synthauros-blood-red);
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Videos Section */
.videos-section {
    padding: var(--space-xl) 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.videos-section .container {
    position: relative;
    z-index: 3;
}

.videos-hero-image {
    text-align: center;
    margin-bottom: 3rem;
}

.hero-section-image {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--synthauros-crimson);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.video-item {
    display: flex;
    flex-direction: column;
    background: rgba(21, 21, 21, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(244, 67, 54, 0.3);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.video-item:hover {
    transform: translateY(-5px);
    border-color: var(--synthauros-crimson);
    box-shadow: 0 20px 40px rgba(79, 20, 20, 0.4);
}

.video-item video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px 8px 0 0; /* Round top corners only */
}

.video-loading {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-secondary);
    font-family: var(--font-mono);
    padding: 3rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.video-item-title {
    padding: 1rem;
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-align: center;
}

@media (max-width: 768px) {
    .videos-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================================
   GALLERY SECTION
   =========================================== */

.gallery-section {
    padding: var(--space-xl) 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.gallery-item-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* Square aspect ratio */
    overflow: hidden;
    background: rgba(21, 21, 21, 0.85);
    border: 1px solid rgba(244, 67, 54, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.gallery-item-wrapper:hover {
    transform: translateY(-5px);
    border-color: var(--synthauros-crimson);
    box-shadow: 0 20px 40px rgba(79, 20, 20, 0.4);
}

.gallery-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item-wrapper:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    padding: 1.5rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item-wrapper:hover .gallery-item-overlay {
    transform: translateY(0);
}

.gallery-item-title {
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin: 0 0 0.5rem 0;
}

.gallery-item-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.4;
    margin: 0 0 0.5rem 0;
}

.gallery-item-category {
    display: inline-block;
    background: rgba(79, 20, 20, 0.5);
    color: var(--synthauros-crimson);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.gallery-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-secondary);
    font-family: var(--font-mono);
    padding: 3rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Gallery Lightbox */
.gallery-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.gallery-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.gallery-lightbox-info {
    margin-top: 1.5rem;
    text-align: center;
    max-width: 600px;
}

.gallery-lightbox-info h3 {
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.gallery-lightbox-info p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.gallery-lightbox-info span {
    display: inline-block;
    background: rgba(79, 20, 20, 0.5);
    color: var(--synthauros-crimson);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.gallery-lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: var(--text-primary);
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
    line-height: 1;
    font-weight: 300;
}

.gallery-lightbox-close:hover {
    color: var(--synthauros-crimson);
}

.gallery-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(79, 20, 20, 0.5);
    color: var(--text-primary);
    border: none;
    font-size: 2rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.gallery-lightbox-nav:hover {
    background: var(--synthauros-crimson);
    color: var(--bg-primary);
}

.gallery-lightbox-prev {
    left: 2rem;
}

.gallery-lightbox-next {
    right: 2rem;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }

    .gallery-lightbox {
        padding: 1rem;
    }

    .gallery-lightbox-nav {
        font-size: 1.5rem;
        padding: 0.75rem 1rem;
    }

    .gallery-lightbox-prev {
        left: 1rem;
    }

    .gallery-lightbox-next {
        right: 1rem;
    }

    .gallery-lightbox-close {
        top: 1rem;
        right: 1rem;
        font-size: 2rem;
    }
}

/* ===========================================
   NEW COMPONENTS - PHP SYSTEM STYLES
   =========================================== */

/* Contact Sidebar & Newsletter */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.newsletter-signup {
    background: rgba(21, 21, 21, 0.5);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(59, 15, 14, 0.3);
    text-align: center;
}

.newsletter-signup h3 {
    font-family: var(--font-mono);
    color: var(--synthauros-crimson);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 1.2rem;
}

.newsletter-signup p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.newsletter-input-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.newsletter-input-group input {
    flex: 1;
    padding: 12px 16px;
    background: var(--synthauros-black);
    border: 1px solid var(--synthauros-steel);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.newsletter-input-group input:focus {
    outline: none;
    border-color: var(--synthauros-crimson);
    box-shadow: 0 0 10px rgba(79, 20, 20, 0.3);
}

.btn-newsletter {
    width: 100%;
    background: var(--gradient-secondary);
    color: var(--text-primary);
    border: 1px solid var(--synthauros-crimson);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-newsletter:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 20, 20, 0.3);
}

/* Admin Stats */
.admin-stats {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid var(--synthauros-crimson);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.admin-stats h4 {
    color: var(--synthauros-crimson);
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.admin-stats p {
    color: var(--text-secondary);
    margin: 5px 0;
    font-size: 0.9rem;
}

.admin-stats a {
    color: var(--synthauros-crimson);
    text-decoration: none;
    font-weight: 500;
}

.admin-stats a:hover {
    text-decoration: underline;
}

/* Verification Page */
.verification-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    background: var(--synthauros-black);
}

.verification-card {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--synthauros-crimson);
    border-radius: 15px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.verification-card h1 {
    color: var(--text-primary);
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.verification-message {
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.verification-message.success {
    background: rgba(79, 20, 20, 0.8);
    border: 1px solid var(--synthauros-crimson);
    color: #fff;
}

.verification-message.info {
    background: rgba(20, 79, 79, 0.8);
    border: 1px solid #147F7F;
    color: #fff;
}

.verification-message.error {
    background: rgba(79, 20, 20, 0.8);
    border: 1px solid var(--synthauros-crimson);
    color: #ff6b6b;
}

.verification-actions {
    margin-top: 30px;
}

.btn-error {
    display: inline-block;
    background: var(--gradient-secondary);
    color: var(--text-primary);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    border: 1px solid var(--synthauros-crimson);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 10px;
}

.btn-error:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 20, 20, 0.3);
}

/* Development Info */
.dev-info {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid var(--synthauros-crimson);
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    font-family: var(--font-mono);
    font-size: 12px;
    text-align: center;
}

.dev-info strong {
    color: var(--synthauros-crimson);
}

/* Enhanced Form Styles */
.btn-submit:disabled,
.btn-newsletter:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* Improved Mobile Responsiveness */
@media (max-width: 768px) {
    .contact-sidebar {
        gap: 2rem;
    }

    .newsletter-signup {
        padding: 1.5rem;
    }

    .newsletter-input-group {
        flex-direction: column;
        gap: 0.5rem;
    }

    .verification-card {
        padding: 30px 20px;
        margin: 20px;
    }

    .verification-card h1 {
        font-size: 2rem;
    }

    .admin-stats {
        padding: 15px;
        margin: 15px 0;
    }

    .btn-error {
        display: block;
        margin: 10px 0;
        width: 100%;
    }

    .toast-container {
        left: 10px;
        right: 10px;
        top: 10px;
    }

    .toast {
        max-width: none;
        width: 100%;
    }
}

/* Tablet Responsiveness */
@media (max-width: 1024px) and (min-width: 769px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-card {
        margin-bottom: 2rem;
    }
}

/* Dark mode enhancements */
@media (prefers-color-scheme: dark) {
    :root {
        --synthauros-black: #000000;
        --text-primary: #ffffff;
        --text-secondary: #cccccc;
    }
}

/* Print styles */
@media print {
    .navbar,
    .cta-buttons,
    .social-links,
    .player-controls,
    footer {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .section-title,
    .section-subtitle {
        color: black !important;
        page-break-after: avoid;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --synthauros-crimson: #ff0000;
        --text-primary: #ffffff;
        --text-secondary: #cccccc;
        --synthauros-black: #000000;
    }

    .btn-primary,
    .btn-submit,
    .btn-newsletter {
        border: 2px solid var(--synthauros-crimson);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .particle-field {
        display: none;
    }
}

/* AOS Animation Enhancements */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Utility Classes for Dynamic Content */
.content-dynamic {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    pointer-events: none;
}

.toast {
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid var(--synthauros-crimson);
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: auto;
    max-width: 300px;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast.success {
    border-color: var(--synthauros-crimson);
    background: rgba(79, 20, 20, 0.9);
}

.toast.error {
    border-color: #ff4444;
    background: rgba(255, 68, 68, 0.9);
}

.toast.info {
    border-color: #4444ff;
    background: rgba(68, 68, 255, 0.9);
}

.toast .close-btn {
    float: right;
    margin-left: 10px;
    cursor: pointer;
    font-weight: bold;
    color: var(--text-secondary);
}

.toast .close-btn:hover {
    color: var(--text-primary);
}

/* Analytics Integration Styles */
.analytics-hidden {
    display: none;
}

.analytics-visible {
    display: block;
}

/* Enhanced Button States */
.btn-loading {
    position: relative;
    color: transparent !important;
}

.btn-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top-color: var(--text-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Error States */
.form-error {
    border-color: #ff4444 !important;
    box-shadow: 0 0 10px rgba(255, 68, 68, 0.3) !important;
}

.error-message {
    color: #ff6b6b;
    font-size: 0.875rem;
    margin-top: 5px;
    display: block;
}

/* Success States */
.form-success {
    border-color: var(--synthauros-crimson) !important;
    box-shadow: 0 0 10px rgba(79, 20, 20, 0.3) !important;
}

.success-message {
    color: var(--synthauros-crimson);
    font-size: 0.875rem;
    margin-top: 5px;
    display: block;
}

/* Focus States Enhancement */
.form-group input:focus,
.form-group textarea:focus,
.newsletter-input-group input:focus {
    border-color: var(--synthauros-crimson);
    box-shadow: 0 0 10px rgba(79, 20, 20, 0.3);
    outline: none;
}

/* Placeholder Styling */
.form-group input::placeholder,
.form-group textarea::placeholder,
.newsletter-input-group input::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

/* Label Animation Enhancement */
.form-group label {
    transition: all 0.3s ease;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    transform: translateY(-25px);
    font-size: 0.75rem;
    color: var(--synthauros-crimson);
}

/* ===========================================
   NEW SECTIONS - ABOUT, LYRICS, FEATURED, TESTIMONIALS
   =========================================== */

/* About Section */
.about-section {
    padding: var(--space-2xl) 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 50%, #0a0a0a 100%);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    position: relative;
}

.image-container {
    width: 300px;
    height: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    border: 2px solid var(--synthauros-crimson);
}

.creator-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.glitch-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 2px,
        rgba(79, 20, 20, 0.1) 2px,
        rgba(79, 20, 20, 0.1) 4px
    );
    animation: glitch 2s infinite;
}

@keyframes glitch {
    0%, 100% { transform: translateX(0); }
    10% { transform: translateX(-2px); }
    20% { transform: translateX(2px); }
    30% { transform: translateX(-1px); }
    40% { transform: translateX(1px); }
    50% { transform: translateX(-2px); }
    60% { transform: translateX(2px); }
    70% { transform: translateX(-1px); }
    80% { transform: translateX(1px); }
    90% { transform: translateX(-1px); }
}

.about-content h3 {
    color: var(--synthauros-crimson);
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 2rem 0 1rem 0;
    font-size: 1.1rem;
}

.bio-text p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.influence-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.influence-tag {
    background: rgba(79, 20, 20, 0.2);
    border: 1px solid var(--synthauros-crimson);
    color: var(--text-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.influence-tag:hover {
    background: var(--synthauros-crimson);
    transform: translateY(-2px);
}

.creator-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--synthauros-crimson);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Lyrics Section */
.lyrics-section {
    padding: var(--space-2xl) 0;
    background: var(--synthauros-black);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.lyrics-section .container {
    position: relative;
    z-index: 3;
}

.lyrics-container {
    max-width: 800px;
    margin: 0 auto;
}

.lyric-item {
    background: rgba(21, 21, 21, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(244, 67, 54, 0.3);
    border-radius: 10px;
    margin-bottom: 2rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.lyric-item:hover {
    border-color: var(--synthauros-crimson);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(79, 20, 20, 0.2);
}

.lyric-header {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lyric-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    margin-right: 1rem;
    object-fit: cover;
}

.lyric-info h3 {
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
    font-size: 1.2rem;
}

.track-reference {
    color: var(--synthauros-blood-red);
    font-size: 0.9rem;
    margin: 0;
}

.lyrics-text {
    padding: 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.lyrics-text.show {
    max-height: 500px;
}

.lyrics-text pre {
    white-space: pre-wrap;
    line-height: 1.6;
    color: var(--text-secondary);
    font-family: var(--font-primary);
    margin: 0;
}

.lyric-actions {
    padding: 0 1.5rem 1.5rem;
    text-align: center;
}

.btn-lyric-toggle {
    background: var(--gradient-secondary);
    color: var(--text-primary);
    border: 1px solid var(--synthauros-crimson);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.btn-lyric-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 20, 20, 0.3);
}

.no-lyrics {
    text-align: center;
    padding: 3rem;
    color: var(--text-secondary);
}

.no-lyrics p:first-child {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Lyrics Modal */
.lyrics-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: rgba(59, 15, 14, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(244, 67, 54, 0.3);
    border-radius: 16px;
    max-width: 800px;
    max-height: 80vh;
    width: 90%;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(244, 67, 54, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.modal-header h3 {
    color: #8B0000;
    text-shadow:
        0 0 5px rgba(139, 0, 0, 0.8),
        0 0 10px rgba(139, 0, 0, 0.6),
        2px 2px 4px rgba(0, 0, 0, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
    flex: 1;
}

.modal-header .track-reference {
    color: var(--text-secondary);
    margin: 0.5rem 0 0 0;
    font-size: 0.9rem;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: rgba(244, 67, 54, 0.1);
    color: var(--synthauros-crimson);
}

.modal-body {
    padding: 2rem;
    max-height: calc(80vh - 120px);
    overflow-y: auto;
}

.lyrics-content {
    background: rgba(25, 14, 14, 0.8);
    border: 1px solid rgba(244, 67, 54, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
}

.lyrics-content pre {
    color: var(--text-primary);
    line-height: 1.6;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-family: var(--font-mono);
    font-size: 0.95rem;
    margin: 0;
    text-align: left;
}

/* Chronicles Section */
.chronicles-section {
    padding: var(--space-2xl) 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.chronicles-section .container {
    position: relative;
    z-index: 3;
}

.chronicles-header {
    text-align: center;
    margin-bottom: 2rem;
}

.chronicles-filter {
    margin: 2rem 0;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.filter-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.filter-btn:hover {
    background: rgba(244, 67, 54, 0.2);
    border-color: var(--synthauros-crimson);
    color: var(--text-primary);
    transform: translateY(-1px);
}

.filter-btn.active {
    background: var(--synthauros-crimson);
    border-color: var(--synthauros-crimson);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(244, 67, 54, 0.4);
}

/* AJAX Loading States */
.loading-chronicles {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
    color: var(--text-secondary);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(244, 67, 54, 0.1);
    border-top: 3px solid var(--synthauros-crimson);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.btn-back-home {
    display: inline-block;
    color: var(--synthauros-crimson);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 1.5rem;
    transition: color 0.2s ease;
}

.btn-back-home:hover {
    color: var(--text-primary);
}

.chronicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.chronicle-card {
    background: rgba(21, 21, 21, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(244, 67, 54, 0.3);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.chronicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(244, 67, 54, 0.2);
    border-color: var(--synthauros-crimson);
}

.chronicle-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.chronicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.chronicle-card:hover .chronicle-image img {
    transform: scale(1.05);
}

.chronicle-content {
    padding: 1.5rem;
}

.chronicle-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.chronicle-category {
    background: rgba(244, 67, 54, 0.3);
    color: #ffffff;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    border: 1px solid rgba(244, 67, 54, 0.5);
}

.chronicle-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.chronicle-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.chronicle-title a:hover {
    color: var(--synthauros-crimson);
}

.chronicle-excerpt {
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.chronicle-read-more {
    color: var(--synthauros-crimson);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.chronicle-read-more:hover {
    color: var(--text-primary);
    text-decoration: underline;
}

.no-chronicles {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--text-secondary);
}

.no-chronicles p:first-child {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Single Chronicle Page */
.single-chronicle-section {
    padding: var(--space-2xl) 0;
    background: var(--gradient-dark);
    min-height: 100vh;
}

.chronicle-full {
    max-width: 800px;
    margin: 0 auto;
}

.chronicle-hero-image {
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.chronicle-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.chronicle-header {
    margin-bottom: 2rem;
}

.chronicle-header .chronicle-meta {
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.chronicle-header .chronicle-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--text-primary);
}

.chronicle-body {
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.chronicle-body p {
    margin-bottom: 1.5rem;
}

.chronicle-footer {
    border-top: 1px solid rgba(244, 67, 54, 0.2);
    padding-top: 2rem;
    margin-bottom: 2rem;
}

.chronicle-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.chronicle-tag {
    background: rgba(244, 67, 54, 0.1);
    color: var(--synthauros-crimson);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.chronicle-navigation {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(244, 67, 54, 0.2);
}

.btn-chronicle-nav {
    background: var(--gradient-secondary);
    color: var(--text-primary);
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-chronicle-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(79, 20, 20, 0.3);
}

/* Not Found Page */
.not-found-section {
    padding: var(--space-2xl) 0;
    background: var(--gradient-dark);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.not-found-content {
    text-align: center;
    max-width: 500px;
}

.not-found-content h1 {
    font-size: 3rem;
    color: var(--synthauros-crimson);
    margin-bottom: 1rem;
}

.not-found-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Featured Section */
.featured-section {
    padding: var(--space-2xl) 0;
    background: linear-gradient(135deg, rgba(26, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.85) 100%),
                url('public/images/the_anvil_of_creation.webp') center center / cover no-repeat;
    background-attachment: fixed;
    position: relative;
}

.featured-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.featured-section .container {
    position: relative;
    z-index: 1;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.featured-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(21, 21, 21, 0.5);
    border: 1px solid rgba(79, 20, 20, 0.3);
}

.featured-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--synthauros-crimson);
    color: var(--text-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.track-highlight,
.video-highlight {
    position: relative;
    height: 300px;
}

.featured-image,
.featured-video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.featured-video-player {
    position: relative;
    z-index: 1;
}

.track-overlay,
.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 2rem 1.5rem 3rem;
    color: var(--text-primary);
    pointer-events: none;
    transition: opacity 0.3s ease;
    opacity: 1;
}

.track-overlay h3,
.video-overlay h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
}

.track-overlay p,
.video-overlay p {
    margin: 0 0 1rem 0;
    color: var(--text-secondary);
    line-height: 1.4;
}

.track-meta,
.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.btn-play-featured {
    background: var(--gradient-secondary);
    color: var(--text-primary);
    border: 1px solid var(--synthauros-crimson);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.btn-play-featured:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 20, 20, 0.3);
}

.btn-play-video-track {
    background: rgba(59, 15, 14, 0.9);
    color: var(--text-primary);
    border: 1px solid var(--synthauros-crimson);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
    pointer-events: auto;
    position: relative;
    z-index: 10;
}

.btn-play-video-track:hover {
    background: var(--synthauros-crimson);
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(79, 20, 20, 0.4);
}

.stats-highlight {
    padding: 2rem;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stats-highlight h3 {
    color: var(--synthauros-crimson);
    font-family: var(--font-mono);
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.btn-stats-refresh {
    align-self: center;
    background: rgba(79, 20, 20, 0.8);
    color: var(--text-primary);
    border: 1px solid var(--synthauros-crimson);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.btn-stats-refresh:hover {
    background: var(--synthauros-crimson);
    transform: translateY(-2px);
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--space-2xl) 0;
    background: var(--synthauros-black);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.section-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.3;
}

.video-overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(25, 14, 14, 0.8) 0%,
        rgba(59, 15, 14, 0.7) 50%,
        rgba(25, 14, 14, 0.8) 100%
    );
    z-index: 2;
}

.testimonials-section .container {
    position: relative;
    z-index: 3;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-item {
    background: rgba(21, 21, 21, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(244, 67, 54, 0.3);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    border-color: var(--synthauros-crimson);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(79, 20, 20, 0.2);
}

.testimonial-quote {
    position: relative;
    margin-bottom: 1.5rem;
}

.quote-mark {
    font-size: 3rem;
    color: var(--synthauros-crimson);
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: -10px;
}

.quote-mark:last-child {
    right: -10px;
    left: auto;
    top: auto;
    bottom: -20px;
}

.testimonial-quote blockquote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
    padding: 0 1rem;
    font-style: italic;
}

.testimonial-author {
    text-align: right;
    margin-bottom: 1rem;
}

.testimonial-author cite {
    color: var(--synthauros-crimson);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.testimonial-rating {
    text-align: center;
    margin-bottom: 1rem;
}

.star {
    color: var(--synthauros-crimson);
    font-size: 1.2rem;
    margin: 0 2px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    border: 2px solid var(--synthauros-crimson);
}

.avatar-icon {
    font-size: 1.5rem;
}

.author-info .author-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-info .author-cred {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.testimonial-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-date {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.btn-like {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.btn-like:hover {
    border-color: var(--synthauros-crimson);
    color: var(--synthauros-crimson);
}

.btn-like.liked {
    background: var(--synthauros-crimson);
    border-color: var(--synthauros-crimson);
    color: var(--text-primary);
}

.like-count {
    margin-left: 0.25rem;
}

.testimonial-cta {
    background: rgba(59, 15, 14, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: center;
    display: none;
}

.testimonial-cta h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.testimonial-cta p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.btn-share-testimonial {
    background: var(--synthauros-black);
    color: var(--text-primary);
    border: 1px solid var(--text-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.btn-share-testimonial:hover {
    background: var(--text-primary);
    color: var(--synthauros-black);
}

/* Testimonial Form Modal */
.testimonial-form {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.form-content {
    position: relative;
    background: var(--synthauros-black);
    border: 1px solid var(--synthauros-crimson);
    border-radius: 15px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.form-content h3 {
    color: var(--synthauros-crimson);
    text-align: center;
    margin-bottom: 2rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.char-count {
    text-align: right;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.rating-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.rating-input {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.rating-input input {
    display: none;
}

.rating-input label {
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s ease;
}

.rating-input input:checked ~ label,
.rating-input label:hover,
.rating-input label:hover ~ label {
    color: var(--synthauros-crimson);
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.btn-cancel {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.btn-cancel:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.btn-submit-testimonial {
    background: var(--gradient-secondary);
    color: var(--text-primary);
    border: 1px solid var(--synthauros-crimson);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.btn-submit-testimonial:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 20, 20, 0.3);
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .image-placeholder {
        width: 250px;
        height: 250px;
        margin: 0 auto;
    }

    .creator-stats {
        justify-content: center;
    }

    .featured-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }

    .author-avatar {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .form-actions {
        flex-direction: column;
    }

    .rating-input {
        justify-content: space-around;
    }
}

/* ===========================================
   ADMIN PANEL STYLES
   =========================================== */

.admin-container {
    display: flex;
    min-height: 100vh;
    background: var(--synthauros-black);
}

.admin-sidebar {
    width: 250px;
    background: rgba(21, 21, 21, 0.9);
    border-right: 1px solid var(--synthauros-crimson);
    padding: 20px;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
}

.admin-sidebar h2 {
    color: var(--synthauros-crimson);
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
    text-align: center;
}

.admin-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.admin-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.admin-nav a:hover,
.admin-nav a.active {
    background: var(--synthauros-crimson);
    color: var(--text-primary);
}

.admin-sidebar-footer {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-logout {
    background: rgba(255, 68, 68, 0.8);
    color: var(--text-primary);
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-logout:hover {
    background: #ff4444;
}

.btn-view-site {
    background: var(--gradient-secondary);
    color: var(--text-primary);
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-view-site:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 20, 20, 0.3);
}

.admin-content {
    flex: 1;
    margin-left: 250px;
    padding: 30px;
    max-width: calc(100% - 250px);
}

/* Admin Messages */
.admin-message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.admin-message.success {
    background: rgba(79, 20, 20, 0.8);
    border: 1px solid var(--synthauros-crimson);
    color: #fff;
}

.admin-message.error {
    background: rgba(255, 68, 68, 0.8);
    border: 1px solid #ff4444;
    color: #fff;
}

.admin-header h1 {
    color: var(--text-primary);
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.admin-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Content Editor */
.content-editor {
    background: rgba(21, 21, 21, 0.5);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

.content-block-editor {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(79, 20, 20, 0.3);
}

.content-block-editor h3 {
    color: var(--synthauros-crimson);
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
}

.content-form .form-group {
    margin-bottom: 15px;
}

.content-form label {
    display: block;
    color: var(--text-primary);
    margin-bottom: 5px;
    font-weight: 600;
}

.content-form input,
.content-form textarea {
    width: 100%;
    padding: 10px 12px;
    background: var(--synthauros-black);
    border: 1px solid var(--synthauros-steel);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.content-form textarea {
    resize: vertical;
    min-height: 60px;
}

/* Upload Sections */
.upload-section {
    background: rgba(21, 21, 21, 0.5);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

.upload-section h3 {
    color: var(--synthauros-crimson);
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.upload-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.upload-form .form-group {
    margin-bottom: 15px;
}

.upload-form label {
    display: block;
    color: var(--text-primary);
    margin-bottom: 5px;
    font-weight: 600;
}

.upload-form input[type="text"],
.upload-form input[type="file"],
.upload-form textarea {
    width: 100%;
    padding: 10px 12px;
    background: var(--synthauros-black);
    border: 1px solid var(--synthauros-steel);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.upload-form input[type="file"] {
    padding: 8px;
}

.upload-form textarea {
    resize: vertical;
    min-height: 80px;
}

/* Tracks/Videos Lists */
.tracks-list,
.videos-list {
    background: rgba(21, 21, 21, 0.5);
    border-radius: 15px;
    padding: 30px;
}

.tracks-list h3,
.videos-list h3 {
    color: var(--synthauros-crimson);
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.tracks-grid,
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.track-item,
.video-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(79, 20, 20, 0.2);
    transition: all 0.3s ease;
}

.track-item:hover,
.video-item:hover {
    border-color: var(--synthauros-crimson);
    transform: translateY(-5px);
}

.track-thumb,
.video-thumb {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.track-info,
.video-info {
    padding: 15px;
}

.track-info h4,
.video-info h4 {
    color: var(--text-primary);
    margin: 0 0 8px 0;
    font-size: 1rem;
}

.track-info p,
.video-info p {
    color: var(--text-secondary);
    margin: 0 0 10px 0;
    font-size: 0.8rem;
}

.track-actions,
.video-actions {
    display: flex;
    gap: 8px;
}

.btn-small {
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.btn-danger {
    background: rgba(255, 68, 68, 0.8);
    color: var(--text-primary);
}

.btn-danger:hover {
    background: #ff4444;
}

/* Analytics */
.analytics-content {
    background: rgba(21, 21, 21, 0.5);
    border-radius: 15px;
    padding: 30px;
}

.analytics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.analytics-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(79, 20, 20, 0.2);
}

.analytics-card h3 {
    color: var(--synthauros-crimson);
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
}

.analytics-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.analytics-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.analytics-item span:first-child {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.analytics-item span:last-child {
    color: var(--synthauros-crimson);
    font-weight: 600;
}

/* Admin Footer */
.admin-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(79, 20, 20, 0.3);
}

.quick-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Submit Buttons */
.btn-admin-submit {
    background: var(--gradient-secondary);
    color: var(--text-primary);
    border: 1px solid var(--synthauros-crimson);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-admin-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 20, 20, 0.3);
}

/* Newsletter Management */
.newsletter-stats {
    background: rgba(21, 21, 21, 0.5);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(79, 20, 20, 0.2);
    text-align: center;
}

.stat-card h3 {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-card .stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-primary);
}

.newsletter-filters {
    background: rgba(21, 21, 21, 0.5);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
}

.subscribers-list {
    background: rgba(21, 21, 21, 0.5);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

.subscribers-list h3 {
    color: var(--synthauros-crimson);
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.subscribers-table-container {
    overflow-x: auto;
}

.subscribers-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.02);
}

.subscribers-table thead {
    background: rgba(79, 20, 20, 0.3);
}

.subscribers-table th {
    padding: 15px;
    text-align: left;
    color: var(--synthauros-crimson);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
    border-bottom: 2px solid var(--synthauros-crimson);
}

.subscribers-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.subscribers-table tr:hover {
    background: rgba(79, 20, 20, 0.1);
}

.subscribers-table tr.active {
    border-left: 3px solid var(--synthauros-crimson);
}

.subscribers-table tr.pending {
    border-left: 3px solid #ffaa00;
    opacity: 0.8;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.status-badge.active {
    background: rgba(79, 20, 20, 0.8);
    color: var(--synthauros-crimson);
    border: 1px solid var(--synthauros-crimson);
}

.status-badge.pending {
    background: rgba(255, 170, 0, 0.2);
    color: #ffaa00;
    border: 1px solid #ffaa00;
}

.subscriber-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.newsletter-export {
    background: rgba(21, 21, 21, 0.5);
    border-radius: 15px;
    padding: 30px;
}

.newsletter-export h3 {
    color: var(--synthauros-crimson);
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.export-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.export-buttons a {
    text-decoration: none;
}

/* Development Tools */
.newsletter-dev-tools {
    background: rgba(21, 21, 21, 0.5);
    border-radius: 15px;
    padding: 30px;
    margin-top: 30px;
    border: 1px solid rgba(255, 165, 0, 0.3);
}

.newsletter-dev-tools h3 {
    color: #ffaa00;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.dev-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.dev-buttons button {
    background: rgba(255, 165, 0, 0.8);
    border: 1px solid #ffaa00;
    color: var(--text-primary);
}

.dev-buttons button:hover {
    background: #ffaa00;
}

/* Responsive Admin */
@media (max-width: 768px) {
    .admin-container {
        flex-direction: column;
    }

    .admin-sidebar {
        position: static;
        width: 100%;
        height: auto;
        border-right: none;
        border-bottom: 1px solid var(--synthauros-crimson);
    }

    .admin-content {
        margin-left: 0;
        max-width: 100%;
    }

    .upload-form .form-row {
        grid-template-columns: 1fr;
    }

    .tracks-grid,
    .videos-grid {
        grid-template-columns: 1fr;
    }

    .analytics-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .subscribers-table {
        font-size: 0.85rem;
    }

    .subscribers-table th,
    .subscribers-table td {
        padding: 10px 8px;
    }

    .subscriber-actions {
        flex-direction: column;
    }

    .subscriber-actions .btn-small {
        width: 100%;
    }
}