/* Aktiv Grotesk Font Face Declarations */
@font-face {
    font-family: 'Aktiv Grotesk';
    src: url('src/fonts/Aktiv.Grotesk/Aktiv Grotesk/TTF/AktivGrotesk-Hairline.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aktiv Grotesk';
    src: url('src/fonts/Aktiv.Grotesk/Aktiv Grotesk/TTF/AktivGrotesk-HairlineItalic.ttf') format('truetype');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Aktiv Grotesk';
    src: url('src/fonts/Aktiv.Grotesk/Aktiv Grotesk/TTF/AktivGrotesk-Thin.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aktiv Grotesk';
    src: url('src/fonts/Aktiv.Grotesk/Aktiv Grotesk/TTF/AktivGrotesk-ThinItalic.ttf') format('truetype');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Aktiv Grotesk';
    src: url('src/fonts/Aktiv.Grotesk/Aktiv Grotesk/TTF/AktivGrotesk-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aktiv Grotesk';
    src: url('src/fonts/Aktiv.Grotesk/Aktiv Grotesk/TTF/AktivGrotesk-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Aktiv Grotesk';
    src: url('src/fonts/Aktiv.Grotesk/Aktiv Grotesk/TTF/AktivGrotesk-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aktiv Grotesk';
    src: url('src/fonts/Aktiv.Grotesk/Aktiv Grotesk/TTF/AktivGrotesk-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Aktiv Grotesk';
    src: url('src/fonts/Aktiv.Grotesk/Aktiv Grotesk/TTF/AktivGrotesk-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aktiv Grotesk';
    src: url('src/fonts/Aktiv.Grotesk/Aktiv Grotesk/TTF/AktivGrotesk-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Aktiv Grotesk';
    src: url('src/fonts/Aktiv.Grotesk/Aktiv Grotesk/TTF/AktivGrotesk-Bold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aktiv Grotesk';
    src: url('src/fonts/Aktiv.Grotesk/Aktiv Grotesk/TTF/AktivGrotesk-BoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Aktiv Grotesk';
    src: url('src/fonts/Aktiv.Grotesk/Aktiv Grotesk/TTF/AktivGrotesk-XBold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aktiv Grotesk';
    src: url('src/fonts/Aktiv.Grotesk/Aktiv Grotesk/TTF/AktivGrotesk-XBoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Aktiv Grotesk';
    src: url('src/fonts/Aktiv.Grotesk/Aktiv Grotesk/TTF/AktivGrotesk-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aktiv Grotesk';
    src: url('src/fonts/Aktiv.Grotesk/Aktiv Grotesk/TTF/AktivGrotesk-BlackItalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

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

*, *::before, *::after {
    box-sizing: border-box;
}

/* Typography Enhancements */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Aktiv Grotesk', sans-serif;
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

p, span, div, a, button, input, textarea {
    font-family: 'Aktiv Grotesk', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

body {
    font-family: 'Aktiv Grotesk', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    width: 100vw;
    box-sizing: border-box;
}

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

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

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.logo-link:hover {
    transform: scale(1.05);
}

.logo-image {
    height: 2.5rem;
    width: auto;
}

.logo-text {
    font-family: 'Aktiv Grotesk', sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    color: #C02A1D;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo-reverb {
    font-family: 'Aktiv Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: lowercase;
    color: #ffffff;
    letter-spacing: 2px;
    text-shadow: 
        1px 1px 0 #C02A1D,
        -1px -1px 0 #C02A1D,
        1px -1px 0 #C02A1D,
        -1px 1px 0 #C02A1D;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 1px 1px 0 #C02A1D, -1px -1px 0 #C02A1D, 1px -1px 0 #C02A1D, -1px 1px 0 #C02A1D, 0 0 5px #C02A1D; }
    to { text-shadow: 1px 1px 0 #C02A1D, -1px -1px 0 #C02A1D, 1px -1px 0 #C02A1D, -1px 1px 0 #C02A1D, 0 0 20px #C02A1D, 0 0 30px #C02A1D; }
}

@keyframes glow {
    from { text-shadow: 0 0 5px #C02A1D, 0 0 10px #C02A1D, 0 0 15px #C02A1D; }
    to { text-shadow: 0 0 10px #C02A1D, 0 0 20px #C02A1D, 0 0 30px #C02A1D; }
}

.menu-toggle {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-text {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.menu-toggle:hover .menu-text {
    color: #C02A1D;
}

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

.bar {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
}

.menu-toggle:hover .bar {
    background: #C02A1D;
}

/* Full Screen Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.menu-header {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.menu-logo .logo-text {
    font-size: 1.6rem;
    color: #C02A1D;
    text-transform: uppercase;
}

.menu-logo .logo-reverb {
    font-size: 1.6rem;
    color: #ffffff;
    text-transform: lowercase;
    text-shadow: 
        2px 2px 0 #C02A1D,
        -2px -2px 0 #C02A1D,
        2px -2px 0 #C02A1D,
        -2px 2px 0 #C02A1D;
}

.menu-close {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-text {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.menu-close:hover .close-text {
    color: #C02A1D;
}

.close-icon {
    position: relative;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-line {
    position: absolute;
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
}

.close-line:first-child {
    transform: rotate(45deg);
}

.close-line:last-child {
    transform: rotate(-45deg);
}

.menu-close:hover .close-line {
    background: #C02A1D;
}

.menu-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.menu-links {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.menu-item {
    margin: 1.5rem 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.menu-overlay.active .menu-item {
    opacity: 1;
    transform: translateY(0);
}

.menu-overlay.active .menu-item:nth-child(1) { transition-delay: 0.1s; }
.menu-overlay.active .menu-item:nth-child(2) { transition-delay: 0.2s; }
.menu-overlay.active .menu-item:nth-child(3) { transition-delay: 0.3s; }
.menu-overlay.active .menu-item:nth-child(4) { transition-delay: 0.4s; }
.menu-overlay.active .menu-item:nth-child(5) { transition-delay: 0.5s; }
.menu-overlay.active .menu-item:nth-child(6) { transition-delay: 0.6s; }
.menu-overlay.active .menu-item:nth-child(7) { transition-delay: 0.7s; }

.menu-link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: #fff;
    text-decoration: none;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
}

.link-number {
    font-size: 1rem;
    color: #C02A1D;
    font-weight: 400;
    opacity: 0.7;
}

.link-text {
    position: relative;
}

.link-text::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #C02A1D, #260806);
    transition: width 0.3s ease;
}

.menu-link:hover .link-text::after {
    width: 100%;
}

.menu-link:hover {
    color: #C02A1D;
    transform: translateX(20px);
}

.menu-footer {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-social {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.menu-social .social-link {
    color: #fff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.menu-social .social-link:hover {
    color: #C02A1D;
    transform: scale(1.2);
}

.menu-social .beatport-logo {
    width: 1.5rem;
    height: 1.5rem;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.menu-social .social-link:hover .beatport-logo {
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(180deg);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #2e1a1a 50%, #3e1616 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 102, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('src/images/gallery/DSC09396-Enhanced-NR (1).JPG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 1;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 60vh;
}

.hero-text {
    color: #fff;
    margin-bottom: 1rem;
}

.hero-logo {
    margin-bottom: 1rem;
    text-align: center;
}

.hero-logo-img {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
    animation: logoFadeIn 1s ease forwards;
}

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

.hero-title {
    font-family: 'Aktiv Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 0.8rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 3px;
}

.reverb-text {
    font-style: italic;
    text-transform: lowercase;
    font-weight: 700;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: titleSlideIn 1s ease forwards;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.title-line:nth-child(1) {
    color: #C02A1D;
    font-size: 4rem;
    margin-bottom: 0.3rem;
}

.title-line:nth-child(2) {
    animation-delay: 0.3s;
    color: #ffffff;
    font-size: 3rem;
    text-transform: lowercase;
    font-weight: 700;
}

@keyframes titleSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
    width: 100%;
}

.cta-primary, .cta-secondary {
    padding: 15px 30px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    width: 200px;
    text-align: center;
}

.cta-primary {
    background: linear-gradient(45deg, #C02A1D, #260806);
    color: #fff;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: linear-gradient(45deg, #260806, #C02A1D);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(192, 42, 29, 0.3);
}

.cta-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #C02A1D;
}

.cta-secondary:hover {
    background: #C02A1D;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 1rem;
}

.turntable {
    position: relative;
    width: 300px;
    height: 300px;
    animation: float 6s ease-in-out infinite;
}

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

.turntable-base {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #333, #666);
    border-radius: 50%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    position: relative;
}

.vinyl-record {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: #000;
    border-radius: 50%;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.vinyl-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
}

.vinyl-grooves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    border: 1px solid #333;
    border-radius: 50%;
}

.turntable-arm {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 120px;
    height: 4px;
    background: #666;
    transform-origin: left center;
    animation: armMove 4s ease-in-out infinite;
}

@keyframes armMove {
    0%, 100% { transform: rotate(-30deg); }
    50% { transform: rotate(30deg); }
}

.sound-waves {
    position: absolute;
    right: -350px;
    top: 50%;
    transform: translateY(-50%);
}

.wave {
    width: 3px;
    background: linear-gradient(to top, #260806, transparent);
    margin: 5px 0;
    animation: wavePulse 1.5s ease-in-out infinite;
}

.wave-1 { height: 40px; animation-delay: 0s; }
.wave-2 { height: 60px; animation-delay: 0.2s; }
.wave-3 { height: 80px; animation-delay: 0.4s; }

@keyframes wavePulse {
    0%, 100% { transform: scaleY(1); opacity: 0.5; }
    50% { transform: scaleY(1.5); opacity: 1; }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

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

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Aktiv Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #C02A1D, #260806);
    margin: 0 auto;
    border-radius: 2px;
    animation: expandWidth 1s ease 0.5s forwards;
    width: 0;
}

@keyframes expandWidth {
    to { width: 100px; }
}

/* Section Subtitle */
.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-top: 1rem;
}

/* Music Section */
.music {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    color: #fff;
}

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

.music-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.music-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #C02A1D, #260806);
    transition: left 0.3s ease;
    z-index: 1;
}

.music-item:hover::before {
    left: 0;
}

.music-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
}

.music-item.featured-track {
    border: 2px solid #C02A1D;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
    transform: scale(1.05);
}

.music-item.featured-track::after {
    content: 'FEATURED';
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(45deg, #C02A1D, #260806);
    color: #fff;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: featuredGlow 2s ease-in-out infinite alternate;
}

.track-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(45deg, #260806, #C02A1D);
    color: #fff;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3;
    animation: badgePulse 2s ease-in-out infinite;
}

.music-cover {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    z-index: 2;
}

.cover-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #C02A1D, #260806);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #fff;
    transition: all 0.3s ease;
    position: relative;
}

.cover-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.fallback-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #C02A1D, #260806);
    border-radius: 15px;
    font-size: 3rem;
    color: #fff;
}

.play-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: all 0.3s ease;
}

.play-overlay i {
    font-size: 2rem;
    color: #fff;
}

.music-item:hover .play-overlay {
    opacity: 0;
}

.music-info {
    position: relative;
    z-index: 2;
}

.track-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.music-item:hover .track-title {
    color: #fff;
}

.track-genre {
    color: #ccc;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.track-details {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.music-item:hover .track-genre {
    color: #fff;
}

.purchase-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    background: linear-gradient(45deg, #C02A1D, #260806);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.purchase-btn:hover {
    background: linear-gradient(45deg, #260806, #C02A1D);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(192, 42, 29, 0.3);
}

.beatport-logo {
    width: 2rem;
    height: 2rem;
    margin-right: 0.5rem;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.purchase-btn:hover .beatport-logo,
.platform-link:hover .beatport-logo {
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(180deg);
    transform: scale(1.1);
}

.music-platforms {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.music-platforms h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #fff;
}

.platform-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.platform-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 120px;
}

.platform-link:hover {
    background: linear-gradient(45deg, #C02A1D, #260806);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
}

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

.platform-link span {
    font-weight: 600;
}

.music-cta {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.view-all-releases-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #C02A1D, #260806);
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.view-all-releases-btn:hover {
    background: linear-gradient(45deg, #260806, #C02A1D);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(192, 42, 29, 0.4);
    border-color: #fff;
}

/* About Section */
.about {
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #C02A1D;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.about-img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #C02A1D, #260806);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #fff;
    animation: pulse 2s ease-in-out infinite;
}

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



/* Merch Section */
.merch {
    background-color: #260806;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Removed background circles/blurbs from merch section */

.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
    justify-items: center;
}

.merch-item {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 10px;
    text-align: left;
    color: #260806;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 280px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.merch-item.featured {
    border: 2px solid #260806;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.3);
    transform: scale(1.05);
}

.merch-item.featured::after {
    content: 'FEATURED';
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(45deg, #260806, #C02A1D);
    color: #fff;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: featuredGlow 2s ease-in-out infinite alternate;
}

@keyframes featuredGlow {
    from { box-shadow: 0 0 10px rgba(255, 0, 0, 0.5); }
    to { box-shadow: 0 0 20px rgba(255, 0, 0, 0.8); }
}

.merch-item::before {
    display: none;
}

.merch-item:hover::before {
    display: none;
}

.merch-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #D97F77 0%, #FFFFFF 100%) !important;
}

.merch-image-placeholder {
    width: 100%;
    height: 160px;
    border-radius: 12px 12px 0 0;
    position: relative;
    z-index: 2;
}

.merch-image {
    position: relative;
    width: 100%;
    height: 280px;
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    z-index: 2;
    border: 3px solid #C02A1D;
}

.merch-image .image-placeholder {
    width: 100%;
    height: 100%;
    background: #8B4513;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #fff;
    transition: all 0.3s ease;
}

.merch-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    transition: all 0.3s ease;
}

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

.merch-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
}

.merch-sale {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 0, 0, 0.9);
    padding: 8px 12px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.sale-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.original-price {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: line-through;
    margin-top: -2px;
}

.merch-badge {
    background: linear-gradient(45deg, #260806, #C02A1D);
    color: #fff;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: badgePulse 2s ease-in-out infinite;
}

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

.merch-info {
    position: relative;
    z-index: 2;
    padding: 1rem;
    padding-bottom: 3rem;
    text-align: center;
}

.merch-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #260806;
    transition: color 0.3s ease;
    text-align: center;
}

.merch-item:hover .merch-title {
    color: #260806;
}

.merch-description {
    color: #C02A1D;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.5;
    transition: color 0.3s ease;
    text-align: center;
}

.merch-tags {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.tag {
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.merch-item:hover .tag {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.merch-item:hover .merch-description {
    color: #824C4C;
}

.merch-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.merch-sizes {
    display: flex;
    justify-content: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    text-align: left;
}

.size-option {
    padding: 5px 12px;
    background: transparent;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #260806;
    transition: all 0.3s ease;
}

.merch-item:hover .size-option {
    background: transparent;
}

.merch-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 12px 24px;
    background: #FFFFFF;
    color: #C02A1D;
    text-decoration: none;
    border: 2px solid #C02A1D;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    width: auto;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}

.merch-btn:hover {
    background: #C02A1D;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(192, 42, 29, 0.3);
}

.merch-cta {
    text-align: center;
    padding: 4rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-merch-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 15px 30px;
    background: linear-gradient(45deg, #260806, #C02A1D);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-merch-btn:hover {
    background: linear-gradient(45deg, #C02A1D, #260806);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(192, 42, 29, 0.4);
}

/* Gallery Section */
.gallery {
    background: #f8f9fa;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(45deg, #C02A1D, #260806);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #fff;
    transition: all 0.3s ease;
}

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

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.1);
}

/* Full Screen Gallery Overlay */
.gallery-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay.active {
    display: flex;
    opacity: 1;
}

.gallery-overlay-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 10000;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.gallery-close:hover {
    color: #C02A1D;
    transform: scale(1.05);
}

.gallery-close .close-icon {
    width: 30px;
    height: 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-close .close-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: currentColor;
    transition: all 0.3s ease;
}

.gallery-close .close-line:first-child {
    transform: rotate(45deg);
}

.gallery-close .close-line:last-child {
    transform: rotate(-45deg);
}

.gallery-close:hover .close-line {
    background: #C02A1D;
}

.gallery-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10000;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background: rgba(192, 42, 29, 0.8);
    border-color: #C02A1D;
    transform: scale(1.1);
}

.nav-btn i {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.nav-btn:hover i {
    transform: scale(1.2);
}

.gallery-image-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fullscreen-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.fullscreen-image:hover {
    transform: scale(1.02);
}

.image-counter {
    position: absolute;
    bottom: -3rem;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    color: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-category {
    margin-bottom: 2rem;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #C02A1D;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #C02A1D;
    padding-bottom: 0.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #C02A1D, #260806);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.8);
}

.contact-details a {
    color: #C02A1D;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-details a:hover {
    color: #260806;
    text-decoration: underline;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 400px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C02A1D;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
    background: rgba(255, 255, 255, 0.2);
}

.submit-btn {
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(45deg, #C02A1D, #260806);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
}

/* Footer */
.footer {
    background: #0a0a0a;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #C02A1D, #260806);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link .beatport-logo {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 0;
    filter: brightness(0) invert(1);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #666;
}

/* Desktop Large Screen Layout */
@media (min-width: 1200px) {
    .nav-container {
        max-width: none;
        padding: 0 40px;
        justify-content: space-between;
    }
    
    .nav-logo {
        margin-left: 0;
    }
    
    .menu-toggle {
        margin-right: 0;
    }
    
    .footer .container {
        max-width: none;
        padding: 0 40px;
    }
    
    .footer-content {
        justify-content: space-between;
        width: 100%;
    }
    
    .footer-logo {
        margin-left: 0;
    }
    
    .footer-social {
        margin-right: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    /* Container adjustments */
    .container {
        padding: 0 15px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Navigation optimizations */
    .nav-container {
        height: 70px;
        padding: 0 15px;
    }
    
    .logo-image {
        height: 2rem;
        width: auto;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .logo-reverb {
        font-size: 0.7rem;
    }
    
    .menu-text {
        font-size: 0.8rem;
    }
    
    /* Menu overlay optimizations */
    .menu-link {
        font-size: 1.8rem;
        gap: 0.8rem;
    }
    
    .menu-header {
        padding: 0;
    }
    
    .menu-header .nav-container {
        height: 70px;
        padding: 0 15px;
    }
    
    .menu-logo .logo-text,
    .menu-logo .logo-reverb {
        font-size: 1.3rem;
    }
    
    .menu-content {
        padding: 1.5rem 0;
    }
    
    .menu-item {
        margin: 1.2rem 0;
    }
    
    /* Hero section optimizations */
    .hero {
        min-height: 100vh;
        height: 100vh;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        text-align: center;
        padding: 0 15px;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .title-line {
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    /* Turntable optimizations */
    .turntable {
        width: 180px;
        height: 180px;
        margin: 0 auto;
    }
    
    .vinyl-record {
        width: 120px;
        height: 120px;
    }
    
    .sound-waves {
        gap: 0.3rem;
    }
    
    .wave {
        width: 3px;
    }
    
    .wave-1 { height: 30px; }
    .wave-2 { height: 45px; }
    .wave-3 { height: 60px; }
    
    /* Section optimizations */
    section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1.5rem;
    }
    
    /* Music section optimizations */
    .music-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .music-item {
        padding: 1.2rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Ensure all grids fit properly */
    .music-grid,
    .merch-grid,
    .gallery-grid {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Ensure all sections fit properly */
    section {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .music-cover {
        height: 180px;
    }
    
    .track-title {
        font-size: 1.1rem;
    }
    
    .track-genre {
        font-size: 0.9rem;
    }
    
    .purchase-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    /* About section optimizations */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .image-container {
        height: 250px;
    }
    
    /* Merch section optimizations */
    .merch-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        justify-items: center;
    }
    
    .merch-item {
        width: 100%;
        max-width: 280px;
        padding: 10px;
    }
    
    .merch-image {
        height: 220px;
    }
    
    .merch-image-placeholder {
        height: 140px;
    }
    
    .merch-info {
        padding: 1.2rem;
    }
    
    .merch-title {
        font-size: 1rem;
    }
    
    .merch-description {
        font-size: 0.85rem;
    }
    
    .merch-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    /* Platform links optimizations */
    .platform-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .platform-link {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    /* Gallery optimizations */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-item {
        height: 200px;
    }

    /* Full Screen Gallery Mobile Styles */
    .gallery-close {
        top: 1rem;
        right: 1rem;
        font-size: 0.8rem;
    }

    .gallery-close .close-icon {
        width: 25px;
        height: 25px;
    }

    .gallery-navigation {
        padding: 0 1rem;
    }

    .nav-btn {
        width: 50px;
        height: 50px;
    }

    .nav-btn i {
        font-size: 1.2rem;
    }

    .gallery-image-container {
        max-width: 95%;
        max-height: 85%;
    }

    .image-counter {
        bottom: -2rem;
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .gallery-close {
        top: 0.5rem;
        right: 0.5rem;
        font-size: 0.7rem;
        gap: 0.5rem;
    }

    .gallery-close .close-icon {
        width: 20px;
        height: 20px;
    }

    .gallery-navigation {
        padding: 0 0.5rem;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
    }

    .nav-btn i {
        font-size: 1rem;
    }

    .gallery-image-container {
        max-width: 98%;
        max-height: 80%;
    }

    .image-counter {
        bottom: -1.5rem;
        font-size: 0.9rem;
        padding: 0.3rem 0.6rem;
    }
    
    /* Contact section optimizations */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        gap: 1.5rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .contact-details h4 {
        font-size: 1.1rem;
    }
    
    .contact-details p {
        font-size: 0.9rem;
    }
    
    .contact-form {
        padding: 1rem;
        min-width: auto;
        width: 100%;
        border-radius: 15px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 1rem;
        border-radius: 8px;
    }
    
    .submit-btn {
        padding: 15px 20px;
        font-size: 1rem;
        border-radius: 8px;
    }
    
    /* Footer optimizations */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-logo {
        margin-bottom: 1rem;
    }
    
    .footer-social {
        justify-content: center;
        gap: 1rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    /* Gigs page optimizations */
    .gigs-hero .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gigs-hero .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-video {
        height: 250px;
    }
    
    .video-text h2 {
        font-size: 1.8rem;
    }
    
    .gigs-filters {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .filter-buttons,
    .location-filters {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    /* Contact page optimizations */
    .contact-main {
        padding: 4rem 0 2rem;
    }
    
    .contact-main .section-title {
        font-size: 2.2rem;
    }
    
    .contact-main .section-subtitle {
        font-size: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        display: grid !important;
        width: 100% !important;
    }
    
    .contact-form-container {
        grid-column: 1 !important;
        order: 2 !important;
        padding: 1.5rem !important;
        background: rgba(255, 255, 255, 0.1) !important;
        border-radius: 15px !important;
        border: 2px solid rgba(255, 255, 255, 0.3) !important;
        backdrop-filter: blur(10px) !important;
        margin-bottom: 2rem !important;
        display: block !important;
        width: 100% !important;
        min-height: 400px !important;
    }
    
    .contact-info-container {
        grid-column: 1 !important;
        order: 1 !important;
        gap: 1.5rem !important;
        width: 100% !important;
    }
    
    .contact-category {
        text-align: center !important;
        margin-bottom: 1.5rem !important;
    }
    
    .category-title {
        text-align: center !important;
        margin-bottom: 1rem !important;
    }
    
    .contact-item {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        padding: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.2);
        margin-bottom: 1rem;
    }
    
    .contact-details h4 {
        color: #fff !important;
        font-weight: 600;
        margin-bottom: 0.25rem;
    }
    
    .contact-details a {
        color: #C02A1D !important;
        text-decoration: none;
        font-weight: 500;
    }
    
    /* Music page optimizations */
    .music-hero {
        min-height: 80vh;
        padding: 1rem 0;
        width: 100%;
        overflow-x: hidden;
    }
    
    .music-hero .hero-content {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: unset !important;
        gap: 2rem;
        text-align: center;
        padding: 0 1rem;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        height: 100vh;
    }
    
    .music-hero .hero-text {
        order: 1 !important;
        width: 100% !important;
        max-width: 500px !important;
        text-align: center !important;
    }
    
    .music-hero .hero-visual {
        order: 2 !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
        .music-hero .hero-text {
        order: 1;
        width: 100%;
        max-width: 500px;
        text-align: center;
    }
    
    .music-hero .hero-visual {
        order: 2;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .music-hero .hero-title {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 0.8rem;
    }
    
    .music-hero .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.2rem;
        line-height: 1.3;
    }
    
    .new-release-badge {
        margin-bottom: 1.5rem;
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        gap: 0.8rem;
    }
    
    .album-cover {
        width: 300px;
        height: 300px;
        margin: 0 auto;
        border-radius: 0;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    }
    
    .hero-actions {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .music-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .filter-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.8rem;
        padding: 0 1rem;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
        border-radius: 4px;
    }
    
    .music-page-section {
        padding: 4rem 0;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .music-header {
        margin-bottom: 3rem;
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
    }
    
    .music-filters {
        margin-bottom: 2rem;
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
    }
    
    .music-section {
        width: 100%;
        max-width: 100%;
        margin-bottom: 3rem;
    }
    
    .music-grid {
        width: 100%;
        max-width: 100%;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Desktop menu optimizations for smaller screens like MacBook Pro 13" */
@media (max-height: 800px) and (min-width: 769px) {
    .menu-header {
        padding: 1rem 0;
    }
    
    .menu-logo .logo-text,
    .menu-logo .logo-reverb {
        font-size: 1.4rem;
    }
    
    .menu-content {
        padding: 1rem 0;
    }
    
    .menu-item {
        margin: 1rem 0;
    }
    
    .menu-link {
        font-size: 2rem;
        gap: 1rem;
    }
    
    .menu-footer {
        padding: 1rem 0;
    }
    
    /* Music hero adjustments for smaller screens */
    .music-hero {
        min-height: 60vh;
        padding: 1rem 0;
        width: 100%;
        overflow-x: hidden;
    }
    
    .music-hero .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .music-hero .hero-text {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }
    
    .music-hero .hero-visual {
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .music-hero .hero-title {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
        line-height: 1.1;
    }
    
    .music-hero .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .new-release-badge {
        margin-bottom: 1rem;
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
    }
    
    .badge-text {
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.9);
        font-weight: 700;
    }
    
    .badge-date {
        font-weight: 700;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.9);
        background: rgba(0, 0, 0, 0.4);
        padding: 0.15rem 0.4rem;
        border-radius: 8px;
        margin-left: 0.3rem;
    }
    
    .album-cover {
        width: 200px;
        height: 200px;
        border-radius: 0;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hero-actions {
        gap: 0.6rem;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn {
        padding: 10px 20px;
        font-size: 0.8rem;
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    body {
        overflow-x: hidden;
    }
    
    /* Extra small mobile optimizations */
    .container {
        padding: 0 10px;
        max-width: 100%;
        overflow-x: hidden;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Navigation for very small screens */
    .nav-container {
        height: 60px;
        padding: 0 10px;
    }
    
    .logo-image {
        height: 1.8rem;
        width: auto;
    }
    
    .logo-text {
        font-size: 0.9rem;
    }
    
    .logo-reverb {
        font-size: 0.6rem;
    }
    
    .menu-text {
        font-size: 0.7rem;
    }
    
    /* Menu header for very small screens */
    .menu-header .nav-container {
        height: 60px;
        padding: 0 10px;
    }
    
    /* Hero section for very small screens */
    .hero {
        min-height: 100vh;
        height: 100vh;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
    }
    
    .title-line {
        margin-bottom: 0.3rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .cta-primary, .cta-secondary {
        max-width: 250px;
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    
    /* Turntable for very small screens */
    .turntable {
        width: 150px;
        height: 150px;
    }
    
    .vinyl-record {
        width: 100px;
        height: 100px;
    }
    
    .sound-waves {
        gap: 0.2rem;
    }
    
    .wave {
        width: 2px;
    }
    
    .wave-1 { height: 25px; }
    .wave-2 { height: 35px; }
    .wave-3 { height: 45px; }
    
    /* Section spacing for very small screens */
    section {
        padding: 2.5rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .section-subtitle {
        font-size: 1.3rem;
    }
    
    /* Music items for very small screens */
    .music-item {
        padding: 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Ensure all grids fit properly */
    .music-grid,
    .merch-grid,
    .gallery-grid {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Ensure all sections fit properly */
    section {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .music-cover {
        height: 150px;
    }
    
    .track-title {
        font-size: 1rem;
    }
    
    .track-genre {
        font-size: 0.8rem;
    }
    
    .purchase-btn {
        padding: 6px 12px;
        font-size: 0.7rem;
    }
    
    /* About section for very small screens */
    .about-stats {
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.2rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .image-container {
        height: 200px;
    }
    
    /* Merch items for very small screens */
    .merch-item {
        width: 100%;
        max-width: 260px;
        padding: 8px;
    }
    
    .merch-image {
        height: 180px;
    }
    
    .merch-image-placeholder {
        height: 120px;
    }
    
    .merch-info {
        padding: 1rem;
    }
    
    .merch-title {
        font-size: 0.95rem;
    }
    
    .merch-description {
        font-size: 0.8rem;
    }
    
    .merch-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    /* Platform links for very small screens */
    .platform-link {
        max-width: 250px;
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    
    /* Gallery for very small screens */
    .gallery-item {
        height: 180px;
    }
    
    /* Contact for very small screens */
    .contact-item {
        padding: 0.8rem;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .contact-details h4 {
        font-size: 1rem;
    }
    
    .contact-details p {
        font-size: 0.8rem;
    }
    
    .contact-form {
        padding: 0.8rem;
        min-width: auto;
        width: 100%;
        border-radius: 12px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
        border-radius: 6px;
    }
    
    .submit-btn {
        padding: 12px 16px;
        font-size: 0.9rem;
        border-radius: 6px;
    }
    
    /* Footer for very small screens */
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    /* iPhone 14 Pro Max and larger screens specific fixes */
    .gigs-hero {
        width: 100vw !important;
        min-width: 100vw !important;
        max-width: 100vw !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .gigs-hero .hero-content {
        width: 100vw !important;
        min-width: 100vw !important;
        max-width: 100vw !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .gigs-hero .hero-video {
        width: 100vw !important;
        min-width: 100vw !important;
        max-width: 100vw !important;
        left: 0 !important;
        right: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .hero-video {
        width: 100vw !important;
        min-width: 100vw !important;
        max-width: 100vw !important;
        left: 0 !important;
        right: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .video-container {
        width: 100vw !important;
        min-width: 100vw !important;
        max-width: 100vw !important;
        left: 0 !important;
        right: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .video-container video {
        width: 100vw !important;
        min-width: 100vw !important;
        max-width: 100vw !important;
        left: 0 !important;
        right: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .video-overlay {
        width: 100vw !important;
        min-width: 100vw !important;
        max-width: 100vw !important;
        left: 0 !important;
        right: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Gigs page for very small screens */
    .gigs-hero {
        min-height: 100vh;
        width: 100vw;
        padding: 0;
        margin: 0;
        overflow: hidden;
    }
    
    .gigs-hero .hero-content {
        gap: 1rem;
        padding: 0;
        margin: 0;
        width: 100vw;
        display: flex;
        flex-direction: column;
        align-items: center;
        overflow: hidden;
    }
    
    .gigs-hero .hero-text {
        order: 1;
        width: 100%;
    }
    
    .gigs-hero .hero-video {
        order: 2;
        width: 100vw;
        height: 100vh;
        max-width: none;
        margin: 0;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }
    
    .gigs-hero .hero-title {
        font-size: 1.6rem;
        line-height: 1.1;
        margin-bottom: 0.3rem;
    }
    
    .gigs-hero .hero-subtitle {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-video {
        height: 100vh;
        width: 100vw;
        max-width: none;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        overflow: hidden;
        border-radius: 0;
        z-index: 1;
    }
    
    .video-container {
        width: 100vw;
        height: 100vh;
        position: relative;
        overflow: hidden;
    }
    
    .video-container video {
        width: 100vw;
        height: 100vh;
        object-fit: cover;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        min-width: 100vw;
        min-height: 100vh;
    }
    
    .video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        z-index: 2;
    }
    
    .video-text h2 {
        font-size: 1.3rem;
        margin-bottom: 0.3rem;
        color: #fff;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }
    
    .video-text p {
        font-size: 0.7rem;
        color: #fff;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    }
    
    .gigs-section {
        padding: 2rem 0;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .gigs-section .container {
        width: 100%;
        max-width: 100%;
        padding: 0 0.5rem;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .gigs-header {
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .gigs-filters {
        gap: 0.6rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .filter-buttons,
    .location-filters {
        gap: 0.2rem;
    }
    
    .filter-btn,
    .location-btn {
        padding: 5px 10px;
        font-size: 0.6rem;
        min-width: 50px;
    }
    
    .gigs-grid {
        gap: 0.8rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
        width: 100%;
        max-width: 100%;
        display: grid;
        overflow: hidden;
    }
    
    .gig-item {
        padding: 1.2rem;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 1.2rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        border: 1px solid rgba(255, 0, 0, 0.2);
        overflow: hidden;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
    }
    
    .gig-date {
        order: -1;
        margin-bottom: 0.8rem;
        width: 100%;
        text-align: center;
        min-width: 0;
        padding: 0.6rem;
        background: rgba(255, 0, 0, 0.1);
        border-radius: 8px;
        border: 1px solid rgba(255, 0, 0, 0.3);
    }
    
    .gig-info {
        width: 100%;
        text-align: center;
        margin-bottom: 1rem;
        min-width: 0;
        word-wrap: break-word;
        padding: 0 0.3rem;
    }
    
    .gig-action {
        width: 100%;
        text-align: center;
        min-width: 0;
    }
    
    .gig-title {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
        line-height: 1.3;
        white-space: normal;
        word-break: normal;
        overflow-wrap: normal;
        font-weight: 600;
    }
    
    .gig-location {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
        white-space: normal;
        word-break: normal;
        font-weight: 500;
    }
    
    .gig-venue {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
        white-space: normal;
        word-break: normal;
        opacity: 0.8;
    }
    
    .ticket-btn {
        padding: 10px 20px;
        font-size: 0.8rem;
        max-width: 140px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        border-radius: 4px;
        font-weight: 600;
        letter-spacing: 0.5px;
    }
    
    .gig-date {
        order: -1;
        margin-bottom: 0.4rem;
        width: 100%;
        text-align: center;
    }
    
    .gig-info {
        width: 100%;
        text-align: center;
        margin-bottom: 0.4rem;
    }
    
    .gig-action {
        width: 100%;
        text-align: center;
    }
    
    .gig-date {
        margin-bottom: 0.4rem;
    }
    
    .date-month {
        font-size: 0.7rem;
    }
    
    .date-day {
        font-size: 1.3rem;
    }
    
    .gig-title {
        font-size: 1rem;
        margin-bottom: 0.2rem;
        line-height: 1.2;
    }
    
    .gig-location {
        font-size: 0.8rem;
        margin-bottom: 0.1rem;
    }
    
    .gig-venue {
        font-size: 0.7rem;
        margin-bottom: 0.6rem;
    }
    
    .ticket-btn {
        padding: 6px 12px;
        font-size: 0.7rem;
        max-width: 120px;
    }
    
    .gigs-cta {
        padding: 1rem 0.5rem;
        margin: 0 0.5rem;
    }
    
    .cta-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .cta-content p {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
        line-height: 1.3;
    }
    
    .cta-btn {
        padding: 8px 16px;
        font-size: 0.7rem;
    }
    
    /* Contact page for very small screens */
    .contact-main {
        padding: 3rem 0 1.5rem;
    }
    
    .contact-main .section-title {
        font-size: 1.8rem;
    }
    
    .contact-main .section-subtitle {
        font-size: 0.9rem;
    }
    
    .contact-form-container {
        order: 2;
        padding: 1.2rem;
        background: rgba(255, 255, 255, 0.1) !important;
        border-radius: 15px !important;
        border: 2px solid rgba(255, 255, 255, 0.3) !important;
        backdrop-filter: blur(10px) !important;
        margin-bottom: 2rem !important;
        display: block !important;
        width: 100% !important;
        min-height: 350px !important;
    }
    
    .contact-info-container {
        order: 1;
    }
    
    .contact-category {
        text-align: center !important;
    }
    
    .category-title {
        text-align: center !important;
    }
    
    .contact-item {
        padding: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-details h4 {
        font-size: 1rem;
    }
    
    .contact-details a {
        font-size: 0.9rem;
    }
    
    /* Mobile contact form visibility fix */
    .contact-form-container {
        background: rgba(255, 255, 255, 0.1) !important;
        border-radius: 15px !important;
        padding: 2rem !important;
        border: 2px solid rgba(255, 255, 255, 0.3) !important;
        backdrop-filter: blur(10px) !important;
        margin-bottom: 2rem !important;
        display: block !important;
        width: 100% !important;
        min-height: 400px !important;
    }
    
    .contact-form-main {
        background: rgba(255, 255, 255, 0.05) !important;
        border-radius: 10px !important;
        padding: 1.5rem !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        backdrop-filter: blur(5px) !important;
    }
    
    .form-group {
        margin-bottom: 1.5rem !important;
        display: block !important;
    }
    
    .form-label {
        color: #fff !important;
        font-weight: 600 !important;
        margin-bottom: 0.5rem !important;
        display: block !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
    }
    
    .form-input,
    .form-textarea,
    .form-select {
        color: #fff !important;
        background: rgba(255, 255, 255, 0.15) !important;
        border: 2px solid rgba(255, 255, 255, 0.3) !important;
        border-radius: 8px !important;
        padding: 12px 15px !important;
        width: 100% !important;
        display: block !important;
        font-size: 1rem !important;
    }
    
    .form-input::placeholder,
    .form-textarea::placeholder {
        color: rgba(255, 255, 255, 0.8) !important;
    }
    
    .submit-btn-main {
        background: linear-gradient(45deg, #C02A1D, #260806) !important;
        color: #fff !important;
        border: none !important;
        border-radius: 8px !important;
        padding: 15px 30px !important;
        font-size: 1rem !important;
        font-weight: 600 !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        cursor: pointer !important;
        width: 100% !important;
        margin-top: 1rem !important;
    }
    
    /* Music page for very small screens */
    .music-hero {
        min-height: 100vh;
        padding: 1.5rem 0;
    }
    
    .music-hero .hero-content {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: unset !important;
        gap: 1.5rem;
        text-align: center;
        padding: 0 0.5rem;
        align-items: center;
        justify-content: center;
        height: 100vh;
    }
    
    .music-hero .hero-text {
        order: 1 !important;
        width: 100% !important;
        max-width: 350px !important;
        text-align: center !important;
    }
    
    .music-hero .hero-visual {
        order: 2 !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .music-hero .hero-title {
        font-size: 1.4rem;
        line-height: 1.1;
        margin-bottom: 0.4rem;
    }
    
    .music-hero .hero-subtitle {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
        line-height: 1.2;
    }
    
    .new-release-badge {
        margin-bottom: 1rem;
        padding: 0.25rem 0.5rem;
        font-size: 0.65rem;
        gap: 0.5rem;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }
    
    .badge-text {
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.9);
        font-weight: 700;
    }
    
    .badge-date {
        font-weight: 700;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.9);
        background: rgba(0, 0, 0, 0.5);
        padding: 0.1rem 0.3rem;
        border-radius: 6px;
        margin-left: 0.2rem;
    }
    
    .album-cover {
        width: 200px;
        height: 200px;
        border-radius: 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        margin: 0 auto;
    }
    
    .hero-actions {
        max-width: 280px;
        gap: 0.6rem;
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
    }
    
    .hero-btn {
        max-width: 260px;
        padding: 8px 12px;
        font-size: 0.7rem;
        width: 100%;
    }
    
    .music-grid {
        gap: 1.2rem;
        padding: 0 0.5rem;
    }
    
    .filter-buttons {
        gap: 0.6rem;
        padding: 0 0.5rem;
    }
    
    .filter-btn {
        padding: 6px 12px;
        font-size: 0.7rem;
        border-radius: 15px;
    }
    
    .music-page-section {
        padding: 3rem 0;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .music-header {
        margin-bottom: 2rem;
        padding: 0 0.5rem;
        width: 100%;
        max-width: 100%;
    }
    
    .music-filters {
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
        width: 100%;
        max-width: 100%;
    }
    
    .music-section {
        width: 100%;
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .music-grid {
        width: 100%;
        max-width: 100%;
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Gigs page mobile optimizations */
    .gigs-hero {
        min-height: 100vh;
        padding: 2rem 0;
    }
    
    .gigs-hero .hero-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        padding: 0 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .gigs-hero .hero-text {
        order: 1;
        width: 100%;
    }
    
    .gigs-hero .hero-video {
        order: 2;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .gigs-hero .hero-title {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 0.5rem;
    }
    
    .gigs-hero .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .hero-video {
        height: 200px;
        margin: 0 auto;
        width: 100%;
        max-width: 400px;
        display: block;
        position: relative;
        overflow: hidden;
        border-radius: 10px;
        z-index: 1;
    }
    
    .video-container {
        width: 100%;
        height: 100%;
        position: relative;
    }
    
    .video-container video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    
    .video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        z-index: 2;
    }
    
    .video-text h2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        color: #fff;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }
    
    .video-text p {
        font-size: 0.8rem;
        color: #fff;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    }
    
    .gigs-section {
        padding: 3rem 0;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .gigs-section .container {
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .gigs-header {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .gigs-filters {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .filter-buttons,
    .location-filters {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.4rem;
        width: 100%;
    }
    
    .filter-btn,
    .location-btn {
        padding: 6px 12px;
        font-size: 0.7rem;
        min-width: 60px;
    }
    
    .gigs-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
        display: grid;
        overflow: hidden;
    }
    
    .gig-item {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        text-align: center;
        padding: 1.5rem;
        margin: 0 0 1.5rem 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 15px;
        border: 1px solid rgba(255, 0, 0, 0.2);
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    
    .gig-date {
        order: -1;
        margin-bottom: 1rem;
        width: 100%;
        text-align: center;
        min-width: 0;
        padding: 0.8rem;
        background: rgba(255, 0, 0, 0.1);
        border-radius: 10px;
        border: 1px solid rgba(255, 0, 0, 0.3);
    }
    
    .gig-info {
        width: 100%;
        text-align: center;
        margin-bottom: 1.2rem;
        min-width: 0;
        word-wrap: break-word;
        padding: 0 0.5rem;
    }
    
    .gig-action {
        width: 100%;
        text-align: center;
        min-width: 0;
    }
    
    .gig-title {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
        line-height: 1.2;
        white-space: normal;
        word-break: normal;
        overflow-wrap: normal;
    }
    
    .gig-location {
        font-size: 0.9rem;
        margin-bottom: 0.2rem;
        white-space: normal;
        word-break: normal;
    }
    
    .gig-venue {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
        white-space: normal;
        word-break: normal;
    }
    
    .ticket-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
        width: 100%;
        max-width: 150px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .gig-date {
        order: -1;
        margin-bottom: 0.5rem;
        width: 100%;
        text-align: center;
    }
    
    .gig-info {
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    .gig-action {
        width: 100%;
        text-align: center;
    }
    
    .gig-date {
        order: -1;
        margin-bottom: 0.5rem;
    }
    
    .date-month {
        font-size: 0.8rem;
    }
    
    .date-day {
        font-size: 1.5rem;
    }
    
    .gig-title {
        font-size: 1rem;
        margin-bottom: 0.6rem;
        line-height: 1.3;
        font-weight: 600;
    }
    
    .gig-location {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
        font-weight: 500;
    }
    
    .gig-venue {
        font-size: 0.7rem;
        margin-bottom: 0.8rem;
        opacity: 0.8;
    }
    
    .gig-action {
        text-align: center;
    }
    
    .ticket-btn {
        padding: 8px 16px;
        font-size: 0.7rem;
        width: 100%;
        max-width: 130px;
        border-radius: 20px;
        font-weight: 600;
        letter-spacing: 0.3px;
    }
    
    .gigs-cta {
        padding: 1.5rem 1rem;
        text-align: center;
        margin: 0 1rem;
    }
    
    .cta-content h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .cta-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }
    
    .cta-btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

.rotate-in {
    opacity: 0;
    transform: rotate(-10deg) scale(0.8);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rotate-in.visible {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.stagger-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stagger-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-item:nth-child(1) { transition-delay: 0.1s; }
.stagger-item:nth-child(2) { transition-delay: 0.2s; }
.stagger-item:nth-child(3) { transition-delay: 0.3s; }
.stagger-item:nth-child(4) { transition-delay: 0.4s; }
.stagger-item:nth-child(5) { transition-delay: 0.5s; }
.stagger-item:nth-child(6) { transition-delay: 0.6s; }

.parallax-bg {
    transform: translateY(0);
    transition: transform 0.1s ease-out;
}

.text-reveal {
    overflow: hidden;
    position: relative;
}

.text-reveal::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #C02A1D, #260806);
    transform: translateX(-100%);
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.text-reveal.visible::after {
    transform: translateX(100%);
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

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

.pulse-glow {
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
    }
    50% { 
        box-shadow: 0 0 40px rgba(255, 0, 0, 0.6);
    }
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(45deg, #C02A1D, #260806);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Mobile Animation Optimizations */
@media (max-width: 768px) {
    .fade-in,
    .slide-in-left,
    .slide-in-right,
    .scale-in,
    .rotate-in,
    .stagger-item {
        transition-duration: 0.6s;
    }
    
    .stagger-item:nth-child(1) { transition-delay: 0.05s; }
    .stagger-item:nth-child(2) { transition-delay: 0.1s; }
    .stagger-item:nth-child(3) { transition-delay: 0.15s; }
    .stagger-item:nth-child(4) { transition-delay: 0.2s; }
    .stagger-item:nth-child(5) { transition-delay: 0.25s; }
    .stagger-item:nth-child(6) { transition-delay: 0.3s; }
    
    .floating {
        animation-duration: 2s;
    }
    
    .pulse-glow {
        animation-duration: 1.5s;
    }
}

@media (max-width: 480px) {
    .fade-in,
    .slide-in-left,
    .slide-in-right,
    .scale-in,
    .rotate-in,
    .stagger-item {
        transition-duration: 0.5s;
    }
    
    .stagger-item:nth-child(1) { transition-delay: 0.03s; }
    .stagger-item:nth-child(2) { transition-delay: 0.06s; }
    .stagger-item:nth-child(3) { transition-delay: 0.09s; }
    .stagger-item:nth-child(4) { transition-delay: 0.12s; }
    .stagger-item:nth-child(5) { transition-delay: 0.15s; }
    .stagger-item:nth-child(6) { transition-delay: 0.18s; }
    
    .floating {
        animation-duration: 1.5s;
    }
    
    .pulse-glow {
        animation-duration: 1s;
    }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .fade-in,
    .slide-in-left,
    .slide-in-right,
    .scale-in,
    .rotate-in,
    .stagger-item,
    .floating,
    .pulse-glow,
    .text-reveal::after {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }
    
    .fade-in.visible,
    .slide-in-left.visible,
    .slide-in-right.visible,
    .scale-in.visible,
    .rotate-in.visible,
    .stagger-item.visible {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Gigs Page Styles */
.gigs-hero {
    height: 100vh;
    width: 100vw;
    background: linear-gradient(135deg, #0a0a0a 0%, #2e1a1a 50%, #3e1616 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.gigs-hero .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100vw;
    height: 100vh;
    position: relative;
    z-index: 2;
    margin: 0;
    padding: 0;
}

.gigs-hero .hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.gigs-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

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

.video-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.video-container video,
.video-container iframe {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.video-text h2 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.video-text p {
    color: #fff;
    font-size: 1.2rem;
    opacity: 0.9;
}

.gigs-section {
    padding: 6rem 0;
    background: #0a0a0a;
    color: #fff;
}

.gigs-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gigs-filters {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-buttons,
.location-filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn,
.location-btn {
    padding: 12px 24px;
    background: transparent;
    border: 2px solid #C02A1D;
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.filter-btn:hover,
.location-btn:hover,
.filter-btn.active,
.location-btn.active {
    background: #C02A1D;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
}

.gigs-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

.gig-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 0, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.gig-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.2);
    border-color: #C02A1D;
}

.gig-date {
    text-align: center;
    min-width: 80px;
}

.date-month {
    font-size: 1.2rem;
    font-weight: 700;
    color: #C02A1D;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.date-day {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.gig-info {
    flex: 1;
}

.gig-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.gig-location {
    font-size: 1.1rem;
    color: #260806;
    font-weight: 600;
    margin-bottom: 0.25rem;
    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
}

.gig-venue {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
}

.gig-action {
    text-align: right;
}

.ticket-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(45deg, #C02A1D, #260806);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.ticket-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
    background: linear-gradient(45deg, #260806, #C02A1D);
}

.gigs-cta {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.1), rgba(255, 102, 0, 0.1));
    border-radius: 20px;
    margin-top: 4rem;
}

.cta-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, #C02A1D, #260806);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.4);
    background: linear-gradient(45deg, #260806, #C02A1D);
}

/* Contact Page Styles */
.contact-main {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #2e1a1a 50%, #3e1616 100%);
    color: #fff;
    padding: 6rem 0 4rem;
    display: flex;
    align-items: center;
}

.contact-main .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-main .section-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.contact-main .section-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    justify-items: center;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-form-main {
    width: 100%;
}

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

.form-label {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
}

.form-select,
.form-input,
.form-textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 0, 0, 0.3);
    border-radius: 10px;
    color: #fff !important;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.form-select:focus,
.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #C02A1D;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.form-select option {
    background: #1a1a1a;
    color: #fff;
}

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

.submit-btn-main {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(45deg, #C02A1D, #260806);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.4);
    background: linear-gradient(45deg, #260806, #C02A1D);
}

.contact-info-section {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info-grid {
    display: grid;
    gap: 2rem;
}

.contact-category {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.2);
    border-color: #C02A1D;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #C02A1D;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 2px solid #C02A1D;
    padding-bottom: 0.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #C02A1D, #260806);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.contact-details a {
    color: #C02A1D;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.contact-details a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Music Page Styles */
.music-hero {
    min-height: 100vh;
    height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #2e1a1a 50%, #3e1616 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
}

.music-hero .hero-content {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 3rem;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    flex-direction: unset !important;
    text-align: unset !important;
    justify-content: unset !important;
}

/* Ensure mobile styles override desktop grid */
@media (max-width: 768px) {
    .music-hero .hero-content {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: unset !important;
        gap: 2rem;
        text-align: center;
        padding: 0 1rem;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        height: 100vh;
    }
    
    .music-hero .hero-text {
        order: 1 !important;
        width: 100% !important;
        max-width: 500px !important;
        text-align: center !important;
        padding-top: 3rem !important;
    }
    
    .music-hero .hero-visual {
        order: 2 !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
}

@media (max-width: 480px) {
    .music-hero .hero-content {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: unset !important;
        gap: 1.5rem;
        text-align: center;
        padding: 0 1rem;
        align-items: center;
        justify-content: center;
        height: 100vh;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .music-hero .hero-text {
        order: 1 !important;
        width: 100% !important;
        max-width: 320px !important;
        text-align: center !important;
        margin: 0 auto !important;
        padding-top: 5rem !important;
    }
    
    .music-hero .hero-visual {
        order: 2 !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
}

.music-hero .hero-title {
    font-size: 3.5rem;
    margin-bottom: 0.8rem;
}

.music-hero .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #260806;
    font-weight: 600;
}

.new-release-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(45deg, #C02A1D, #260806);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.badge-text {
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    font-weight: 700;
}

.badge-date {
    color: #fff;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.3);
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    margin-left: 0.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 15px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
}

.hero-btn.primary {
    background: linear-gradient(45deg, #C02A1D, #260806);
    color: #fff;
}

.hero-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.4);
    background: linear-gradient(45deg, #260806, #C02A1D);
}

.hero-btn.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #C02A1D;
}

.hero-btn.secondary:hover {
    background: #C02A1D;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.3);
}

.hero-btn .beatport-logo {
    width: 1.2rem;
    height: 1.2rem;
    filter: brightness(0) invert(1);
}

.album-cover {
    position: relative;
    width: 350px;
    height: 350px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.album-cover:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 60px rgba(255, 0, 0, 0.3);
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.album-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #C02A1D, #260806);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #fff;
}

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

.play-overlay i {
    font-size: 3rem;
    color: #fff;
}

.album-cover:hover .play-overlay {
    opacity: 1;
}

.music-page-section {
    padding: 6rem 0;
    background: #0a0a0a;
    color: #fff;
}

.music-header {
    text-align: center;
    margin-bottom: 4rem;
}

.music-filters {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

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

.filter-btn {
    padding: 12px 24px;
    background: transparent;
    border: 2px solid #C02A1D;
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: #C02A1D;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
}

.music-section {
    margin-bottom: 6rem;
}

.section-subtitle {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #C02A1D;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 600px;
}

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

.music-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 0, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
}

.music-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.2);
    border-color: #C02A1D;
}

.music-item.featured-album {
    border: 2px solid #260806;
    background: rgba(255, 102, 0, 0.1);
}

.album-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(45deg, #C02A1D, #260806);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.music-cover {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.cover-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.cover-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fallback-icon {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #C02A1D, #260806);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #fff;
}

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

.track-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.track-genre {
    font-size: 1rem;
    color: #260806;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.track-details {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.purchase-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 20px;
    background: linear-gradient(45deg, #C02A1D, #260806);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.purchase-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
    background: linear-gradient(45deg, #260806, #C02A1D);
}

.purchase-btn .beatport-logo {
    width: 1rem;
    height: 1rem;
    filter: brightness(0) invert(1);
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeOut 1s ease 2s forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #333;
    border-top: 3px solid #C02A1D;
    border-radius: 50%;
    animation: spin 1s linear infinite;
} 

/* Video fallback styles */
.video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.fallback-background {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    position: relative;
}

.fallback-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Spectacular Loading Animation */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #260806 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow: hidden;
}

.loading-screen.fade-out {
    animation: loadingFadeOut 1.5s ease-in-out forwards;
}

.loading-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loading-logo {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.loading-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: logoPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(192, 42, 29, 0.8));
}

.loading-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
}

.loading-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-radius: 50%;
    animation: ringRotate 3s linear infinite;
}

.loading-ring:nth-child(1) {
    border-top-color: #C02A1D;
    animation-delay: 0s;
    animation-duration: 2s;
}

.loading-ring:nth-child(2) {
    border-right-color: #C02A1D;
    animation-delay: 0.5s;
    animation-duration: 2.5s;
    animation-direction: reverse;
}

.loading-ring:nth-child(3) {
    border-bottom-color: #C02A1D;
    animation-delay: 1s;
    animation-duration: 3s;
}

.loading-ring:nth-child(4) {
    border-left-color: #C02A1D;
    animation-delay: 1.5s;
    animation-duration: 2.2s;
    animation-direction: reverse;
}

.loading-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.loading-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #C02A1D;
    border-radius: 50%;
    animation: particleFloat 4s ease-in-out infinite;
}

.loading-particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.loading-particle:nth-child(2) { top: 60%; left: 80%; animation-delay: 0.5s; }
.loading-particle:nth-child(3) { top: 80%; left: 20%; animation-delay: 1s; }
.loading-particle:nth-child(4) { top: 30%; left: 70%; animation-delay: 1.5s; }
.loading-particle:nth-child(5) { top: 70%; left: 30%; animation-delay: 2s; }
.loading-particle:nth-child(6) { top: 10%; left: 60%; animation-delay: 2.5s; }
.loading-particle:nth-child(7) { top: 50%; left: 90%; animation-delay: 3s; }
.loading-particle:nth-child(8) { top: 90%; left: 50%; animation-delay: 3.5s; }

.loading-text {
    font-family: 'Aktiv Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    animation: textGlow 2s ease-in-out infinite alternate;
    text-shadow: 0 0 20px rgba(192, 42, 29, 0.8);
    margin-top: 3rem;
}

.loading-progress {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-top: 1rem;
    overflow: hidden;
    position: relative;
}

.loading-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #C02A1D, #ff6b35);
    border-radius: 2px;
    width: 0%;
    animation: progressFill 3s ease-in-out forwards;
    box-shadow: 0 0 10px rgba(192, 42, 29, 0.6);
}

.loading-sound-waves {
    position: absolute;
    bottom: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
    align-items: flex-end;
}

.loading-wave {
    width: 4px;
    background: #C02A1D;
    border-radius: 2px;
    animation: wavePulse 1.5s ease-in-out infinite;
}

.loading-wave:nth-child(1) { height: 20px; animation-delay: 0s; }
.loading-wave:nth-child(2) { height: 30px; animation-delay: 0.1s; }
.loading-wave:nth-child(3) { height: 40px; animation-delay: 0.2s; }
.loading-wave:nth-child(4) { height: 30px; animation-delay: 0.3s; }
.loading-wave:nth-child(5) { height: 20px; animation-delay: 0.4s; }
.loading-wave:nth-child(6) { height: 35px; animation-delay: 0.5s; }
.loading-wave:nth-child(7) { height: 25px; animation-delay: 0.6s; }

/* Loading Animations */
@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 30px rgba(192, 42, 29, 0.8));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 50px rgba(192, 42, 29, 1));
    }
}

@keyframes ringRotate {
    0% {
        transform: rotate(0deg);
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: rotate(360deg);
        opacity: 0.3;
    }
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) scale(1.5);
        opacity: 1;
    }
}

@keyframes textGlow {
    0% {
        text-shadow: 0 0 20px rgba(192, 42, 29, 0.8);
        transform: scale(1);
    }
    100% {
        text-shadow: 0 0 40px rgba(192, 42, 29, 1);
        transform: scale(1.05);
    }
}

@keyframes progressFill {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@keyframes wavePulse {
    0%, 100% {
        height: 20px;
        opacity: 0.5;
    }
    50% {
        height: 40px;
        opacity: 1;
    }
}

@keyframes loadingFadeOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
    100% {
        opacity: 0;
        transform: scale(1.2);
        visibility: hidden;
    }
}

/* Loading screen responsive */
@media (max-width: 768px) {
    .loading-logo {
        width: 150px;
        height: 150px;
    }
    
    .loading-rings {
        width: 250px;
        height: 250px;
    }
    
    .loading-text {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .loading-progress {
        width: 150px;
    }
}

@media (max-width: 480px) {
    .loading-logo {
        width: 120px;
        height: 120px;
    }
    
    .loading-rings {
        width: 200px;
        height: 200px;
    }
    
    .loading-text {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .loading-progress {
        width: 120px;
    }
}

/* Kelly Reverb Style Music Layout */
.music-kelly-style {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: start;
}

.music-kelly-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: transparent;
    border-radius: 0;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    min-height: 240px;
    height: 240px;
}

.music-kelly-item::before,
.music-kelly-item::after {
    display: none !important;
    content: none !important;
}

.music-kelly-item:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.music-kelly-cover {
    position: relative;
    width: 180px;
    height: 180px;
    border-radius: 0;
    overflow: hidden;
    flex-shrink: 0;
    z-index: 2;
    border: none;
    outline: none;
}

.music-kelly-cover::before,
.music-kelly-cover::after {
    display: none !important;
    content: none !important;
}

.music-kelly-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 0;
    border: none;
    outline: none;
}

.music-kelly-item:hover .music-kelly-cover img {
    transform: scale(1.1);
}



.music-kelly-info {
    flex: 1;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
    height: 180px;
    gap: 0.5rem;
    position: relative;
}

.music-kelly-date {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    top: 0;
}

.music-kelly-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff !important;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    transition: color 0.3s ease;
    height: 2.4em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.music-kelly-item:hover .music-kelly-title {
    color: #C02A1D;
}

.music-kelly-artist {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.music-kelly-genre {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.music-kelly-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.75rem;
    font-weight: 400;
}

.music-kelly-purchase {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    background: transparent;
    color: #C02A1D;
    text-decoration: underline;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    margin-top: auto;
    align-self: flex-start;
    width: fit-content;
    justify-content: flex-start;
}

.music-kelly-purchase:hover {
    color: #260806;
}

.music-kelly-purchase:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(192, 42, 29, 0.4);
}



/* Responsive Design for Kelly Style */
@media (max-width: 1200px) {
    .music-kelly-style {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .music-kelly-style {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .music-kelly-item {
        padding: 1.25rem;
        gap: 1.25rem;
        min-height: 200px;
        height: 200px;
    }
    
    .music-kelly-cover {
        width: 140px;
        height: 140px;
    }
    
    .music-kelly-info {
        min-height: 160px;
        height: 160px;
    }
}

@media (max-width: 768px) {
    .music-kelly-style {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .music-kelly-item {
        padding: 1rem;
        gap: 1rem;
        min-height: 180px;
        height: 180px;
    }
    
    .music-kelly-cover {
        width: 120px;
        height: 120px;
    }
    
    .music-kelly-info {
        min-height: 140px;
        height: 140px;
        justify-content: space-between;
    }
    
    .music-kelly-title {
        font-size: 1.1rem;
        height: 2.4em;
    }
    
    .music-kelly-artist {
        font-size: 0.8rem;
    }
    
    .music-kelly-genre {
        font-size: 0.75rem;
    }
    
    .music-kelly-purchase {
        padding: 0;
        font-size: 0.8rem;
        margin-top: auto;
        width: fit-content;
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .music-kelly-item {
        padding: 0.75rem;
        gap: 0.75rem;
        min-height: 160px;
        height: 160px;
    }
    
    .music-kelly-cover {
        width: 100px;
        height: 100px;
    }
    
    .music-kelly-info {
        min-height: 120px;
        height: 120px;
        justify-content: space-between;
    }
    
    .music-kelly-title {
        font-size: 1rem;
        height: 2.4em;
    }
    
    .music-kelly-artist {
        font-size: 0.75rem;
    }
    
    .music-kelly-genre {
        font-size: 0.7rem;
    }
    
    .music-kelly-purchase {
        padding: 0;
        font-size: 0.75rem;
        margin-top: auto;
        width: fit-content;
        justify-content: flex-start;
    }
}

/* Music Page Styles */
.latest-releases {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

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

.release-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.release-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.release-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(192, 42, 29, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-color: rgba(192, 42, 29, 0.3);
}

.release-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #C02A1D, #ff4757);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.release-cover {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

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

.release-card:hover .release-cover img {
    transform: scale(1.05);
}



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

.release-title {
    font-family: 'Aktiv Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    line-height: 1.2;
}

.release-artist {
    font-size: 1rem;
    color: #C02A1D;
    font-weight: 600;
    margin-bottom: 8px;
}

.release-genre {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    line-height: 1.4;
}

.release-date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.platform-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.platform-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.platform-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.platform-link img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* Streaming Platforms Section */
.streaming-platforms {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.platform-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.platform-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.platform-card.spotify {
    background: linear-gradient(135deg, rgba(30, 215, 96, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-color: rgba(30, 215, 96, 0.3);
}

.platform-card.apple {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-color: rgba(255, 255, 255, 0.3);
}

.platform-card.soundcloud {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-color: rgba(255, 102, 0, 0.3);
}

.platform-card.beatport {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-color: rgba(255, 255, 255, 0.3);
}

.platform-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: white;
    position: relative;
}

.platform-card.spotify .platform-icon {
    background: linear-gradient(135deg, #1DB954, #1ed760);
}

.platform-card.apple .platform-icon {
    background: linear-gradient(135deg, #000000, #333333);
}

.platform-card.soundcloud .platform-icon {
    background: linear-gradient(135deg, #ff5500, #ff7700);
}

.platform-card.beatport .platform-icon {
    background: linear-gradient(135deg, #000000, #333333);
}

.beatport-icon {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
}

.platform-title {
    font-family: 'Aktiv Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.platform-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.platform-stats {
    margin-bottom: 25px;
}

.stat {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.platform-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.platform-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.platform-card.spotify .platform-btn:hover {
    background: rgba(30, 215, 96, 0.2);
    border-color: rgba(30, 215, 96, 0.4);
}

.platform-card.apple .platform-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.platform-card.soundcloud .platform-btn:hover {
    background: rgba(255, 102, 0, 0.2);
    border-color: rgba(255, 102, 0, 0.4);
}

.platform-card.beatport .platform-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.platform-btn img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .releases-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .release-card.featured {
        grid-column: span 1;
    }
    
    .platforms-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .release-card {
        padding: 20px;
    }
    
    .platform-card {
        padding: 30px 20px;
    }
    
    .release-title {
        font-size: 1.3rem;
    }
    
    .platform-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .latest-releases,
    .streaming-platforms {
        padding: 60px 0;
    }
    
    .releases-grid {
        margin-top: 30px;
    }
    
    .platforms-grid {
        margin-top: 30px;
    }
    
    .release-cover {
        height: 150px;
    }
    
    .platform-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .beatport-icon {
        width: 40px;
        height: 40px;
    }
}

