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

:root {
    --primary-color: #000000;
    --secondary-color: #0a0a0a;
    --accent-color: #ff1a3a;
    --accent-hover: #e61734;
    --accent-glow: rgba(255, 26, 58, 0.5);
    --text-color: #1a1a1a;
    --text-light: #666666;
    --border-color: #2a2a2a;
    --bg-dark: #0d0d0d;
    --bg-darker: #000000;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.25);
    --shadow-large: 0 24px 80px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 30px rgba(255, 26, 58, 0.4);
    --gradient-primary: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    --gradient-accent: linear-gradient(135deg, #ff1a3a 0%, #cc1430 100%);
    --gradient-hero: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.65) 50%, rgba(0, 0, 0, 0.75) 100%);
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

/* Header & Navigation */
header {
    background-color: rgba(0, 0, 0, 0.98);
    color: #fff;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 26, 58, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 2px solid rgba(255, 26, 58, 0.2);
    transition: all 0.3s ease;
}

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

.nav-container > *:first-child {
    flex-shrink: 0;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: auto;
    flex: 1;
    justify-content: flex-end;
    min-width: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: nowrap;
    flex: 1;
    justify-content: space-between;
    min-width: 0;
}

.nav-primary {
    display: flex;
    align-items: center;
}

.nav-secondary {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: nowrap;
    min-width: 0;
}

/* Language switcher */
.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.lang-link {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
    font-size: 0.85rem;
    text-transform: uppercase;
    padding: 0.35rem 0.6rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    transition: all 0.25s ease;
    line-height: 1;
}

.lang-link:visited {
    color: #fff;
}

.lang-link:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.lang-link.active {
    color: var(--accent-color);
    border-color: rgba(255, 26, 58, 0.55);
    background: rgba(255, 26, 58, 0.18);
    box-shadow: 0 0 14px rgba(255, 26, 58, 0.2);
}

.lang-link.active:visited {
    color: var(--accent-color);
}

.lang-sep {
    color: rgba(255, 255, 255, 0.55);
    font-weight: 700;
    letter-spacing: 1px;
    user-select: none;
}

.logo a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    letter-spacing: 3px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(255, 26, 58, 0.3);
}

.logo a:hover {
    color: var(--accent-color);
    text-shadow: 0 0 30px var(--accent-glow);
    transform: translateY(-2px);
}

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

.nav-menu a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 2px;
    font-size: 1rem;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.6rem 1rem;
    border-radius: 4px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-glow);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover {
    color: var(--accent-color);
    background-color: rgba(255, 26, 58, 0.1);
    text-shadow: 0 0 10px var(--accent-glow);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: calc(100% - 2rem);
}

.nav-menu a.active {
    color: var(--accent-color);
    background-color: rgba(255, 26, 58, 0.15);
    text-shadow: 0 0 15px var(--accent-glow);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Social Icons Header */
.social-icons-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 4px;
    padding: 6px;
}

.social-icon svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    color: var(--accent-color);
    background-color: rgba(255, 26, 58, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 26, 58, 0.3);
}

.social-icon:hover svg {
    transform: scale(1.15);
    filter: drop-shadow(0 0 8px var(--accent-glow));
}

@media (max-width: 1024px) {
    .nav-right {
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .social-icons-header {
        gap: 0.6rem;
        flex-wrap: nowrap;
    }

    .lang-switch {
        gap: 0.4rem;
    }

    .hero-content h1 {
        font-size: 5rem;
        letter-spacing: 6px;
    }

    .hero {
        padding: 3rem 2rem;
    }

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

    .store-items {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

/* Tablet breakpoint */
@media (max-width: 900px) {
    .nav-container {
        padding: 0 1.5rem;
    }

    .hero-content h1 {
        font-size: 4.5rem;
        letter-spacing: 5px;
    }

    .hero-subtitle {
        font-size: 1.15rem;
    }

    .album-title {
        font-size: 3rem;
    }

    .release-container {
        gap: 3rem;
    }

    .media-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .media-copy {
        order: -1;
    }

    .highlights {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .gallery-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .store-items {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 2rem;
    }

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 1.5rem;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-image {
        background-attachment: scroll;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: 2;
    backdrop-filter: blur(2px);
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 26, 58, 0.15) 0%, transparent 70%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    animation: fadeInUp 1s ease-out;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 6rem;
    margin-bottom: 1.5rem;
    letter-spacing: 8px;
    text-shadow: 0 0 40px rgba(255, 26, 58, 0.6), 0 8px 30px rgba(0, 0, 0, 0.8), 0 0 80px rgba(255, 26, 58, 0.3);
    font-weight: 400;
    font-family: 'Bebas Neue', sans-serif;
    line-height: 1;
    text-transform: uppercase;
    color: #fff;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        text-shadow: 0 0 40px rgba(255, 26, 58, 0.6), 0 8px 30px rgba(0, 0, 0, 0.8), 0 0 80px rgba(255, 26, 58, 0.3);
    }
    50% {
        text-shadow: 0 0 60px rgba(255, 26, 58, 0.8), 0 8px 40px rgba(0, 0, 0, 0.9), 0 0 100px rgba(255, 26, 58, 0.5);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    opacity: 0.92;
    letter-spacing: 1px;
    max-width: 32ch;
    margin-left: auto;
    margin-right: auto;
}

.hero-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.hero-highlights li {
    position: relative;
    padding-left: 1.75rem;
    text-transform: uppercase;
    font-weight: 500;
}

.hero-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-color);
    box-shadow: 0 0 12px rgba(196, 30, 58, 0.6);
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 26, 58, 0.2);
    border-radius: 999px;
    border: 2px solid rgba(255, 26, 58, 0.4);
    box-shadow: 0 0 20px rgba(255, 26, 58, 0.3);
    color: #fff;
}

.album-title {
    font-size: 3.5rem;
    margin: 2rem 0;
    font-weight: 300;
    letter-spacing: 5px;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.6), 0 2px 6px rgba(0, 0, 0, 0.4);
    font-style: italic;
    opacity: 0.95;
}

.album-status {
    font-size: 1.6rem;
    margin: 0 0 3rem;
    font-weight: 400;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 10px;
    text-transform: uppercase;
    opacity: 1;
    color: var(--accent-color);
    text-shadow: 0 0 30px var(--accent-glow);
}

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

.btn {
    padding: 1.1rem 2.75rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1.8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    border-radius: 6px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-accent);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(255, 26, 58, 0.4), 0 0 30px rgba(255, 26, 58, 0.2);
    border: 2px solid transparent;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff2a4a 0%, #e61734 100%);
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(255, 26, 58, 0.5), 0 0 50px rgba(255, 26, 58, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    border-color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(255, 255, 255, 0.3), 0 0 40px rgba(255, 255, 255, 0.2);
}

.btn:disabled,
.btn[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
    background-color: #999;
    color: #fff;
    border-color: #999;
}

.btn:disabled:hover,
.btn[disabled]:hover {
    transform: none;
    box-shadow: none;
}

/* Release Highlight */
.release-highlight {
    padding: 6rem 2rem 5rem;
    margin-bottom: 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 50%, #f3f3f3 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.release-container {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) 1.05fr;
    gap: 4rem;
    align-items: start;
}

.release-artwork {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    position: sticky;
    top: 2rem;
}

.vinyl-frame {
    width: 100%;
    max-width: 360px;
    aspect-ratio: 1;
    border-radius: 24px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), rgba(15, 15, 15, 0.85));
    padding: 1.5rem;
    position: relative;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
}

.vinyl-frame::after {
    content: '';
    position: absolute;
    inset: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
}

.vinyl-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.press-quote {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    max-width: 32ch;
    line-height: 1.7;
    font-size: 1rem;
}

.press-quote span {
    display: block;
    font-style: normal;
    margin-top: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    color: var(--text-color);
    font-weight: 600;
}

.release-details {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.release-pill {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(196, 30, 58, 0.1);
    border: 1px solid rgba(196, 30, 58, 0.25);
    margin-bottom: 0.25rem;
}

.release-details h2 {
    font-size: 3.5rem;
    margin: 0 0 0.25rem;
    letter-spacing: 2px;
    color: var(--primary-color);
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    line-height: 1.05;
}

.release-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0;
    max-width: 52ch;
    line-height: 1.75;
}

.platform-links {
    display: flex;
    gap: 1rem;
    flex-wrap: nowrap;
    margin: 0;
}

.platform-link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0.85rem 1.1rem;
    border: 1px solid rgba(10, 10, 10, 0.1);
    border-radius: 10px;
    text-decoration: none;
    color: var(--primary-color);
    background: #fff;
    flex: 1 1 0;
    min-width: 0;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.platform-link:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.platform-label {
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-light);
}

.platform-name {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.release-player {
    max-width: 1100px;
    width: 100%;
    margin: 4rem auto 0;
}

.release-player iframe {
    display: block;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.release-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin: 0;
    padding-top: 0.5rem;
}

.release-meta h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.release-meta ol,
.release-meta ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.release-meta ol {
    counter-reset: track;
}

.release-meta ol li {
    counter-increment: track;
    position: relative;
    padding-left: 1.75rem;
}

.release-meta ol li::before {
    content: counter(track);
    position: absolute;
    left: 0;
    top: 0;
}

.track-duration {
    color: var(--text-light);
    font-weight: 400;
    margin-left: 0.5rem;
    font-size: 0.95em;
}

.highlights {
    padding: 5rem 2rem 5rem;
    background: #ffffff;
}

.highlights-container {
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 0;
}

.highlight-card {
    background: linear-gradient(145deg, #ffffff 0%, #f6f6f6 100%);
    border-radius: 18px;
    padding: 2.5rem;
    border: 1px solid rgba(10, 10, 10, 0.06);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.12);
}

.card-pill {
    align-self: flex-start;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: rgba(255, 26, 58, 0.15);
    color: var(--accent-color);
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    border: 1px solid rgba(255, 26, 58, 0.3);
    box-shadow: 0 0 15px rgba(255, 26, 58, 0.2);
}

.highlight-card h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    letter-spacing: -0.3px;
}

.highlight-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

.card-link {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.card-link::after {
    content: '↗';
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.card-link:hover::after {
    transform: translate(4px, -4px);
}

.media-feature {
    padding: 5rem 2rem 6rem;
    background: linear-gradient(180deg, #f5f5f5 0%, #ffffff 50%, #fafafa 100%);
}

.media-container {
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3.5rem;
    align-items: start;
}

.media-player {
    position: relative;
}

.video-frame {
    position: relative;
    padding-top: 56.25%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-large);
    background: #000;
}

.video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.media-copy {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.media-copy .card-pill {
    margin-bottom: 0;
}

.media-copy h2 {
    font-size: 2.25rem;
    margin: 0;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.media-copy p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.75;
    font-size: 1.05rem;
}

.media-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
}

.media-cta {
    width: fit-content;
    margin-top: 0.25rem;
}

/* Gallery Section */
.gallery {
    padding: 5rem 2rem 6rem;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.gallery-container {
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.75rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.08);
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

@media (hover: none) {
    .gallery-overlay {
        transform: translateY(0);
    }
}

.gallery-overlay p {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Newsletter Section */
.newsletter {
    max-width: 560px;
    margin: 5rem auto 6rem;
    padding: 0 2rem;
    text-align: center;
}

.newsletter h2 {
    font-size: 3rem;
    margin: 0 0 0.75rem;
    color: var(--primary-color);
    font-weight: 400;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 3px;
    line-height: 1.1;
}

.newsletter > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0 0 2rem;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 280px;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #fff;
    font-family: inherit;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
    transform: translateY(-1px);
}

.newsletter-form input::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

.newsletter-success {
    color: #28a745;
    margin-top: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
}

.newsletter-error {
    color: var(--accent-color);
    margin-top: 1rem;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    padding: 0.75rem;
    background: rgba(196, 30, 58, 0.1);
    border-radius: 6px;
    border: 1px solid rgba(196, 30, 58, 0.2);
}

/* Tour Page */
.tour-page {
    max-width: 950px;
    margin: 0 auto;
    padding: 7rem 2rem;
    min-height: calc(100vh - 200px);
}

.tour-heading {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.tour-pretitle {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 600;
    font-family: 'Oswald', sans-serif;
    color: var(--accent-color);
    text-shadow: 0 0 15px var(--accent-glow);
}

.tour-title {
    font-size: 4.5rem;
    font-weight: 400;
    font-family: 'Bebas Neue', sans-serif;
    margin-bottom: 0.5rem;
    text-align: left;
    color: var(--primary-color);
    letter-spacing: 4px;
    line-height: 1.1;
}

.tour-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 60ch;
}

.tour-callouts {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.tour-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: rgba(196, 30, 58, 0.12);
    color: var(--accent-color);
    border: 1px solid rgba(196, 30, 58, 0.25);
}

.tour-cta {
    align-self: flex-start;
}

.tour-dates {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.tour-month {
    border: 1px solid rgba(10, 10, 10, 0.05);
    border-radius: 14px;
    box-shadow: 0 14px 28px rgba(10, 10, 10, 0.05);
    overflow: hidden;
    background: #fff;
}

.tour-month:not(:last-child) {
    margin-bottom: 3rem;
}

.tour-month-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    color: var(--text-light);
    padding: 1.3rem 2rem 0.8rem;
    background: linear-gradient(120deg, rgba(196, 30, 58, 0.08), transparent 65%);
}

.tour-date {
    display: grid;
    grid-template-columns: 150px minmax(0, 1.5fr) minmax(0, 2fr) minmax(100px, auto);
    align-items: center;
    padding: 1.75rem 2rem;
    border-bottom: 1px solid var(--border-color);
    gap: 2rem;
    transition: all 0.3s ease;
    border-radius: 0;
    margin: 0;
}

.tour-date:hover {
    background-color: rgba(248, 248, 248, 0.6);
    transform: translateX(4px);
    border-color: transparent;
}

.tour-date:last-child {
    border-bottom: none;
}

.tour-date-text {
    font-size: 1.05rem;
    color: var(--text-color);
    font-weight: 500;
    letter-spacing: 0.3px;
    grid-column: 1;
}

.tour-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tour-separator {
    color: var(--text-light);
    font-weight: 300;
}

.tour-location {
    font-size: 1.05rem;
    color: var(--text-light);
    font-weight: 400;
    grid-column: 2;
    min-width: 0;
}

.tour-venue {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 500;
    grid-column: 3;
    min-width: 0;
}

.tour-support-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    letter-spacing: 0.6px;
    font-weight: 600;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(196, 30, 58, 0.12);
    color: var(--accent-color);
    box-shadow: inset 0 0 0 1px rgba(196, 30, 58, 0.18);
}

.tour-support-tag::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
    box-shadow: 0 0 10px rgba(196, 30, 58, 0.35);
}

.tour-support-label {
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 1.6px;
    background: rgba(196, 30, 58, 0.18);
    color: var(--accent-color);
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
}

.tour-support-name {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: none;
}

.tour-link {
    white-space: nowrap;
    padding: 0.75rem 1.75rem;
    font-size: 0.85rem;
    grid-column: 4;
    justify-self: end;
}

.tour-status {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    padding: 0.55rem 1.25rem;
    border-radius: 999px;
    justify-self: end;
    background: rgba(10, 10, 10, 0.06);
    color: var(--text-color);
}

.tour-status-hold {
    background: rgba(255, 193, 59, 0.18);
    color: #8c5b00;
    border: 1px solid rgba(255, 193, 59, 0.4);
}

/* Store Page */
.store-page {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.store-page h1 {
    font-size: 5rem;
    margin-bottom: 5rem;
    text-align: center;
    color: var(--primary-color);
    font-weight: 400;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 4px;
    line-height: 1.1;
}

.store-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
}

.store-item {
    border: 1px solid var(--border-color);
    padding: 0;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.store-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.1);
}

.store-item-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    position: relative;
}

.store-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.store-item:hover .store-item-image img {
    transform: scale(1.08);
}

.store-item h3 {
    font-size: 1.35rem;
    margin: 2rem 1.5rem 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: -0.3px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    color: var(--accent-color);
    margin-bottom: 2rem;
    letter-spacing: 1px;
    text-shadow: 0 0 15px var(--accent-glow);
}

.store-item .btn {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
}

.placeholder-image {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Shopping Cart - Header Button */
.cart-toggle-header {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: 0.75rem;
}

.cart-toggle-header:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    transform: translateY(-1px);
}

.cart-count {
    display: none;
    background: var(--accent-color);
    color: #fff;
    border-radius: 50%;
    min-width: 20px;
    min-height: 20px;
    aspect-ratio: 1;
    padding: 0 6px;
    font-size: 0.7rem;
    font-weight: 600;
    text-align: center;
    box-sizing: border-box;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.cart-count[style*="inline-flex"] {
    display: inline-flex !important;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background: #fff;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.cart-sidebar.open {
    right: 0;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(4px);
}

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

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1;
}

.cart-header h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

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

.cart-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-color);
}

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

.cart-empty {
    text-align: center;
    color: var(--text-light);
    padding: 3rem 1rem;
    font-size: 1.1rem;
}

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

.cart-item:last-child {
    border-bottom: none;
}

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

.cart-item-info h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin: 0 0 0.5rem;
    font-weight: 600;
}

.cart-item-price {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cart-qty-btn {
    background: rgba(10, 10, 10, 0.06);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-color);
    transition: all 0.3s ease;
    font-weight: 600;
}

.cart-qty-btn:hover {
    background: rgba(10, 10, 10, 0.12);
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.cart-qty {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
    color: var(--text-color);
}

.cart-remove {
    background: rgba(196, 30, 58, 0.1);
    border: none;
    border-radius: 6px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: all 0.3s ease;
    margin-left: 0.5rem;
}

.cart-remove:hover {
    background: var(--accent-color);
    color: #fff;
}

.cart-footer {
    padding: 2rem;
    border-top: 1px solid var(--border-color);
    background: #fff;
    position: sticky;
    bottom: 0;
}

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

.cart-total span:first-child {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
}

.cart-total span:last-child {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

#paypal-button-container {
    margin-bottom: 1rem;
    min-height: 50px;
}

.cart-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

.paypal-setup-note {
    padding: 1.5rem;
    background: rgba(196, 30, 58, 0.08);
    border-radius: 8px;
    text-align: center;
}

.paypal-setup-note p {
    margin: 0.5rem 0;
    color: var(--text-color);
    font-size: 0.95rem;
}

.paypal-instructions {
    font-size: 0.85rem !important;
    color: var(--text-light) !important;
}

.paypal-instructions a {
    color: var(--accent-color);
    text-decoration: none;
}

.paypal-instructions a:hover {
    text-decoration: underline;
}

.cart-notification {
    position: fixed;
    top: 100px;
    right: 2rem;
    background: var(--accent-color);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(196, 30, 58, 0.3);
    z-index: 3000;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.cart-notification.show {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Page */
.contact-page {
    max-width: 950px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.contact-page h1 {
    font-size: 5rem;
    margin-bottom: 5rem;
    text-align: center;
    color: var(--primary-color);
    font-weight: 400;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 4px;
    line-height: 1.1;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    width: 100%;
    box-sizing: border-box;
}

.contact-section {
    padding: 2.75rem;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}

.contact-section:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.1);
}

.contact-section h2 {
    font-size: 1.85rem;
    margin-bottom: 1.75rem;
    color: var(--primary-color);
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 0.75rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.contact-section p {
    margin-bottom: 0.8rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.contact-section strong {
    color: var(--primary-color);
}

.contact-section a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-section a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

/* Mailing List Form */
.mailing-list-section {
    margin-top: 5rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-color);
}

.mailing-list-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: -0.5px;
    text-align: center;
}

.mailing-list-section > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    max-width: 60ch;
    margin-left: auto;
    margin-right: auto;
}

.mailing-list-form {
    max-width: 700px;
    margin: 0 auto;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-group input {
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #fff;
    font-family: inherit;
    color: var(--text-color);
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
    transform: translateY(-1px);
}

.form-group input::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

.mailing-list-form .btn {
    width: 100%;
    margin-top: 1rem;
    padding: 1.25rem 2rem;
    font-size: 1rem;
}

.form-success {
    color: #28a745;
    margin-top: 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    padding: 2rem;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
}

.form-error {
    color: var(--accent-color);
    margin-top: 1rem;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    padding: 0.75rem;
    background: rgba(196, 30, 58, 0.1);
    border-radius: 6px;
    border: 1px solid rgba(196, 30, 58, 0.2);
}

.social-media {
    text-align: center;
    padding: 4rem 0;
    border-top: 2px solid var(--border-color);
    margin-top: 2rem;
}

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

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

.social-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.9rem 2rem;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    background: transparent;
}

.social-link:hover {
    background-color: var(--accent-color);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(196, 30, 58, 0.3);
}

/* Sponsors Section */
.sponsors-section {
    background: #ffffff;
    padding: 4rem 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.sponsors-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5.5rem;
    flex-wrap: wrap;
}

.sponsor-logo {
    height: 42px;
    max-width: 130px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
    filter: grayscale(100%) contrast(1.2);
    transition: opacity 0.3s ease;
    display: block;
}

.sponsor-logo:hover {
    opacity: 1;
}

/* Footer */
footer {
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    padding: 4rem 2rem;
    margin-top: 0;
    border-top: 2px solid rgba(255, 26, 58, 0.2);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
}

footer p {
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
        gap: 1rem;
    }

    .nav-right {
        position: relative;
        width: 100%;
        justify-content: flex-end;
        gap: 1rem;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 0.75rem);
        right: 0;
        left: 0;
        display: none;
        flex-direction: column;
        gap: 1.25rem;
        max-width: 320px;
        margin: 0 auto;
        background: rgba(10, 10, 10, 0.97);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 14px;
        padding: 1.5rem 1.75rem;
        box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
        backdrop-filter: blur(16px);
        z-index: 999;
        justify-content: flex-start;
    }

    .nav-links.open {
        display: flex;
        animation: fadeIn 0.25s ease;
    }

    .nav-primary,
    .nav-secondary {
        width: 100%;
    }

    .nav-secondary {
        margin-left: 0;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .menu-toggle {
        display: flex;
    }

    .logo img {
        height: 40px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }

    .nav-menu li {
        margin: 0;
    }

    .nav-menu a {
        display: block;
        text-align: left;
        padding: 0.85rem 1rem;
        border-radius: 8px;
        letter-spacing: 1px;
    }

    .lang-switch {
        width: 100%;
        justify-content: center;
        margin-top: 0.25rem;
        margin-bottom: 0.25rem;
    }

    .cart-toggle-header {
        margin-right: 0;
        margin-bottom: 0.5rem;
        width: 100%;
        justify-content: center;
    }

    .cart-count {
        min-width: 20px;
        min-height: 20px;
        aspect-ratio: 1;
        font-size: 0.65rem;
        padding: 0 5px;
    }

    .social-icons-header {
        justify-content: center;
        gap: 0.75rem;
        flex-wrap: wrap;
        width: 100%;
    }

    .social-icon {
        width: 30px;
        height: 30px;
        padding: 5px;
    }

    .social-icon svg {
        width: 18px;
        height: 18px;
    }

    .hero {
        min-height: 90vh;
        padding: 2rem 1.5rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 3.5rem;
        letter-spacing: 5px;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .hero-highlights {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .album-title {
        font-size: 2rem;
        margin: 1.5rem 0;
    }

    .tagline {
        font-size: 1rem;
        padding: 0.4rem 1rem;
    }

    .album-status {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .tour-title {
        font-size: 3rem;
        margin-bottom: 3rem;
        letter-spacing: 3px;
    }

    .tour-heading {
        gap: 1rem;
        margin-bottom: 3rem;
    }

    .tour-callouts {
        flex-direction: column;
        align-items: flex-start;
    }

    .tour-month-label {
        padding: 1.1rem 1.5rem 0.75rem;
    }

    .tour-page {
        padding: 4rem 1.5rem;
    }

    .tour-date {
        grid-template-columns: 130px minmax(0, 1.3fr) minmax(0, 1.8fr) minmax(100px, auto);
        gap: 1.5rem;
        padding: 1.5rem 1.5rem;
    }

    .tour-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .tour-separator {
        display: none;
    }

    .tour-support-tag {
        width: 100%;
        justify-content: flex-start;
        padding: 0.45rem 0.75rem;
        gap: 0.5rem;
    }

    .tour-link {
        margin-top: 0.5rem;
    }

    .tour-status {
        justify-self: flex-start;
    }

    .gallery {
        padding: 4rem 1.5rem 5rem;
    }

    .gallery-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-item {
        aspect-ratio: 16/9;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
    }

    .newsletter-form input {
        width: 100%;
        min-width: 0;
    }

    .release-highlight {
        padding: 4rem 1.5rem 4rem;
        margin-bottom: 0;
    }

    .release-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .release-player {
        margin-top: 3rem;
    }

    .release-artwork {
        order: -1;
        position: static;
    }

    .release-details {
        text-align: center;
        align-items: center;
    }

    .release-details h2 {
        font-size: 3rem;
        letter-spacing: 2px;
        margin-bottom: 0;
    }

    .release-description {
        font-size: 1rem;
        margin: 0;
        max-width: 100%;
    }

    .platform-links {
        flex-direction: column;
        gap: 1rem;
        justify-content: center;
    }

    .platform-link {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .highlights {
        padding: 4rem 1.5rem 4rem 1.5rem;
    }

    .highlights-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .highlight-card {
        padding: 2rem 1.5rem;
    }

    .highlight-card h3 {
        font-size: 1.5rem;
    }

    .highlight-card p {
        font-size: 0.95rem;
    }

    .media-feature {
        padding: 4rem 1.5rem 6rem;
    }

    .media-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .media-copy {
        order: -1;
        text-align: center;
        align-items: center;
    }

    .media-copy h2 {
        font-size: 2rem;
        margin: 0;
        text-align: center;
    }

    .media-copy p {
        font-size: 1rem;
        margin: 0;
        text-align: center;
    }

    .media-cta {
        align-self: center;
    }

    .media-cta {
        width: 100%;
    }

    .newsletter {
        margin: 4rem auto 5rem;
        padding: 0 1.5rem;
    }

    .newsletter h2 {
        font-size: 2.5rem;
        margin: 0 0 0.5rem;
    }

    .newsletter > p {
        font-size: 1rem;
        margin: 0 0 1.5rem;
    }

    .store-page h1,
    .contact-page h1 {
        font-size: 3.5rem;
        letter-spacing: 3px;
    }

    .contact-page {
        padding: 0 1rem;
        margin: 3rem auto;
        max-width: 100%;
        box-sizing: border-box;
    }

    .contact-info {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .contact-section {
        padding: 1.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .mailing-list-section {
        margin-top: 3rem;
        padding: 2rem 1.5rem;
    }

    .mailing-list-section h2 {
        font-size: 2rem;
    }

    .mailing-list-section {
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }

    .mailing-list-section h2 {
        font-size: 2rem;
    }

    .mailing-list-section > p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

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

    .form-group input {
        padding: 0.9rem 1rem;
        font-size: 16px; /* Prevents zoom on iOS */
        min-height: 44px; /* Better touch target */
    }

    .form-group label {
        font-size: 0.85rem;
    }

    .cart-sidebar {
        max-width: 100%;
    }

    .cart-notification {
        right: 1rem;
        left: 1rem;
        transform: translateY(-100%);
    }

    .cart-notification.show {
        transform: translateY(0);
    }

    .sponsors-section {
        padding: 3rem 1.5rem;
        margin-top: 4rem;
    }

    .sponsors-container {
        gap: 4rem;
    }

    .sponsor-logo {
        height: 42px;
        max-width: 130px;
    }

    footer {
        padding: 3rem 1.5rem;
        margin-top: 0;
    }

    footer p {
        font-size: 0.9rem;
    }

    /* Ensure no horizontal overflow */
    body {
        overflow-x: hidden;
        width: 100%;
    }

    * {
        max-width: 100%;
    }

    img, video, iframe {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .logo a {
        font-size: 1.25rem;
        letter-spacing: 2px;
    }

    .logo img {
        height: 34px;
    }

    header {
        padding: 1rem 0;
    }

    .hero {
        min-height: 85vh;
        padding: 1.5rem 1rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        letter-spacing: 4px;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }

    .hero-highlights {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }

    .album-title {
        font-size: 1.5rem;
        margin: 1rem 0;
    }

    .tagline {
        font-size: 0.9rem;
        padding: 0.35rem 0.85rem;
    }

    .album-status {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .btn {
        width: 100%;
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
        min-height: 44px; /* Better touch target */
    }

    .release-highlight {
        padding: 3rem 1rem 3rem;
        margin-bottom: 0;
    }

    .release-container {
        gap: 2rem;
    }

    .release-player {
        margin-top: 2.5rem;
    }

    .release-details h2 {
        font-size: 2.5rem;
        letter-spacing: 2px;
        margin: 0 0 0.25rem;
    }

    .release-description {
        font-size: 0.95rem;
    }

    .platform-links {
        gap: 0.75rem;
    }

    .highlights {
        padding: 3rem 1rem 3rem 1rem;
    }

    .highlights-container {
        gap: 1.5rem;
    }

    .highlight-card {
        padding: 1.5rem 1.25rem;
    }

    .highlight-card h3 {
        font-size: 1.35rem;
        margin-bottom: 0.75rem;
    }

    .highlight-card p {
        font-size: 0.9rem;
    }

    .media-feature {
        padding: 3rem 1rem 4rem;
    }

    .media-copy h2 {
        font-size: 1.75rem;
    }

    .newsletter {
        margin: 3rem auto 4rem;
        padding: 0 1rem;
    }

    .newsletter h2 {
        font-size: 2rem;
        margin: 0 0 0.5rem;
    }

    .newsletter > p {
        font-size: 0.95rem;
        margin: 0 0 1.25rem;
    }

    .store-page {
        padding: 3rem 1rem;
    }

    .store-page h1 {
        font-size: 3rem;
        margin-bottom: 2.5rem;
    }

    .store-page {
        padding: 3rem 1rem;
    }

    .store-page h1 {
        font-size: 3rem;
        margin-bottom: 2.5rem;
    }

    .store-items {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .store-item-image {
        height: 280px;
    }

    .store-item h3 {
        font-size: 1.25rem;
        margin: 1.5rem 1.25rem 0.75rem;
    }

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

    .store-item .btn {
        min-height: 44px;
        font-size: 0.95rem;
    }

    .gallery-container {
        grid-template-columns: 1fr;
    }

    .tour-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
        letter-spacing: 2px;
    }

    .tour-heading {
        gap: 0.75rem;
        margin-bottom: 2.5rem;
    }

    .tour-callouts {
        width: 100%;
    }

    .tour-cta {
        width: 100%;
        text-align: center;
    }

    .contact-page {
        padding: 0 0.75rem;
        margin: 2rem auto;
        max-width: 100%;
        box-sizing: border-box;
    }

    .contact-info {
        width: 100%;
        box-sizing: border-box;
    }

    .contact-section {
        padding: 1.25rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .contact-section h2 {
        font-size: 1.5rem;
    }

    .contact-section p {
        font-size: 0.95rem;
    }

    .mailing-list-section {
        padding: 1.5rem 1rem;
        margin-top: 2rem;
    }

    .mailing-list-section h2 {
        font-size: 1.75rem;
    }

    .mailing-list-section > p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .form-group input {
        padding: 0.85rem 0.95rem;
        font-size: 16px;
    }

    .tour-page {
        padding: 2rem 0.75rem;
    }

    .tour-heading {
        padding: 0 0.75rem;
    }

    .tour-title {
        font-size: 2.25rem;
    }

    .tour-subtitle {
        font-size: 0.95rem;
    }

    .tour-dates {
        padding: 0 0.5rem;
    }

    .tour-date {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 1.25rem 1rem;
    }

    .tour-date-text {
        font-size: 0.95rem;
        grid-column: 1;
    }

    .tour-location {
        grid-column: 1;
        font-size: 0.9rem;
    }

    .tour-venue {
        grid-column: 1;
        font-size: 0.9rem;
    }

    .tour-link {
        grid-column: 1;
        width: 100%;
        margin-top: 0.5rem;
        justify-self: stretch;
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        min-height: 44px;
    }

    footer {
        padding: 2rem 1rem;
        text-align: center;
    }

    footer p {
        font-size: 0.85rem;
    }

    .tour-date {
        padding: 1.25rem 1.25rem;
    }

    .sponsors-section {
        padding: 2.5rem 1rem;
        margin-top: 3rem;
    }

    .sponsors-container {
        gap: 2rem;
        padding: 0 1rem;
    }

    .sponsor-logo {
        height: 32px;
        max-width: 100px;
    }
}