:root {
    --color-plum: #1a1463;
    --color-plum-rgb: 26, 20, 99;
    --color-orange: #f37501;
    --color-orange-rgb: 243, 117, 1;
    --color-lavender: #b69ce6;
    --color-lavender-rgb: 182, 156, 230;
    --color-pink: #ecc9cd;
    --color-pink-rgb: 236, 201, 205;
    --color-teal: #01a7bc;
    --color-teal-rgb: 1, 167, 188;
    --color-yellow: #edc20e;
    --color-yellow-rgb: 237, 194, 14;
    --color-white: #fefefe;
    --color-white-rgb: 254, 254, 254;
    --header-height: 4.5rem;
}

/* Custom Font */
@font-face {
    font-family: 'WonderStrut';
    src: url('assets/font/WonderStrut.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

html,
body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'WonderStrut', sans-serif;
    line-height: 1.6;
    color: var(--color-plum);
    background: linear-gradient(135deg, var(--color-orange), var(--color-yellow), var(--color-lavender), var(--color-pink), var(--color-teal), var(--color-plum));
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    min-height: 100vh;
}

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

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

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

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(var(--color-white-rgb), 0.95);
    border-bottom: 3px solid var(--color-orange);
    transition: all 0.3s ease;
}

/* Clean header for homepage */
.header.homepage-clean {
    backdrop-filter: none;
    background: transparent;
    border-bottom: none;
}

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

.nav-logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-plum);
    letter-spacing: 3px;
    /* Funkier option (all-caps features): 
       font-size: 2.1rem;
       font-weight: 400;
       letter-spacing: 0;
    */
}

.nav-logo-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--color-plum);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

/* Navigation styling for clean homepage header */
.header.homepage-clean .nav-link {
    color: var(--color-white);
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(var(--color-plum-rgb), 0.8);
}

.header.homepage-clean .nav-logo h1 {
    color: var(--color-white);
    text-shadow: 2px 2px 4px rgba(var(--color-plum-rgb), 0.8);
}

.header.homepage-clean .nav-toggle span {
    background: var(--color-white);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-orange);
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-plum);
    transition: 0.3s;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .nav-links {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: rgba(var(--color-plum-rgb), 0.98) !important;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 2rem;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 9999 !important;
        opacity: 0;
        visibility: hidden;
    }

    .nav-links.active {
        opacity: 1 !important;
        visibility: visible !important;
    }

    .nav-link {
        font-size: 1.5rem;
        color: var(--color-white);
        font-weight: 600;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .nav-link::after {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    /* Hamburger animation */
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 0 2rem 2rem;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg,
            rgba(var(--color-orange-rgb), 0.7),
            rgba(var(--color-lavender-rgb), 0.65),
            rgba(var(--color-pink-rgb), 0.7),
            rgba(var(--color-teal-rgb), 0.65),
            rgba(var(--color-plum-rgb), 0.7)),
        rgba(var(--color-plum-rgb), 0.6);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: -1;
}

/* Hero Social Links */
.hero-social-links {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 10;
}

.social-link {
    width: 40px;
    height: 40px;
    color: rgba(var(--color-white-rgb), 0.8);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: rgba(var(--color-plum-rgb), 0.3);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(var(--color-white-rgb), 0.2);
}

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

.social-link:hover {
    color: var(--color-white);
    background: rgba(29, 185, 84, 0.8);
    transform: scale(1.1);
    border-color: rgba(29, 185, 84, 0.5);
    box-shadow: 0 5px 15px rgba(29, 185, 84, 0.3);
}

.social-link:nth-child(2):hover {
    background: rgba(225, 48, 108, 0.8);
    border-color: rgba(225, 48, 108, 0.5);
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.3);
}

.social-link:nth-child(3):hover {
    background: rgba(255, 0, 0, 0.8);
    border-color: rgba(255, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.social-link:nth-child(4):hover {
    background: rgba(var(--color-orange-rgb), 0.8);
    border-color: rgba(var(--color-orange-rgb), 0.5);
    box-shadow: 0 5px 15px rgba(var(--color-orange-rgb), 0.3);
}

.social-link:nth-child(5):hover {
    background: rgba(98, 156, 199, 0.8);
    border-color: rgba(98, 156, 199, 0.5);
    box-shadow: 0 5px 15px rgba(98, 156, 199, 0.3);
}

.hero-content {
    max-width: 800px;
    text-align: center;
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 0.9;
    margin-bottom: 2rem;
    overflow: hidden;
}

.hero-title span {
    display: block;
    opacity: 0;
    transform: translateY(100px);
    animation: slideUp 0.8s ease forwards;
}

.line-1 {
    color: var(--color-orange);
    animation-delay: 0.2s;
}

.line-2 {
    color: var(--color-lavender);
    animation-delay: 0.4s;
}

.line-3 {
    color: var(--color-pink);
    animation-delay: 0.6s;
}

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

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: 3rem;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(var(--color-plum-rgb), 0.4);
    opacity: 0;
    animation: fadeIn 0.8s ease forwards 0.8s;
}

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

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards 1s;
}

.btn {
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--color-orange);
    color: var(--color-plum);
    border: 2px solid var(--color-orange);
    font-weight: 600;
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-plum);
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    z-index: 20;
    margin-bottom: 2rem;
}

.scroll-arrow {
    text-align: center;
    cursor: pointer;
}

.scroll-label {
    font-size: 0.9rem;
    color: var(--color-white);
    text-shadow: 1px 1px 2px rgba(var(--color-plum-rgb), 0.6);
    display: inline-block;
    margin-bottom: 0.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    background: rgba(var(--color-plum-rgb), 0.4);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(var(--color-white-rgb), 0.2);
    animation: bounce 2s infinite;
}

.arrow-down {
    font-size: 3rem;
    color: var(--color-white);
    text-shadow: 2px 2px 4px rgba(var(--color-plum-rgb), 0.8);
    animation: bounce 2s infinite;
    display: block;
    transition: all 0.3s ease;
}

.scroll-arrow:hover .arrow-down {
    color: var(--color-orange);
    transform: scale(1.2);
}

.scroll-arrow:hover .scroll-label {
    color: var(--color-orange);
    background: rgba(var(--color-orange-rgb), 0.2);
    border-color: rgba(var(--color-orange-rgb), 0.4);
    transform: scale(1.05);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Vinyl Animation */
.hero-visual {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    z-index: 10;
}

.vinyl-animation {
    position: relative;
    width: 180px;
    height: 180px;
}

.vinyl {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #1a1a1a 20%, #333 25%, #1a1a1a 30%, #333 35%, #1a1a1a 40%);
    border-radius: 50%;
    animation: spin 3s linear infinite;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
}



/* Playing state styles */
.vinyl.playing {
    box-shadow:
        0 20px 40px rgba(var(--color-orange-rgb), 0.4),
        0 0 30px rgba(var(--color-orange-rgb), 0.3),
        inset 0 0 20px rgba(var(--color-orange-rgb), 0.1);
    transform: scale(1.05);
}

.vinyl.playing::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: linear-gradient(45deg, transparent, rgba(var(--color-orange-rgb), 0.3), transparent);
    animation: vinyl-glow 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes vinyl-glow {

    0%,
    100% {
        opacity: 0.5;
        transform: rotate(0deg);
    }

    50% {
        opacity: 1;
        transform: rotate(180deg);
    }
}

.vinyl-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--color-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid #333;
    transition: all 0.3s ease;
}

.vinyl.playing .vinyl-center {
    background: linear-gradient(45deg, var(--color-orange), var(--color-lavender));
    border-color: var(--color-orange);
    box-shadow: 0 0 15px rgba(var(--color-orange-rgb), 0.6);
}

.vinyl-center .ep-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.vinyl-center::before {
    content: '♪';
    color: white;
    font-size: 1.5rem;
    display: none;
}

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

    to {
        transform: rotate(360deg);
    }
}

/* News Section */
.news {
    padding: 4rem 0;
    scroll-margin-top: 80px;
    background: rgba(var(--color-white-rgb), 0.95);
    backdrop-filter: blur(10px);
}

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

.card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(var(--color-plum-rgb), 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 200px;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(var(--color-plum-rgb), 0.25);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.card-1::before {
    background: var(--color-orange);
}

.card-2::before {
    background: var(--color-lavender);
}

.card-3::before {
    background: var(--color-pink);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.card-1 h3 {
    color: var(--color-orange);
}

.card-2 h3 {
    color: var(--color-lavender);
}

.card-3 h3 {
    color: var(--color-pink);
}

.card p {
    color: #6c6c6c;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-style: italic;
    line-height: 1.4;
    flex-grow: 1;
}

.news-link {
    display: inline-block;
    color: var(--color-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    margin-top: auto;
}

.news-link:hover {
    color: var(--color-orange);
    border-bottom-color: var(--color-orange);
    transform: translateX(3px);
}

.card-accent {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
}

/* Section Subtitle */
.section-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    margin: 3rem 0 1.5rem;
    color: var(--color-plum);
}

/* Video Grid Styles */
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.video-card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(var(--color-plum-rgb), 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.video-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.video-card-1::before {
    background: linear-gradient(90deg, var(--color-teal), var(--color-lavender));
}

.video-card-2::before {
    background: linear-gradient(90deg, var(--color-orange), var(--color-yellow));
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(var(--color-plum-rgb), 0.25);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Quote Section */
.quote {
    padding: 6rem 0;
    background: rgba(var(--color-plum-rgb), 0.9);
    color: var(--color-white);
    text-align: center;
}

.quote-text {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 300;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.3;
}

/* Games Section */
.games {
    padding: 6rem 0;
    background: rgba(var(--color-white-rgb), 0.95);
    backdrop-filter: blur(10px);
}

.games .section-title {
    color: var(--color-plum);
}

.games-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #6c6c6c;
    margin-bottom: 3rem;
    margin-top: -1.5rem;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.game-card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 30px rgba(var(--color-plum-rgb), 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
}

.game-card-1::before {
    background: linear-gradient(90deg, var(--color-orange), var(--color-yellow));
}

.game-card-2::before {
    background: linear-gradient(90deg, var(--color-lavender), var(--color-teal));
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(var(--color-plum-rgb), 0.25);
}

.game-screenshot {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(var(--color-lavender-rgb), 0.2), rgba(var(--color-teal-rgb), 0.2));
    padding: 1rem;
}

.game-screenshot img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.game-card:hover .game-screenshot img {
    transform: scale(1.05);
}

.game-info {
    padding: 1.5rem 2rem 2rem;
    text-align: center;
}

.game-info h3 {
    font-size: 1.4rem;
    color: var(--color-plum);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.game-cta {
    display: inline-block;
    color: var(--color-orange);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.game-card:hover .game-cta {
    color: var(--color-lavender);
    transform: translateX(5px);
}

.game-card-1:hover .game-cta {
    color: var(--color-orange);
}

.game-card-2:hover .game-cta {
    color: var(--color-orange);
}

/* Music Preview Section */
.music-preview {
    padding: 6rem 0;
    background: rgba(var(--color-white-rgb), 0.95);
}

.music-preview h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--color-plum);
}

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

.music-item {
    text-align: center;
    background: var(--color-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(var(--color-plum-rgb), 0.1);
    transition: transform 0.3s ease;
}

.music-item:hover {
    transform: translateY(-5px);
}

.music-placeholder {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: linear-gradient(45deg, var(--color-orange), var(--color-lavender));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.music-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--color-plum);
}

.music-item p {
    color: #6c6c6c;
}

/* Footer */
.footer {
    background: var(--color-plum);
    color: var(--color-white);
    padding: 3rem 0;
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-orange);
}

.footer-brand p {
    color: #bdbebe;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    color: #bdbebe;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--color-orange);
}

/* Contact page starry background */
.contact-page {
    background: #6366f1;
    position: relative;
    overflow-x: hidden;
}

.contact-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20px 30px, #fbbf24, transparent),
        radial-gradient(2px 2px at 40px 70px, #f59e0b, transparent),
        radial-gradient(1px 1px at 90px 40px, #fbbf24, transparent),
        radial-gradient(1px 1px at 130px 80px, #f59e0b, transparent),
        radial-gradient(2px 2px at 160px 30px, #fbbf24, transparent),
        radial-gradient(1px 1px at 200px 90px, #f59e0b, transparent),
        radial-gradient(2px 2px at 240px 50px, #fbbf24, transparent),
        radial-gradient(1px 1px at 280px 10px, #f59e0b, transparent),
        radial-gradient(1px 1px at 320px 70px, #fbbf24, transparent),
        radial-gradient(2px 2px at 360px 40px, #f59e0b, transparent),
        radial-gradient(1px 1px at 400px 90px, #fbbf24, transparent),
        radial-gradient(2px 2px at 440px 20px, #f59e0b, transparent),
        radial-gradient(1px 1px at 480px 60px, #fbbf24, transparent),
        radial-gradient(1px 1px at 520px 85px, #f59e0b, transparent),
        radial-gradient(2px 2px at 560px 15px, #fbbf24, transparent),
        radial-gradient(1px 1px at 600px 75px, #f59e0b, transparent);
    background-repeat: repeat;
    background-size: 600px 100px;
    animation: twinkle 4s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 1;
}

/* Tour page starry background */
.tour-page {
    background: #6366f1;
    position: relative;
    overflow-x: hidden;
}

.tour-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20px 30px, #fbbf24, transparent),
        radial-gradient(2px 2px at 40px 70px, #f59e0b, transparent),
        radial-gradient(1px 1px at 90px 40px, #fbbf24, transparent),
        radial-gradient(1px 1px at 130px 80px, #f59e0b, transparent),
        radial-gradient(2px 2px at 160px 30px, #fbbf24, transparent),
        radial-gradient(1px 1px at 200px 90px, #f59e0b, transparent),
        radial-gradient(2px 2px at 240px 50px, #fbbf24, transparent),
        radial-gradient(1px 1px at 280px 10px, #f59e0b, transparent),
        radial-gradient(1px 1px at 320px 70px, #fbbf24, transparent),
        radial-gradient(2px 2px at 360px 40px, #f59e0b, transparent),
        radial-gradient(1px 1px at 400px 90px, #fbbf24, transparent),
        radial-gradient(2px 2px at 440px 20px, #f59e0b, transparent),
        radial-gradient(1px 1px at 480px 60px, #fbbf24, transparent),
        radial-gradient(1px 1px at 520px 85px, #f59e0b, transparent),
        radial-gradient(2px 2px at 560px 15px, #fbbf24, transparent),
        radial-gradient(1px 1px at 600px 75px, #f59e0b, transparent);
    background-repeat: repeat;
    background-size: 600px 100px;
    animation: twinkle 4s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 1;
}

@keyframes twinkle {
    0% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

/* About, Merch, Games & Privacy page starry background */
.about-page,
.merch-page,
.games-page,
.privacy-page {
    background: #6366f1;
    position: relative;
    overflow-x: hidden;
}

.about-page::before,
.merch-page::before,
.games-page::before,
.privacy-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20px 30px, #fbbf24, transparent),
        radial-gradient(2px 2px at 40px 70px, #f59e0b, transparent),
        radial-gradient(1px 1px at 90px 40px, #fbbf24, transparent),
        radial-gradient(1px 1px at 130px 80px, #f59e0b, transparent),
        radial-gradient(2px 2px at 160px 30px, #fbbf24, transparent),
        radial-gradient(1px 1px at 200px 90px, #f59e0b, transparent),
        radial-gradient(2px 2px at 240px 50px, #fbbf24, transparent),
        radial-gradient(1px 1px at 280px 10px, #f59e0b, transparent),
        radial-gradient(1px 1px at 320px 70px, #fbbf24, transparent),
        radial-gradient(2px 2px at 360px 40px, #f59e0b, transparent),
        radial-gradient(1px 1px at 400px 90px, #fbbf24, transparent),
        radial-gradient(2px 2px at 440px 20px, #f59e0b, transparent),
        radial-gradient(1px 1px at 480px 60px, #fbbf24, transparent),
        radial-gradient(1px 1px at 520px 85px, #f59e0b, transparent),
        radial-gradient(2px 2px at 560px 15px, #fbbf24, transparent),
        radial-gradient(1px 1px at 600px 75px, #f59e0b, transparent);
    background-repeat: repeat;
    background-size: 600px 100px;
    animation: twinkle 4s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 1;
}

@keyframes verticalGradientShift {

    0%,
    100% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 0% 100%;
    }
}

/* Page Headers */
.main-content {
    margin-top: var(--header-height, 6rem);
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(var(--color-plum-rgb), 0.4);
}

.page-subtitle {
    font-size: 1.5rem;
    color: var(--color-white);
    text-align: center;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(var(--color-plum-rgb), 0.4);
}

.about-hero,
.tour-hero,
.contact-hero,
.games-hero {
    padding: 4rem 0;
    text-align: center;
}

/* Games Page Styles */
.games-hero {
    position: relative;
    z-index: 2;
}

.games-content {
    padding: 4rem 0;
    background: rgba(255, 245, 238, 0.95);
}

.games-content .games-grid {
    max-width: 1000px;
}

.games-content .game-info {
    padding: 1.5rem 2rem 2rem;
}

.game-description {
    color: #6c6c6c;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.games-cta-section {
    padding: 4rem 0;
    background: rgba(45, 27, 105, 0.05);
}

.games-cta-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(45, 27, 105, 0.1);
}

.games-cta-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-plum);
}

.games-cta-box p {
    color: #6c6c6c;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.games-social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.about-hero {
    background: #1a1a1a url("assets/images/about/new_about_photo.png") center 30% / cover no-repeat;
    margin-top: 0;
    padding: 4rem 0;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-plum);
}

/* About Page Styles */
.about-story {
    padding: 4rem 0;
    background: rgba(255, 245, 238, 0.95);
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--color-plum);
}

.story-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #6c6c6c;
}

.story-highlight {
    background: var(--color-orange);
    color: var(--color-plum);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
}

.story-highlight h3 {
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 400;
}

.band-members {
    padding: 4rem 0;
    background: rgba(45, 27, 105, 0.05);
}

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

.member-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(45, 27, 105, 0.15);
    transition: transform 0.3s ease;
}

.member-card:hover {
    transform: translateY(-10px);
}

.member-photo {
    width: 180px;
    height: 180px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 4px solid var(--color-orange);
    padding: 0;
}

.member-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
    background-color: #f0f0f0;
    opacity: 0;
    animation: fadeInImage 0.3s ease forwards;
}

@keyframes fadeInImage {
    to {
        opacity: 1;
    }
}

/* Progressive image loading enhancements */
.progressive-image {
    position: relative;
}

.progressive-image.hires-loaded {
    /* Add a subtle glow when high-res version loads */
    box-shadow: 0 0 20px rgba(var(--color-orange-rgb), 0.2);
}

/* Smooth hover effects work better with high-res images */
.member-card:hover .progressive-image.hires-loaded {
    transform: scale(1.15);
    box-shadow: 0 0 25px rgba(var(--color-orange-rgb), 0.4);
}

/* Specific positioning for Chris's photo to show more of his face */
.member-image[src*="chris-lawrence"] {
    object-position: center 10%;
}

.member-card:hover .member-image {
    transform: scale(1.1);
}

/* Fallback styling when images don't load */
.member-image::before {
    content: '👤';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: var(--color-white);
}

.member-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--color-plum);
}

.member-role {
    color: #6c6c6c;
    margin-bottom: 1rem;
    font-weight: 500;
}

.member-social {
    color: var(--color-orange);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding: 0 0.15rem;
    transition: color 0.3s ease;
}

.member-social:hover {
    color: var(--color-orange);
}

.member-social::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: var(--color-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.member-social:hover::after {
    transform: scaleX(1);
}

.band-vibe {
    padding: 4rem 0;
    background: rgba(255, 245, 238, 0.95);
}

.vibe-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--color-plum);
}

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

.vibe-item {
    text-align: center;
    background: var(--color-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(45, 27, 105, 0.1);
}

.vibe-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.vibe-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--color-plum);
}

.vibe-item p {
    color: #6c6c6c;
}

/* Tour Page Styles */
.upcoming-shows {
    padding: 4rem 0;
    background: rgba(255, 245, 238, 0.95);
}

.show-list {
    max-width: 900px;
    margin: 0 auto;
}

.show-item {
    display: flex;
    align-items: center;
    background: var(--color-white);
    margin-bottom: 1.5rem;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(45, 27, 105, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.show-item:hover {
    transform: translateY(-3px);
}

.show-item.featured {
    border: 3px solid var(--color-orange);
}

.show-item.sold-out {
    opacity: 0.7;
}

.show-date {
    text-align: center;
    margin-right: 2rem;
    min-width: 80px;
}

.show-date .month {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-orange);
}

.show-date .day {
    display: block;
    font-weight: 700;
    font-size: 2rem;
    color: var(--color-plum);
}

.show-date .year {
    display: block;
    font-size: 0.9rem;
    color: #6c6c6c;
}

.show-details {
    flex: 1;
}

.show-details h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--color-plum);
}

.show-type {
    color: #6c6c6c;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.show-status {
    color: var(--color-lavender);
    font-weight: 600;
}

.show-action {
    margin-left: 2rem;
}

.btn-disabled {
    background: #bdbebe !important;
    color: #6c6c6c !important;
    cursor: not-allowed;
    border: 2px solid #bdbebe !important;
}

.featured-badge,
.sold-out-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--color-orange);
    color: var(--color-plum);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.sold-out-badge {
    background: #bdbebe;
    color: #6c6c6c;
}

.tour-info {
    padding: 4rem 0;
    background: rgba(45, 27, 105, 0.05);
}

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

.highlight {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(45, 27, 105, 0.1);
}

.highlight h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-plum);
}

.highlight p {
    color: #6c6c6c;
    line-height: 1.6;
}

.mailing-list {
    padding: 4rem 0;
    background: rgba(255, 245, 238, 0.95);
}

.signup-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(45, 27, 105, 0.1);
}

.signup-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-plum);
}

.signup-box p {
    color: #6c6c6c;
    margin-bottom: 2rem;
}

.signup-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.email-input {
    padding: 1rem;
    border: 2px solid #bdbebe;
    border-radius: 25px;
    font-size: 1rem;
    min-width: 300px;
    outline: none;
    transition: border-color 0.3s ease;
    background: var(--color-white);
}

.email-input:focus {
    border-color: var(--color-orange);
}

/* Contact Page Styles */
.contact-content {
    padding: 4rem 0;
    background: rgba(255, 245, 238, 0.95);
}

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

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-plum);
}

.contact-description {
    color: #6c6c6c;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: rgba(var(--color-orange-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-orange);
    transition: all 0.3s ease;
}

.contact-method:hover .method-icon {
    background: var(--color-orange);
    color: var(--color-white);
    transform: scale(1.1);
}

.method-icon svg {
    width: 24px;
    height: 24px;
}

.method-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: var(--color-plum);
}

.method-details p {
    color: #6c6c6c;
    font-size: 0.9rem;
}

.contact-form-container {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(45, 27, 105, 0.1);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--color-plum);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-plum);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #bdbebe;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s ease;
    background: var(--color-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-orange);
}

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

.form-submit {
    width: 100%;
    margin-top: 1rem;
}

.social-media {
    padding: 4rem 0;
    background: rgba(45, 27, 105, 0.05);
}

.social-media .section-title {
    color: var(--color-white);
    text-shadow: 1px 1px 2px rgba(var(--color-plum-rgb), 0.4);
}

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

.social-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 15px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 5px 20px rgba(45, 27, 105, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.social-card:hover {
    transform: translateY(-5px);
}

.social-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: rgba(var(--color-plum-rgb), 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-plum);
    transition: all 0.3s ease;
}

.social-card:hover .social-icon {
    background: var(--color-plum);
    color: var(--color-white);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 15px rgba(var(--color-plum-rgb), 0.2);
}

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

.social-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--color-plum);
}

.social-card p {
    color: #6c6c6c;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.social-handle {
    color: var(--color-orange);
    font-weight: 600;
}

.newsletter-signup {
    padding: 4rem 0;
    background: rgba(255, 245, 238, 0.95);
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-plum);
}

.newsletter-content p {
    color: #6c6c6c;
    margin-bottom: 2rem;
}

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

.newsletter-input {
    padding: 1rem;
    border: 2px solid #bdbebe;
    border-radius: 25px;
    font-size: 1rem;
    min-width: 300px;
    outline: none;
    transition: border-color 0.3s ease;
    background: var(--color-white);
}

.newsletter-input:focus {
    border-color: var(--color-orange);
}

/* Merch Page Styles */
.merch-header {
    position: relative;
    padding: 5rem 0 3.5rem;
    overflow: hidden;
}

.merch-header::before,
.merch-header::after {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.75;
    z-index: 0;
}

.merch-header::before {
    top: -120px;
    left: -80px;
    background: rgba(var(--color-orange-rgb), 0.6);
}

.merch-header::after {
    bottom: -140px;
    right: -60px;
    background: rgba(var(--color-teal-rgb), 0.55);
}

.merch-header-shell {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.merch-header-content {
    flex: 1 1 320px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.merch-title-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 560px;
}

.drop-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.95rem;
    border-radius: 999px;
    letter-spacing: 3px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(var(--color-plum-rgb), 0.3);
    color: var(--color-white);
    text-transform: uppercase;
}

.merch-header .page-title {
    margin-bottom: 0;
    text-align: left;
}

.merch-subtitle {
    color: rgba(var(--color-white-rgb), 0.9);
    font-size: 1.05rem;
    line-height: 1.7;
}

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

.merch-tag {
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(var(--color-white-rgb), 0.15);
    border: 1px solid rgba(var(--color-white-rgb), 0.35);
    color: var(--color-white);
}

.merch-header-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}

.merch-buy-btn {
    padding: 0.95rem 2.6rem;
    letter-spacing: 2px;
    font-weight: 600;
    box-shadow: 0 18px 35px rgba(var(--color-lavender-rgb), 0.35);
}

.ship-note {
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: rgba(var(--color-white-rgb), 0.75);
    text-transform: uppercase;
}

.merch-header-visual {
    position: relative;
    flex: 1 1 260px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1.5rem;
    pointer-events: none;
}

.merch-stack {
    position: relative;
    width: min(240px, 90%);
    border-radius: 24px;
    background: linear-gradient(160deg, rgba(var(--color-white-rgb), 0.95) 10%, rgba(var(--color-orange-rgb), 0.12) 55%, rgba(var(--color-lavender-rgb), 0.18) 100%);
    padding: 1.5rem;
    box-shadow: 0 25px 50px rgba(var(--color-plum-rgb), 0.28);
    border: 1px solid rgba(255, 255, 255, 0.4);
    overflow: hidden;
    transform-origin: center;
    --stack-transform: rotate(0deg);
    transform: translateY(30px);
    opacity: 0;
    animation: merchFloat 0.8s ease forwards;
}

.merch-stack img {
    width: 100%;
    display: block;
    filter: drop-shadow(0 20px 25px rgba(var(--color-plum-rgb), 0.3));
}

.merch-stack--primary {
    --stack-transform: rotate(-6deg) translateY(-6px);
    animation-delay: 0.1s;
}

.merch-stack--secondary {
    --stack-transform: rotate(11deg) translate(18px, 38px);
    opacity: 0.8;
    animation-delay: 0.22s;
}

.merch-header-glow {
    position: absolute;
    bottom: -120px;
    right: 10%;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(var(--color-lavender-rgb), 0.45) 0%, transparent 60%);
    filter: blur(10px);
    z-index: -1;
}

.merch-products {
    position: relative;
    padding: 4.5rem 0 6.5rem;
    background: rgba(255, 245, 238, 0.92);
    overflow: hidden;
}

.merch-products::before,
.merch-products::after {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.7;
    z-index: 0;
}

.merch-products::before {
    top: -160px;
    right: 10%;
    background: rgba(var(--color-orange-rgb), 0.45);
}

.merch-products::after {
    bottom: -200px;
    left: 12%;
    background: rgba(var(--color-lavender-rgb), 0.4);
}

.merch-products .container {
    position: relative;
    z-index: 1;
}

.section-lede {
    text-align: center;
    color: #6c6c6c;
    max-width: 640px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
}

.product-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: linear-gradient(var(--color-white), var(--color-white)) padding-box,
        linear-gradient(135deg, rgba(var(--color-orange-rgb), 0.8), rgba(var(--color-lavender-rgb), 0.8)) border-box;
    border: 1px solid transparent;
    box-shadow: 0 22px 45px rgba(var(--color-plum-rgb), 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card::after {
    content: '';
    position: absolute;
    top: -45%;
    left: -30%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(var(--color-lavender-rgb), 0.18), transparent 65%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(var(--color-plum-rgb), 0.25);
}

.product-card:hover::after {
    opacity: 1;
}

@keyframes merchFloat {
    to {
        transform: var(--stack-transform);
        opacity: 1;
    }
}

.product-media {
    position: relative;
    padding: 2rem 1.6rem;
    background: linear-gradient(150deg, rgba(var(--color-lavender-rgb), 0.25), rgba(var(--color-teal-rgb), 0.3));
    display: grid;
    place-items: center;
    min-height: 310px;
}

.product-media::after {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: 18px;
    border: 1px dashed rgba(var(--color-white-rgb), 0.4);
    pointer-events: none;
}

.product-image {
    width: min(340px, 92%);
    filter: drop-shadow(0 18px 25px rgba(var(--color-plum-rgb), 0.25));
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.product-image--back {
    position: absolute;
    opacity: 0;
    transform: translateY(25px) scale(0.95);
    pointer-events: none;
}

.product-card:hover .product-image--front,
.product-card:focus-within .product-image--front {
    opacity: 0;
    transform: translateY(-12px) scale(0.96);
}

.product-card:hover .product-image--back,
.product-card:focus-within .product-image--back {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.product-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(var(--color-plum-rgb), 0.92);
    color: var(--color-white);
    font-size: 0.75rem;
    letter-spacing: 2px;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    text-transform: uppercase;
}

.product-tag.accent {
    background: linear-gradient(135deg, var(--color-orange), var(--color-lavender));
}

.product-content {
    padding: 2.4rem 2.1rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    flex: 1;
}

.product-description {
    color: #6c6c6c;
    line-height: 1.6;
}

.product-features {
    list-style: none;
    display: grid;
    gap: 0.65rem;
    color: var(--color-plum);
    font-weight: 500;
}

.product-features li::before {
    content: '★';
    color: var(--color-orange);
    margin-right: 0.6rem;
    font-size: 0.8rem;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    gap: 1rem;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-plum);
}

.product-btn {
    flex-shrink: 0;
}

/* Medium breakpoint for merch header shirts */
@media (max-width: 1200px) and (min-width: 769px) {
    .merch-header-visual {
        flex-wrap: nowrap;
        gap: 1rem;
    }
    
    .merch-stack {
        width: min(180px, 45%);
        padding: 1rem;
    }
    
    .merch-stack--primary {
        --stack-transform: rotate(-4deg) translateY(-4px);
    }
    
    .merch-stack--secondary {
        --stack-transform: rotate(8deg) translate(10px, 25px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Mobile styles are now handled above in the Mobile Navigation Styles section */

    .hero {
        padding: 0 1rem 2rem;
    }

    .hero-social-links {
        bottom: 1.5rem;
        left: 1.5rem;
        gap: 0.8rem;
    }

    .social-link {
        width: 35px;
        height: 35px;
    }

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

    .hero-scroll-indicator {
        margin-bottom: 1rem;
    }

    .scroll-label {
        font-size: 0.8rem;
        margin-bottom: 0.1rem;
        padding: 0.25rem 0.6rem;
        letter-spacing: 1.5px;
    }

    .arrow-down {
        font-size: 2.5rem;
    }

    /* Keep vinyl record at bottom right on mobile, just smaller */
    .hero-visual {
        position: absolute;
        bottom: 1.5rem;
        right: 1rem;
        margin-bottom: 0;
    }

    .vinyl-animation {
        width: 80px;
        height: 80px;
    }

    .vinyl-center {
        width: 30px;
        height: 30px;
    }

    /* ===== HOMEPAGE NEWS SECTION MOBILE IMPROVEMENTS ===== */
    .news {
        padding: 2.5rem 0;
    }

    .news .section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .highlight-cards {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .card {
        padding: 1.5rem;
        min-height: auto;
    }

    .card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.4rem;
    }

    .card p {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .news-link {
        font-size: 0.85rem;
    }

    /* Video Grid Mobile */
    .section-subtitle {
        font-size: 1.4rem;
        margin: 2rem 0 1rem;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .video-card {
        border-radius: 16px;
    }

    /* Quote Section Mobile */
    .quote {
        padding: 3rem 0;
    }

    .quote-text {
        font-size: 1.2rem;
        line-height: 1.5;
    }

    /* Games Section Mobile */
    .games {
        padding: 3rem 0;
    }

    .games .section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .games-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        margin-top: -0.5rem;
    }

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

    .game-card {
        border-radius: 16px;
    }

    .game-screenshot {
        padding: 0.75rem;
    }

    .game-screenshot img {
        height: 160px;
        border-radius: 10px;
    }

    .game-info {
        padding: 1rem 1.5rem 1.5rem;
    }

    .game-info h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .game-cta {
        font-size: 0.9rem;
    }

    /* Music Preview Section Mobile */
    .music-preview {
        padding: 2.5rem 0;
    }

    .music-preview h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .music-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 1.5rem;
    }

    .music-item {
        padding: 1.5rem;
    }

    .music-placeholder {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .music-item h4 {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }

    .music-item p {
        font-size: 0.9rem;
    }

    /* Footer Mobile */
    .footer {
        padding: 2rem 0;
    }

    .footer-brand h3 {
        font-size: 1.3rem;
        margin-bottom: 0.25rem;
    }

    .footer-brand p {
        font-size: 0.9rem;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .footer-link {
        font-size: 0.85rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .footer-content {
        text-align: center;
        flex-direction: column;
    }

    /* ===== ABOUT PAGE - MEET THE BAND MOBILE IMPROVEMENTS ===== */
    .about-hero {
        padding: 2.5rem 0;
    }

    .about-story {
        padding: 2.5rem 0;
    }

    .story-content h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .story-text {
        font-size: 1.05rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    .story-highlight {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .story-highlight h3 {
        font-size: 1.2rem;
    }

    .band-members {
        padding: 2.5rem 0;
    }

    .band-members .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .members-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .member-card {
        padding: 1.25rem;
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto auto;
        align-items: center;
        text-align: left;
        gap: 0.25rem 1rem;
        overflow: hidden;
    }

    .member-card:hover {
        transform: none;
    }

    .member-photo {
        width: 80px;
        height: 80px;
        margin: 0;
        flex-shrink: 0;
        border-width: 3px;
        grid-row: 1 / 4;
        grid-column: 1;
    }

    .member-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0;
        grid-column: 2;
        grid-row: 1;
    }

    .member-role {
        margin-bottom: 0;
        font-size: 0.85rem;
        grid-column: 2;
        grid-row: 2;
    }

    .member-social {
        font-size: 0.8rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        display: block;
        grid-column: 2;
        grid-row: 3;
    }

    .band-vibe {
        padding: 2.5rem 0;
    }

    .vibe-content h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .vibe-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .vibe-item {
        padding: 1.25rem;
    }

    .vibe-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .vibe-item h4 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    .vibe-item p {
        font-size: 0.85rem;
    }

    /* ===== TOUR PAGE MOBILE IMPROVEMENTS ===== */
    .tour-hero {
        padding: 2.5rem 0;
    }

    .upcoming-shows {
        padding: 2.5rem 0;
    }

    .upcoming-shows .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .show-list {
        padding: 0 0.5rem;
    }

    .show-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 2rem 1.5rem;
        margin-bottom: 1.25rem;
    }

    .show-item.featured,
    .show-item.sold-out {
        padding-top: 2.5rem;
    }

    .show-date {
        margin-right: 0;
        min-width: auto;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .show-date .month {
        font-size: 1rem;
    }

    .show-date .day {
        font-size: 1.8rem;
    }

    .show-date .year {
        font-size: 0.85rem;
    }

    .show-details h3 {
        font-size: 1.15rem;
        margin-bottom: 0.4rem;
    }

    .show-type {
        font-size: 0.9rem;
    }

    .show-status {
        font-size: 0.9rem;
    }

    .show-action {
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .show-action .btn {
        padding: 0.85rem 2rem;
        font-size: 0.85rem;
        width: 100%;
        max-width: 220px;
    }

    .featured-badge,
    .sold-out-badge {
        top: -8px;
        right: 50%;
        transform: translateX(50%);
        font-size: 0.7rem;
        padding: 0.25rem 0.8rem;
    }

    .tour-info {
        padding: 2.5rem 0;
    }

    .tour-highlights {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .highlight {
        padding: 1.5rem;
    }

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

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

    .mailing-list {
        padding: 2.5rem 0;
    }

    .signup-box {
        padding: 2rem 1.5rem;
    }

    .signup-box h2 {
        font-size: 1.6rem;
    }

    .signup-box p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    /* ===== CONTACT PAGE MOBILE IMPROVEMENTS ===== */
    .contact-hero {
        padding: 2.5rem 0;
    }

    .contact-content {
        padding: 2.5rem 0;
    }

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

    .contact-info h2 {
        font-size: 1.6rem;
        margin-bottom: 0.75rem;
    }

    .contact-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .contact-methods {
        gap: 1rem;
    }

    .contact-method {
        gap: 0.85rem;
    }

    .method-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--color-orange);
    }

    .method-icon svg {
        width: 24px;
        height: 24px;
    }

    .method-details h4 {
        font-size: 1rem;
    }

    .method-details p {
        font-size: 0.85rem;
    }

    .contact-form-container {
        padding: 1.5rem;
    }

    .contact-form h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

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

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

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 0.95rem;
    }

    .social-media {
        padding: 2.5rem 0;
    }

    .social-media .section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .social-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .social-card {
        padding: 1.25rem;
    }

    .social-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.75rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

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

    .social-card h4 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .social-card p {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
        display: none;
    }

    .social-handle {
        font-size: 0.8rem;
    }

    .newsletter-signup {
        padding: 2.5rem 0;
    }

    .newsletter-content h2 {
        font-size: 1.6rem;
        margin-bottom: 0.75rem;
    }

    .newsletter-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .signup-form,
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }

    .email-input,
    .newsletter-input {
        min-width: 250px;
        width: 100%;
        max-width: 320px;
    }

    /* ===== MERCH PAGE MOBILE IMPROVEMENTS ===== */
    .merch-header {
        padding: 2rem 0 1rem;
    }

    .merch-header-shell {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .merch-header-content {
        align-items: center;
        text-align: center;
        gap: 0.75rem;
    }

    .merch-title-group {
        align-items: center;
        gap: 0.75rem;
    }

    .drop-badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.75rem;
        letter-spacing: 2px;
    }

    .merch-header .page-title {
        text-align: center;
        font-size: 2.5rem;
    }

    .merch-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .merch-tags {
        justify-content: center;
        gap: 0.4rem;
    }

    .merch-tag {
        font-size: 0.65rem;
        padding: 0.3rem 0.7rem;
        letter-spacing: 0.5px;
    }

    .merch-header-actions {
        align-items: center;
        width: 100%;
        gap: 0.5rem;
    }

    .merch-buy-btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 0.85rem 2rem;
    }

    .ship-note {
        text-align: center;
        font-size: 0.75rem;
    }

    .merch-header-visual {
        justify-content: center;
        min-height: auto !important;
        padding: 0 !important;
        margin: 0 !important;
        flex: 0 0 auto;
        width: 100%;
        display: flex;
        flex-direction: row;
        gap: 0.75rem;
    }

    .merch-stack {
        width: 100px;
        padding: 0.5rem;
        --stack-transform: none !important;
        margin: 0;
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .merch-stack--primary {
        --stack-transform: none !important;
    }

    .merch-stack--secondary {
        display: block !important;
        width: 100px !important;
        height: auto !important;
        padding: 0.5rem !important;
        margin: 0 !important;
        opacity: 1 !important;
        animation: none !important;
        transform: none !important;
    }

    .merch-header-glow {
        display: none;
    }

    /* Merch Products Section Mobile */
    .merch-products {
        padding: 2.5rem 0 4rem;
    }

    .merch-products .section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .section-lede {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

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

    .product-card {
        border-radius: 16px;
    }

    .product-media {
        min-height: 220px;
        padding: 1.5rem 1rem;
    }

    .product-image {
        width: min(240px, 85%);
    }

    .product-tag {
        font-size: 0.65rem;
        padding: 0.3rem 0.7rem;
        top: 15px;
        left: 15px;
    }

    .product-content {
        padding: 1.5rem;
        gap: 1rem;
    }

    .product-content h3 {
        font-size: 1.2rem;
    }

    .product-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .product-features {
        gap: 0.5rem;
        font-size: 0.85rem;
    }

    .product-features li::before {
        font-size: 0.7rem;
    }

    .product-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .product-price {
        text-align: center;
        font-size: 1.3rem;
    }

    .product-btn {
        width: 100%;
        text-align: center;
        padding: 0.85rem 1.5rem;
    }
}

/* Extra small screens (under 480px) */
@media (max-width: 480px) {
    .hero-visual {
        bottom: 1rem;
        right: 0.75rem;
    }

    .vinyl-animation {
        width: 65px;
        height: 65px;
    }

    .vinyl-center {
        width: 25px;
        height: 25px;
    }

    .member-card {
        padding: 1.25rem;
        gap: 0.85rem;
    }

    .member-photo {
        width: 75px;
        height: 75px;
    }

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

    .show-item {
        padding: 1.5rem 1rem;
    }

    .show-action .btn {
        max-width: 100%;
    }

    /* Contact page extra small */
    .social-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    .social-card {
        padding: 1rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.5rem;
    }

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

    .social-card h4 {
        font-size: 0.85rem;
    }

    .social-handle {
        font-size: 0.7rem;
    }

    .contact-form-container {
        padding: 1.25rem;
    }

    .method-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* Privacy Page Styles */
.privacy-content {
    padding: 4rem 0;
    background: rgba(255, 245, 238, 0.95);
}

.privacy-text {
    max-width: 800px;
    margin: 0 auto;
    color: #333;
}

.privacy-updated {
    color: #6c6c6c;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.privacy-text h3 {
    font-size: 1.5rem;
    color: var(--color-plum);
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.privacy-text h3:first-of-type {
    margin-top: 0;
}

.privacy-text h4 {
    font-size: 1.15rem;
    color: var(--color-plum);
    margin: 1.5rem 0 0.75rem;
    font-weight: 500;
}

.privacy-text p {
    color: #6c6c6c;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.privacy-text ul {
    color: #6c6c6c;
    margin: 1rem 0 1.5rem 1.5rem;
    line-height: 1.8;
}

.privacy-text li {
    margin-bottom: 0.5rem;
}

.privacy-text a {
    color: var(--color-orange);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.privacy-text a:hover {
    color: var(--color-lavender);
    text-decoration: underline;
}

/* Privacy page header */
.page-header {
    padding: 4rem 0 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.privacy-page .page-header {
    padding-top: 7rem;
}

/* Safety net for any rogue element */
img,
video,
canvas {
    max-width: 100%;
    height: auto;
}
