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

/* Performance optimizations */
.hero-video,
.banner-video,
.mystical-text-line,
.custom-cursor,
.cursor-trail,
.video-wrapper iframe {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

:root {
    --primary-color: #ff3333;
    --primary-glow: #ff0000;
    --secondary-color: #1a0000;
    --accent-color: #ff6600;
    --bg-dark: #000000;
    --bg-darker: #000000;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
    --text-dark-gray: #666666;
    --border-color: #1a1a1a;
    --gradient-primary: linear-gradient(135deg, #ff3333 0%, #ff0000 50%, #cc0000 100%);
    --gradient-dark: linear-gradient(180deg, #000000 0%, #0a0000 100%);
    --gradient-fire: linear-gradient(135deg, #ff6600 0%, #ff3333 50%, #cc0000 100%);
    --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.9);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.8);
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 30px rgba(255, 51, 51, 0.5);
    --text-shadow-heavy: 2px 2px 4px rgba(0, 0, 0, 0.9), 0 0 20px rgba(255, 0, 0, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255, 51, 51, 0.01) 35px, rgba(255, 51, 51, 0.01) 70px),
        radial-gradient(ellipse at top, rgba(255, 0, 0, 0.05) 0%, transparent 70%);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            rgba(0, 0, 0, 0) 0px,
            rgba(0, 0, 0, 0.05) 1px,
            rgba(0, 0, 0, 0) 2px,
            rgba(0, 0, 0, 0) 3px
        );
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    font-size: 1rem;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 5rem;
    text-align: center;
    margin-bottom: 5rem;
    color: #ff6b35;
    text-transform: uppercase;
    letter-spacing: 6px;
    font-weight: 600;
    position: relative;
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    95% { opacity: 0.9; }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 20px 50px;
    text-decoration: none;
    border: none;
    border-radius: 0;
    font-weight: 600;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
    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: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: var(--shadow-medium), inset 0 0 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--primary-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-heavy), var(--shadow-glow);
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-fire);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover {
    color: var(--text-light);
    border-color: var(--primary-glow);
    box-shadow: 0 0 20px rgba(255, 51, 51, 0.5);
    transform: scale(1.05);
}

.btn-secondary:hover::before {
    left: 0;
}

.pulse-effect {
    animation: pulse 2s infinite, subtleGlitch 4s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 51, 51, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(255, 51, 51, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 51, 51, 0); }
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    background: var(--text-light);
    color: var(--bg-dark);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 51, 51, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 1);
    box-shadow: var(--shadow-heavy), 0 2px 10px rgba(255, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 51, 51, 0.2);
}

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

.nav-logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 51, 51, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    background: transparent;
    border: 1px solid transparent;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-fire);
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-link:hover {
    color: var(--text-light);
    text-shadow: 0 0 10px rgba(255, 51, 51, 0.8);
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-separator {
    width: 1px;
    height: 20px;
    background: linear-gradient(to bottom, transparent, var(--primary-color), transparent);
    margin: 0 0.5rem;
    opacity: 0.6;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 4rem 0;
    background: var(--bg-dark);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.hero-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at center, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: -1;
    mix-blend-mode: multiply;
}

/* Hero Video Banner Styles */
.hero-video-banner {
    position: relative;
    width: 100vw;
    height: 70vh;
    min-height: 600px;
    margin-left: calc(50% - 50vw);
    margin-top: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    background: #000000;
    top: 0;
    left: 0;
}

.banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transform: none !important; /* Prevent any JS transforms */
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.6) 100%),
        radial-gradient(ellipse at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

.banner-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem;
}

.banner-content .hero-title {
    font-size: 10rem;
    margin-bottom: 1.5rem;
    text-shadow: 
        3px 3px 6px rgba(0, 0, 0, 1),
        0 0 40px rgba(255, 51, 51, 0.8),
        0 0 80px rgba(255, 51, 51, 0.4);
    font-weight: 900;
    letter-spacing: 10px;
}

.banner-content .hero-subtitle {
    font-size: 3rem;
    margin-bottom: 0;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 1);
    letter-spacing: 6px;
}

.banner-logo {
    max-width: 500px;
    width: 80%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 40px rgba(255, 51, 51, 0.3));
    animation: logoFloat 4s ease-in-out infinite;
    transition: all 0.3s ease;
}

.banner-logo:hover {
    filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 60px rgba(255, 51, 51, 0.5));
    transform: scale(1.05);
}

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

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-logo-container {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 0 auto 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    width: 100%;
    height: auto;
    filter: brightness(1.2) contrast(1.1);
    animation: logoFloat 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 51, 51, 0.3) 0%, transparent 70%);
    filter: blur(30px);
    animation: pulseGlow 3s ease-in-out infinite;
}

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

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-title {
    font-size: 8rem;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 900;
    margin-bottom: 2rem;
    letter-spacing: 12px;
    text-transform: uppercase;
    background: linear-gradient(180deg, #ffffff 0%, #ff3333 50%, #cc0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: metalShine 3s ease-in-out infinite;
}

.hero-title.glitch {
    position: relative;
}

.hero-title.glitch::before,
.hero-title.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #ffffff 0%, #ff3333 50%, #cc0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title.glitch::before {
    animation: glitch-1 0.5s infinite;
    color: #ff0000;
    z-index: -1;
}

.hero-title.glitch::after {
    animation: glitch-2 0.5s infinite;
    color: #ff6600;
    z-index: -2;
}

@keyframes metalShine {
    0%, 100% { filter: brightness(1) contrast(1); }
    50% { filter: brightness(1.2) contrast(1.1); }
}

@keyframes glitch-1 {
    0%, 100% { clip: rect(42px, 9999px, 44px, 0); transform: translate(0); }
    20% { clip: rect(12px, 9999px, 59px, 0); transform: translate(-2px, -2px); }
    40% { clip: rect(85px, 9999px, 90px, 0); transform: translate(2px, 2px); }
    60% { clip: rect(25px, 9999px, 30px, 0); transform: translate(-1px, 1px); }
    80% { clip: rect(70px, 9999px, 90px, 0); transform: translate(1px, -1px); }
}

@keyframes glitch-2 {
    0%, 100% { clip: rect(65px, 9999px, 100px, 0); transform: translate(0); }
    20% { clip: rect(30px, 9999px, 70px, 0); transform: translate(2px, 2px); }
    40% { clip: rect(10px, 9999px, 40px, 0); transform: translate(-2px, -2px); }
    60% { clip: rect(80px, 9999px, 95px, 0); transform: translate(1px, -1px); }
    80% { clip: rect(45px, 9999px, 60px, 0); transform: translate(-1px, 1px); }
}

.hero-subtitle {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    letter-spacing: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.fire-text {
    background: linear-gradient(90deg, #ff6600, #ff3333, #ff6600);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fireGradient 3s linear infinite;
}

.separator {
    color: var(--primary-color);
    font-size: 1.2rem;
    animation: spin 4s linear infinite;
}

@keyframes fireGradient {
    to { background-position: 200% center; }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-buttons {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid var(--text-light);
    border-bottom: 2px solid var(--text-light);
    transform: rotate(45deg);
}

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

/* Media Section */
.media-section {
    padding: 10rem 0;
    background: var(--gradient-dark);
    position: relative;
}

.media-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    animation: scanline 8s linear infinite;
}

@keyframes scanline {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.media-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-bottom: 5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.media-item h3 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: var(--accent-color);
    letter-spacing: 2px;
}

.video-wrapper, .spotify-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    border: 2px solid var(--primary-color);
}

.video-wrapper iframe, .spotify-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Modern Video Section Styling */
.featured-video {
    margin-bottom: 6rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.featured-video-container {
    position: relative;
}

.video-wrapper.featured {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 51, 51, 0.2);
    border: 3px solid var(--primary-color);
    background: linear-gradient(135deg, #1a0000, #000000);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.video-wrapper.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(255, 51, 51, 0.1) 0%, 
        transparent 50%, 
        rgba(255, 102, 0, 0.1) 100%);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-wrapper.featured:hover::before {
    opacity: 1;
}

.video-wrapper.featured:hover {
    transform: scale(1.02);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 51, 51, 0.4);
    animation: subtleGlitch 4s infinite;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
    margin-bottom: 5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.video-item {
    position: relative;
}

.video-wrapper:not(.featured) {
    aspect-ratio: 16/9;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.video-wrapper:not(.featured):hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 51, 51, 0.3);
}

.video-metadata {
    padding: 1.5rem 0;
    text-align: center;
}

.video-metadata .video-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(255, 51, 51, 0.3);
}

.video-metadata h4.video-title {
    font-size: 1.8rem;
}

.video-metadata .video-details {
    font-size: 1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.streaming-links {
    text-align: center;
}

.streaming-links h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
}

.streaming-platforms {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.platform-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-light);
    text-decoration: none;
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 0;
    transition: all 0.3s ease;
    min-width: 150px;
}

.platform-link:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.platform-link i {
    font-size: 2.5rem;
}

/* Tour Section */
.tour-section {
    padding: 10rem 0;
    background: linear-gradient(180deg, #000000 0%, #0a0000 50%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.tour-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.03) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.tour-dates {
    max-width: 1000px;
    margin: 0 auto;
}

.tour-date {
    display: grid;
    grid-template-columns: 150px 1fr auto;
    align-items: center;
    gap: 3rem;
    padding: 2.5rem 3rem;
    margin-bottom: 2rem;
    background: linear-gradient(90deg, rgba(255, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.5) 100%);
    border-left: 5px solid var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tour-date::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 51, 51, 0.1), transparent);
    transition: left 0.5s ease;
}

.tour-date:hover::before {
    left: 100%;
}

.tour-date:hover {
    background: linear-gradient(90deg, rgba(255, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%);
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 5px 25px rgba(255, 51, 51, 0.2);
    border-left-width: 6px;
}

.tour-date.sold-out {
    opacity: 0.6;
    border-left-color: var(--text-dark-gray);
}

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

.date-info .date {
    display: block;
    font-size: 2.2rem;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(255, 51, 51, 0.5);
    letter-spacing: 3px;
}

.date-info .year {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.venue-info h4 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

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

.sold-out-badge {
    background: var(--text-dark-gray);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Merch Section */
.merch-section {
    padding: 10rem 0;
    background: 
        linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(10, 0, 0, 0.9) 100%),
        url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PHBhdHRlcm4gaWQ9ImdyaWQiIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+PHBhdGggZD0iTSAwIDEwIEwgNDAgMTAgTSAxMCAwIEwgMTAgNDAgTSAwIDIwIEwgNDAgMjAgTSAyMCAwIEwgMjAgNDAgTSAwIDMwIEwgNDAgMzAgTSAzMCAwIEwgMzAgNDAiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzFhMDAwMCIgb3BhY2l0eT0iMC4yIi8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyaWQpIi8+PC9zdmc+');
    position: relative;
}

.merch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.merch-coming-soon {
    text-align: center;
    padding: 6rem 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.merch-coming-soon h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    letter-spacing: 0.2em;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.merch-coming-soon p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    opacity: 0.9;
}

.merch-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 0, 0, 0.02) 100%);
    border: 1px solid rgba(255, 51, 51, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.merch-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-fire);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    filter: blur(5px);
}

.merch-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(255, 51, 51, 0.3);
}

.merch-item:hover::before {
    opacity: 0.5;
}

.merch-image {
    position: relative;
    overflow: hidden;
}

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

.merch-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.merch-item:hover .merch-overlay {
    opacity: 1;
}

.merch-item:hover .merch-image img {
    transform: scale(1.1);
}

.merch-info {
    padding: 2.5rem;
    text-align: center;
}

.merch-info h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.merch-cta {
    text-align: center;
}

/* About Section */
.about-section {
    padding: 10rem 0;
    background: #000000;
    position: relative;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

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

.about-text p {
    font-size: 1.3rem;
    line-height: 2;
    margin-bottom: 2.5rem;
    color: var(--text-gray);
    text-align: justify;
    position: relative;
    padding-left: 30px;
}

.about-text p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-fire);
    animation: flameFlicker 2s ease-in-out infinite;
}

@keyframes flameFlicker {
    0%, 100% { opacity: 1; height: 100%; }
    50% { opacity: 0.7; height: 95%; }
}

.about-image img {
    width: 100%;
    height: auto;
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-heavy), 0 0 50px rgba(255, 51, 51, 0.2);
    filter: contrast(1.1) saturate(0.9);
    transition: all 0.3s ease;
}

.about-image:hover img {
    filter: contrast(1.2) saturate(1);
    transform: scale(1.02);
    box-shadow: var(--shadow-heavy), 0 0 80px rgba(255, 51, 51, 0.4);
}

/* Page Hero Sections for SEO Pages */
.page-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #1a0000 0%, #000000 50%, #0a0000 100%);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 51, 51, 0.03) 10px,
        rgba(255, 51, 51, 0.03) 20px
    );
}

.page-title {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.page-subtitle {
    text-align: center;
    font-size: 1.5rem;
    color: var(--text-gray);
    position: relative;
    z-index: 1;
}

/* Biography Page Styles */
.biography-content {
    padding: 80px 0;
    background: var(--bg-dark);
}

.bio-article {
    max-width: 900px;
    margin: 0 auto;
}

.bio-article h2 {
    font-size: 2.5rem;
    margin: 3rem 0 1.5rem;
    color: var(--primary-color);
}

.bio-article p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

.bio-cta {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.1) 0%, transparent 100%);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    text-align: center;
}

.bio-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.bio-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Music/Discography Page Styles */
.discography-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

.album-showcase {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
}

.album-artwork img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-heavy);
}

.album-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.album-title {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.album-year {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.album-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.tracklist {
    margin: 2rem 0;
}

.tracklist h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.tracklist ol {
    list-style: none;
    counter-reset: track-counter;
}

.tracklist li {
    counter-increment: track-counter;
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tracklist li::before {
    content: counter(track-counter) ". ";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 1rem;
}

.streaming-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.stream-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.stream-btn.spotify {
    background: #1DB954;
    color: white;
}

.stream-btn.spotify:hover {
    background: #1aa34a;
}

.stream-btn.apple {
    background: #FC3C44;
    color: white;
}

.stream-btn.youtube {
    background: #FF0000;
    color: white;
}

.stream-btn.soundcloud {
    background: #ff5500;
    color: white;
}

.singles-section {
    margin-top: 4rem;
}

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

.single-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(255, 51, 51, 0.2);
}

.single-item h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.single-year {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.spotify-embed-section {
    margin-top: 4rem;
    text-align: center;
}

.spotify-embed {
    max-width: 800px;
    margin: 2rem auto;
}

/* Press Kit Page Styles */
.press-content {
    padding: 80px 0;
    background: var(--bg-dark);
}

.press-section {
    margin-bottom: 4rem;
}

.press-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.quick-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
}

.fact-item {
    padding: 1rem;
    border-left: 3px solid var(--primary-color);
    padding-left: 1.5rem;
}

.fact-item strong {
    color: var(--text-light);
    display: block;
    margin-bottom: 0.5rem;
}

.bio-box {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(255, 51, 51, 0.2);
}

.bio-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

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

.press-photo {
    text-align: center;
}

.press-photo img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease;
}

.press-photo img:hover {
    transform: scale(1.05);
}

.press-photo p {
    margin-top: 1rem;
    color: var(--text-gray);
}

.download-note {
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 1rem;
}

.tech-requirements {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
}

.tech-requirements h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.tech-requirements ul {
    list-style: none;
}

.tech-requirements li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.tech-requirements li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    text-align: center;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-item a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--text-light);
}

.social-press-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.press-social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 51, 51, 0.3);
    border-radius: 25px;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.press-social-link:hover {
    background: rgba(255, 51, 51, 0.1);
    border-color: var(--primary-color);
}

.epk-download {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.1) 0%, transparent 100%);
    border-radius: 15px;
}

.epk-download p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

/* Footer nav additions */
.footer-nav {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}

.footer-nav a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--primary-color);
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .page-hero {
        padding: 80px 0 40px;
    }
    
    .page-title {
        font-size: 2rem;
        padding: 0 15px;
    }
    
    .page-subtitle {
        font-size: 1.2rem;
        padding: 0 15px;
    }
    
    /* Biography Mobile */
    .biography-content {
        padding: 40px 0;
    }
    
    .bio-article {
        padding: 0 15px;
    }
    
    .bio-article h2 {
        font-size: 1.8rem;
        margin: 2rem 0 1rem;
    }
    
    .bio-article p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .bio-cta {
        margin: 2rem 15px;
        padding: 2rem 1.5rem;
    }
    
    .bio-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Music Page Mobile */
    .discography-section {
        padding: 40px 0;
    }
    
    .album-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 0 15px 2rem;
        padding: 1.5rem;
    }
    
    .album-title {
        font-size: 2rem;
    }
    
    .album-year {
        font-size: 1rem;
    }
    
    .album-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .tracklist {
        margin: 1.5rem 0;
    }
    
    .tracklist h4 {
        font-size: 1.3rem;
    }
    
    .tracklist li {
        font-size: 0.95rem;
        padding: 0.4rem 0;
    }
    
    .streaming-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .stream-btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1rem;
    }
    
    .singles-grid {
        padding: 0 15px;
        gap: 1.5rem;
    }
    
    .single-item {
        padding: 1.5rem;
    }
    
    .single-item h4 {
        font-size: 1.3rem;
    }
    
    .spotify-embed {
        padding: 0 15px;
    }
    
    /* Press Kit Mobile */
    .press-content {
        padding: 40px 0;
    }
    
    .press-section {
        padding: 0 15px;
        margin-bottom: 3rem;
    }
    
    .press-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .quick-facts {
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .fact-item {
        padding: 0.75rem;
        padding-left: 1.25rem;
    }
    
    .bio-box {
        padding: 1.5rem;
    }
    
    .bio-box p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .press-photos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tech-requirements {
        padding: 1.5rem;
    }
    
    .tech-requirements h3 {
        font-size: 1.3rem;
    }
    
    .tech-requirements li {
        font-size: 0.95rem;
        padding: 0.4rem 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-item {
        padding: 1.25rem;
    }
    
    .contact-item h3 {
        font-size: 1.2rem;
    }
    
    .social-press-links {
        gap: 1rem;
    }
    
    .press-social-link {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .epk-download {
        padding: 2rem 1.5rem;
        margin: 0 15px;
    }
    
    .epk-download p {
        font-size: 1rem;
    }
}

/* Footer */
.footer {
    background: var(--bg-darker);
    padding: 6rem 0 3rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 4rem;
    margin-bottom: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-logo img {
    height: 80px;
    width: auto;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1.4rem;
}

.social-link {
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gradient-fire);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 20px rgba(255, 51, 51, 0.4);
}

.social-link:hover i {
    animation: iconBounce 0.5s ease;
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.footer-contact {
    text-align: right;
    color: var(--text-gray);
}

.footer-contact a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-gray);
}

/* Responsive Design - Tablet */
@media (max-width: 1024px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 6rem;
        letter-spacing: 8px;
    }
    
    .hero-subtitle {
        font-size: 2rem;
        gap: 1.5rem;
    }
    
    .hero-video-banner {
        height: 60vh;
        min-height: 450px;
    }
    
    .banner-content .hero-title {
        font-size: 7rem;
        letter-spacing: 6px;
    }
    
    .banner-content .hero-subtitle {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .section-title {
        font-size: 4rem;
        letter-spacing: 6px;
    }
    
    .media-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .featured-video {
        margin-bottom: 4rem;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .video-metadata .video-title {
        font-size: 1.8rem;
    }
    
    .video-metadata h4.video-title {
        font-size: 1.5rem;
    }
    
    .merch-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
    /* Base Mobile Adjustments */
    html, body {
        font-size: 14px;
        overflow-x: hidden !important;
        max-width: 100vw !important;
        position: relative;
    }
    
    .container {
        padding: 0 15px;
        max-width: 100%;
    }
    
    /* Mobile Navigation */
    .navbar {
        padding: 1rem 0;
        height: 60px;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }
    
    .nav-container {
        padding: 0;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        overflow: hidden;
        position: relative;
        display: block;
        height: 60px;
    }
    
    .nav-logo {
        position: absolute !important;
        right: 15px !important;
        left: auto !important;
        top: 35%;
        transform: translateY(-50%);
        width: auto;
        margin: 0;
        padding: 0;
        text-align: right !important;
    }
    
    .nav-logo img {
        height: 35px;
        width: auto;
        display: block;
    }
    
    .nav-toggle {
        position: absolute;
        left: 15px;
        top: 35%;
        transform: translateY(-50%);
        margin: 0;
        padding: 0.5rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100vw;
        top: 60px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        width: 100vw;
        max-width: 100vw;
        height: calc(100vh - 60px);
        text-align: center;
        transition: 0.3s ease;
        box-shadow: var(--shadow-medium);
        padding: 2rem 0;
        z-index: 999;
        backdrop-filter: blur(20px);
        overflow-y: auto;
        overflow-x: hidden;
    }

    .nav-menu.active {
        left: 0;
    }
    
    /* Prevent horizontal scroll when menu is open */
    body.menu-open {
        overflow-x: hidden;
    }
    
    .nav-link {
        padding: 1.2rem 0;
        font-size: 1.1rem;
        display: block;
        width: 100%;
        transition: all 0.3s ease;
    }
    
    .nav-link:active {
        background: rgba(255, 51, 51, 0.1);
    }
    
    .nav-separator {
        display: none;
    }

    .nav-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1000;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Hero/Banner Mobile */
    .hero-video-banner {
        height: 60vh;
        min-height: 400px;
        width: 100vw !important;
        max-width: 100vw !important;
        overflow: hidden !important;
        position: relative;
    }
    
    .banner-video {
        display: none; /* Hide video on mobile for performance */
        max-width: 100vw !important;
    }
    
    .banner-logo {
        max-width: 80%;
        width: 280px;
    }
    
    /* Prevent ALL elements from causing horizontal scroll on mobile */
    * {
        max-width: 100vw !important;
    }
    
    /* Ensure pong is fully hidden when not active */
    .pong-game-container:not(.active) {
        pointer-events: none !important;
        visibility: hidden !important;
        max-width: 0 !important;
    }
    
    section {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    
    .hero {
        min-height: auto;
        padding: 3rem 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .btn {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-height: 50px;
    }
    
    /* Typography Mobile */
    .section-title {
        font-size: 2.2rem;
        letter-spacing: 2px;
        margin-bottom: 2rem;
        padding: 0 10px;
        line-height: 1.2;
        word-wrap: break-word;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.4rem;
    }
    
    h4 {
        font-size: 1.2rem;
    }
    
    /* Mystical Text Mobile */
    .mystical-text-container {
        display: none;
    }
    
    /* Media Section Mobile */
    .media-section {
        padding: 3rem 0;
    }
    
    .featured-video-container {
        padding: 0 15px;
    }
    
    .video-wrapper {
        margin-bottom: 2rem;
    }

    .media-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 15px;
    }
    
    .video-metadata .video-title {
        font-size: 1.3rem;
    }
    
    .video-metadata h4.video-title {
        font-size: 1.2rem;
    }
    
    .streaming-links {
        padding: 0 15px;
    }
    
    .streaming-links h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .streaming-platforms {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .platform-link {
        padding: 1rem;
        font-size: 1rem;
        justify-content: center;
        min-height: 50px;
    }
    
    .platform-link i {
        font-size: 1.3rem;
    }
    
    /* Tour Section Mobile */
    .tour-section {
        padding: 3rem 0;
    }
    
    .tour-dates {
        padding: 0 15px;
    }

    .tour-date {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .date-info {
        margin-bottom: 0.5rem;
    }
    
    .date-info .date {
        font-size: 1.8rem;
    }
    
    .date-info .year {
        font-size: 1rem;
    }
    
    .venue-info h4 {
        font-size: 1.3rem;
        margin-bottom: 0.25rem;
    }
    
    .venue-info p {
        font-size: 0.9rem;
    }
    
    .ticket-info {
        width: 100%;
    }
    
    .btn-outline {
        width: 100%;
        padding: 0.875rem 1.5rem;
        min-height: 48px;
    }
    
    /* Merch Section Mobile */
    .merch-section {
        padding: 3rem 0;
    }
    
    .merch-coming-soon {
        padding: 2rem 1.5rem;
        margin: 0 15px;
    }
    
    .merch-coming-soon h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .merch-coming-soon p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 3rem 0 2rem;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-logo img {
        max-width: 150px;
        height: auto;
    }
    
    .footer-social {
        display: flex;
        justify-content: center;
        gap: 0.75rem;
        flex-wrap: wrap;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
    
    .footer-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        font-size: 0.9rem;
        padding: 0 15px;
    }
    
    .footer-nav a {
        padding: 0.5rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .footer-contact {
        text-align: center;
        font-size: 0.9rem;
    }
    
    .footer-contact p {
        margin: 0.5rem 0;
    }
    
    /* Scroll Indicator Mobile */
    .scroll-indicator {
        bottom: 20px;
        transform: scale(0.8);
    }
    
    /* Mobile Touch Targets */
    a, button {
        min-height: 44px;
        touch-action: manipulation;
    }
    
    /* Pong Game Mobile - Constrained to viewport */
    .pong-game-container.active {
        display: block !important;
        width: 100vw !important;
        max-width: 100vw !important;
        left: 0 !important;
        right: 0 !important;
    }
    
    .pong-modal {
        width: 90vw !important;
        height: 85vh !important;
        max-width: 90vw !important;
        padding: 10px;
        box-sizing: border-box;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
    }
    
    #pong-canvas {
        width: calc(100% - 20px) !important;
        height: 55vh !important;
        max-width: 100% !important;
        margin: 40px auto 0;
        touch-action: none;
        display: block;
        box-sizing: border-box;
    }
    
    .pong-ui {
        top: 10px;
        font-size: 0.9rem;
    }
    
    .pong-score {
        font-size: 2.5rem;
    }
    
    .pong-instructions {
        bottom: 5px;
        font-size: 0.8rem;
    }
    
    .pong-close {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .hero-video-banner {
        height: 50vh;
        min-height: 350px;
    }
    
    .banner-logo {
        max-width: 75%;
        width: 220px;
    }
    
    .banner-content .hero-title {
        font-size: 3rem;
        letter-spacing: 2px;
    }
    
    .banner-content .hero-subtitle {
        font-size: 1.2rem;
        letter-spacing: 2px;
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .hero-buttons {
        max-width: 280px;
    }
    
    .btn {
        font-size: 0.95rem;
        padding: 0.875rem 1.25rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    h4 {
        font-size: 1.1rem;
    }

    .streaming-platforms {
        gap: 0.6rem;
    }

    .platform-link {
        padding: 0.875rem;
        font-size: 0.9rem;
    }
    
    .platform-link span {
        font-size: 0.85rem;
    }
    
    .tour-date {
        padding: 1rem;
    }
    
    .date-info .date {
        font-size: 1.5rem;
    }
    
    .venue-info h4 {
        font-size: 1.2rem;
    }

    .merch-grid {
        grid-template-columns: 1fr;
    }
    
    .merch-coming-soon {
        padding: 1.5rem 1rem;
    }
    
    .merch-coming-soon h3 {
        font-size: 1.5rem;
    }
    
    .merch-coming-soon p {
        font-size: 0.95rem;
    }
    
    .footer-logo img {
        max-width: 120px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .footer-nav {
        font-size: 0.85rem;
        gap: 0.75rem;
    }
    
    .footer-contact {
        font-size: 0.85rem;
    }
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Custom Flaming Rose Cursor */
.custom-cursor {
    display: none; /* Completely disable custom cursor for maximum performance */
}

.custom-cursor::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background: radial-gradient(circle, #ff6600 0%, #ff3333 50%, transparent 70%);
    border-radius: 50% 70% 50% 70%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    filter: blur(1px);
}

.custom-cursor::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #ffffff 0%, #ffaa00 40%, #ff3333 70%, transparent 90%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: innerFlame 1.5s ease-in-out infinite alternate;
}

.cursor-trail {
    width: 15px;
    height: 15px;
    background: radial-gradient(circle, #ff3333 0%, #ff0000 50%, transparent 70%);
    border-radius: 50% 60% 50% 60%;
    position: fixed;
    transform: translate(-50%, -50%) rotate(25deg);
    pointer-events: none;
    z-index: 9998;
    transition: all 0.1s ease;
    opacity: 0.6;
    filter: drop-shadow(0 0 5px #ff0000);
    animation: trailFlame 3s ease-in-out infinite;
}

@keyframes roseFlame {
    0%, 100% { 
        filter: drop-shadow(0 0 8px #ff0000) drop-shadow(0 0 15px #ff3333);
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
    50% { 
        filter: drop-shadow(0 0 12px #ff3333) drop-shadow(0 0 20px #ff6600);
        transform: translate(-50%, -50%) scale(1.1) rotate(5deg);
    }
}

@keyframes innerFlame {
    0% { opacity: 0.8; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

@keyframes trailFlame {
    0%, 100% { 
        opacity: 0.4; 
        transform: translate(-50%, -50%) rotate(25deg) scale(0.8); 
    }
    50% { 
        opacity: 0.7; 
        transform: translate(-50%, -50%) rotate(35deg) scale(1); 
    }
}

@media (max-width: 768px) {
    .custom-cursor,
    .cursor-trail {
        display: none;
    }
}

/* Loading state */
body {
    opacity: 0;
    transition: opacity 0.5s ease;
}

body.loaded {
    opacity: 1;
}

/* Enhanced scrollbar */
::-webkit-scrollbar {
    width: 10px;
    background: var(--bg-dark);
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-fire);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Selection color */
::selection {
    background: var(--primary-color);
    color: var(--text-light);
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--text-light);
}

/* Mystical Scrolling Text */
.mystical-text-container {
    position: fixed;
    left: 2rem;
    top: 20%;
    z-index: 100;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 60vh;
    justify-content: space-around;
}

.mystical-text-line {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 4px;
    color: #ff3333; /* Simplified to solid color */
    text-shadow: 
        0 0 20px rgba(255, 51, 51, 0.5);
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.5s ease, transform 0.5s ease; /* Simplified transition */
    position: relative;
    white-space: nowrap;
}

.mystical-text-line::before {
    display: none; /* Disable pseudo-element for performance */
}

.mystical-text-line::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(ellipse at center, rgba(255, 51, 51, 0.1) 0%, transparent 70%);
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.8s ease;
}

.mystical-text-line.visible {
    opacity: 0.6;
    transform: translateX(0);
}

.mystical-text-line.visible::after {
    opacity: 1;
}

.mystical-text-line.fading {
    opacity: 0;
    transform: translateX(-50px);
    text-shadow: none;
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Disabled for performance
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
*/

@keyframes mysticalGlow {
    0%, 100% { 
        opacity: 0.2; 
        background-position: 0% 50%;
        filter: blur(3px);
    }
    50% { 
        opacity: 0.5; 
        background-position: 100% 50%;
        filter: blur(1px);
    }
}

@keyframes textGlitch {
    0%, 90%, 100% { 
        transform: translateX(0);
    }
    95% { 
        transform: translateX(-1px);
    }
}

@keyframes subtleGlitch {
    0% { 
        transform: translateX(0);
        filter: hue-rotate(0deg);
    }
    1% { 
        transform: translateX(-0.5px);
        filter: hue-rotate(10deg);
    }
    2% { 
        transform: translateX(0.5px);
        filter: hue-rotate(-10deg);
    }
    3% { 
        transform: translateX(0);
        filter: hue-rotate(0deg);
    }
    5%, 95% { 
        transform: translateX(0);
        filter: hue-rotate(0deg);
    }
    96% { 
        transform: translateX(0.3px);
        filter: hue-rotate(5deg);
    }
    97% { 
        transform: translateX(-0.3px);
        filter: hue-rotate(-5deg);
    }
    98% { 
        transform: translateX(0);
        filter: hue-rotate(0deg);
    }
    100% { 
        transform: translateX(0);
        filter: hue-rotate(0deg);
    }
}

/* Hyper Pong Easter Egg Styles */
.pong-game-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    overflow: hidden;
}

.pong-game-container.active {
    display: block;
}

.pong-game-container:not(.active) {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    border: none !important;
    position: absolute !important;
    left: -9999px !important;
}

.pong-game-container:not(.active) * {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    border: none !important;
}

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

.pong-modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90vw;
    max-width: 900px;
    height: 80vh;
    max-height: 600px;
    background: linear-gradient(135deg, #0a0a0a, #1a0000);
    border: 3px solid var(--primary-color);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 
        0 0 50px rgba(255, 51, 51, 0.5),
        0 0 100px rgba(255, 51, 51, 0.3),
        inset 0 0 50px rgba(255, 51, 51, 0.1);
    animation: pongModalGlow 2s ease-in-out infinite alternate;
}

@keyframes pongModalGlow {
    0% { box-shadow: 0 0 50px rgba(255, 51, 51, 0.5), 0 0 100px rgba(255, 51, 51, 0.3), inset 0 0 50px rgba(255, 51, 51, 0.1); }
    100% { box-shadow: 0 0 60px rgba(255, 102, 0, 0.6), 0 0 120px rgba(255, 102, 0, 0.4), inset 0 0 60px rgba(255, 102, 0, 0.15); }
}

.pong-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 100;
}

.pong-close:hover {
    background: var(--primary-color);
    color: black;
    transform: rotate(90deg);
}

.pong-ui {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    z-index: 10;
}

.pong-score {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: var(--primary-color);
    text-shadow: 
        0 0 20px rgba(255, 51, 51, 0.8),
        0 0 40px rgba(255, 51, 51, 0.4);
    letter-spacing: 10px;
    margin-bottom: 10px;
}

.player-score, .ai-score {
    display: inline-block;
    min-width: 80px;
    animation: scoreGlitch 5s infinite;
}

.score-separator {
    margin: 0 20px;
    color: #666;
}

@keyframes scoreGlitch {
    0%, 90%, 100% { transform: translateX(0); filter: hue-rotate(0deg); }
    91% { transform: translateX(-2px); filter: hue-rotate(90deg); }
    92% { transform: translateX(2px); filter: hue-rotate(180deg); }
    93% { transform: translateX(0); filter: hue-rotate(0deg); }
}

.combo-display {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: #ff6600;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.combo-display.active {
    opacity: 1;
    animation: comboPulse 0.5s ease;
}

@keyframes comboPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.speed-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
}

.speed-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    color: #666;
    letter-spacing: 2px;
}

.speed-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 5px;
}

.speed-fill {
    height: 100%;
    width: 20%;
    background: linear-gradient(90deg, #ff3333, #ff6600);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 51, 51, 0.8);
}

#pong-canvas {
    display: block;
    width: 860px;
    height: 400px;
    margin: 80px auto 0;
    border-radius: 5px;
    background: #0a0a0a;
    border: 1px solid rgba(255, 51, 51, 0.3);
}

.pong-instructions {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Particle effect container */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    box-shadow: 0 0 6px var(--primary-color);
}

/* Nav logo cursor for easter egg */
.nav-logo {
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative;
}

.nav-logo::after {
    content: '🎮';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-logo:hover::after {
    opacity: 1;
}

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

.nav-logo:active {
    transform: scale(0.95);
}

/* Smooth scrolling for Safari */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    html {
        scroll-behavior: smooth;
    }
}

/* YouTube Facade Styles */
.youtube-facade {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.youtube-facade:hover {
    transform: scale(1.02);
}

.youtube-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
}

.youtube-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.youtube-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

.youtube-facade:hover .youtube-play-button {
    transform: translate(-50%, -50%) scale(1.1);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.7));
}

.youtube-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px 15px 15px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Loading state for when iframe is injected */
.youtube-facade.loading {
    background: #000;
}

.youtube-facade.loading::after {
    content: "Loading...";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
}

/* ==========================================
   SHOPIFY INTEGRATION STYLES
   ========================================== */

/* Loading Spinner */
.merch-loading {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 107, 53, 0.1);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    margin: 0 auto 1rem;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Shopify Product Cards */
.shopify-product {
    position: relative;
    overflow: hidden;
}

.shopify-product .badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 3px;
    z-index: 10;
}

.badge-soldout {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
}

.badge-sale {
    background: #ff4444;
    color: #fff;
}

.badge-new {
    background: var(--primary-color);
    color: #fff;
}

.price-container {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
}

.price-compare {
    text-decoration: line-through;
    color: var(--text-muted);
    opacity: 0.7;
}

/* Shopping Cart Overlay */
.shopify-cart-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    justify-content: flex-end;
    backdrop-filter: blur(5px);
}

.cart-container {
    width: 400px;
    height: 100%;
    background: var(--bg-dark);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    margin: 0;
    color: var(--primary-color);
}

.cart-close {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.cart-close:hover {
    color: var(--primary-color);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.cart-empty {
    text-align: center;
    color: var(--text-muted);
    padding: 3rem 1rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    animation: fadeIn 0.3s ease;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h4 {
    font-size: 1rem;
    margin: 0 0 0.5rem;
    color: var(--text-light);
}

.cart-item-details p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0 0 0.5rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qty-btn {
    width: 24px;
    height: 24px;
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.3s;
}

.qty-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.cart-item-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}

.cart-item-price span {
    font-weight: 600;
    color: var(--primary-color);
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s;
}

.cart-item-remove:hover {
    color: #ff4444;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    background: var(--bg-darker);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.cart-total-price {
    color: var(--primary-color);
}

/* Cart Toggle Button */
.cart-toggle-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.cart-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(255, 107, 53, 0.4);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Product Modal */
.shopify-product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.shopify-product-modal.active {
    opacity: 1;
}

.shopify-product-modal .modal-content {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.modal-close:hover {
    background: var(--primary-color);
    transform: rotate(90deg);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.modal-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-images .main-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 4px;
}

.image-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.thumbnail {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.thumbnail.active,
.thumbnail:hover {
    opacity: 1;
}

.modal-details h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    margin: 0 0 1rem;
    color: var(--primary-color);
}

.modal-price {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.variant-compare-price {
    text-decoration: line-through;
    color: var(--text-muted);
    opacity: 0.7;
    margin-left: 0.5rem;
}

.product-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.variant-options {
    margin-bottom: 1.5rem;
}

.variant-option {
    margin-bottom: 1rem;
}

.variant-option label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-weight: 500;
}

.variant-select {
    width: 100%;
    padding: 0.75rem;
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    border-radius: 4px;
    cursor: pointer;
}

.quantity-selector {
    margin-bottom: 1.5rem;
}

.quantity-selector label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-weight: 500;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.qty-decrease,
.qty-increase {
    width: 40px;
    height: 40px;
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
}

.qty-decrease:hover,
.qty-increase:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.quantity-input {
    width: 60px;
    padding: 0.5rem;
    text-align: center;
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    border-radius: 4px;
}

.modal-add-to-cart {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

/* Notifications */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 1rem 1.5rem;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s;
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    border-color: #4caf50;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(0, 0, 0, 0.9));
}

.notification-error {
    border-color: #ff4444;
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.1), rgba(0, 0, 0, 0.9));
}

.notification-info {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(0, 0, 0, 0.9));
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .cart-container {
        width: 100%;
    }
    
    .cart-toggle-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .modal-body {
        grid-template-columns: 1fr;
    }
    
    .notification {
        right: 10px;
        left: 10px;
        transform: translateY(-100px);
    }
    
    .notification.show {
        transform: translateY(0);
    }
}

/* Font Awesome Shopping Cart Icon */
.fa-shopping-cart:before {
    content: "\f07a";
}

.fa-times:before {
    content: "\f00d";
}

.fa-trash:before {
    content: "\f1f8";
}
