/* 
    Soundcheck Custom Framing CSS
    Premium Rock & Roll Design System
    Aesthetic: Dark concert venue theme, vibrant stage glows, glassmorphism, bold poster typography, and glowing micro-animations.
*/

/* --- CORE DESIGN VARIABLES --- */
:root {
    --bg-darker: #08080a;
    --bg-dark: #0f0f13;
    --bg-card: #15151b;
    --bg-card-hover: #1c1c24;
    
    /* Neon Accent Colors */
    --accent-purple: #8a2be2;
    --accent-pink: #ff007f;
    --accent-cyan: #00e5ff;
    --accent-gold: #ffb300;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #8a2be2 0%, #ff007f 100%);
    --gradient-cyber: linear-gradient(135deg, #00e5ff 0%, #8a2be2 100%);
    --gradient-warm: linear-gradient(135deg, #ffb300 0%, #ff5500 100%);
    --gradient-dark: linear-gradient(180deg, rgba(15, 15, 19, 0) 0%, rgba(8, 8, 10, 1) 100%);
    
    /* Typography */
    --font-heading: 'Bebas Neue', sans-serif;
    --font-subheading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout Details */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --border-radius-full: 9999px;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 15px rgba(138, 43, 226, 0.4);
    
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- RESET & GLOBAL STYLES --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
    font-size: 16px;
    background-color: var(--bg-darker);
    color: #f3f3f5;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(138, 43, 226, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 229, 255, 0.04) 0%, transparent 40%);
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
    background: #252530;
    border-radius: var(--border-radius-full);
    border: 2px solid var(--bg-darker);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-purple);
}

/* --- STAGE GLOWS (Atmospheric Venue Lights) --- */
.stage-glow-left {
    position: absolute;
    width: 600px;
    height: 600px;
    top: -200px;
    left: -200px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.12) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
    animation: pulseGlow 12s infinite alternate;
}

.stage-glow-right {
    position: absolute;
    width: 600px;
    height: 600px;
    top: 200px;
    right: -200px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.08) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
    animation: pulseGlow 15s infinite alternate-reverse;
}

@keyframes pulseGlow {
    0% { transform: scale(1) translate(0, 0); opacity: 0.8; }
    100% { transform: scale(1.2) translate(50px, 50px); opacity: 1; }
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
    color: #ffffff;
    font-weight: normal;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 4.5rem);
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sub-title {
    font-family: var(--font-subheading);
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-cyan);
    margin-bottom: 0.75rem;
    display: inline-block;
}

p {
    color: var(--bg-dark) === #0f0f13 ? #adb5bd : #888; /* fallback color */
    color: #b3b3c2;
    margin-bottom: 1.5rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: var(--font-subheading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    padding: 0.875rem 2rem;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 0, 127, 0.3);
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}
.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(255, 0, 127, 0.5), 0 0 10px rgba(138, 43, 226, 0.4);
    transform: translateY(-2px);
}
.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: #ffffff;
    color: var(--bg-darker);
}
.btn-secondary:hover {
    background: var(--accent-cyan);
    color: var(--bg-darker);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.6);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
}
.btn-outline:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
}
.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1rem;
}
.btn-full {
    width: 100%;
}

.text-gold { color: var(--accent-gold); }
.text-cyan { color: var(--accent-cyan); }
.text-pink { color: var(--accent-pink); }
.text-muted { color: #555566; }

/* --- HEADER / NAVIGATION --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(8, 8, 10, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: rgba(8, 8, 10, 0.95);
    padding: 0.5rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.header.scrolled .header-container {
    padding: 0.75rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 1.5px;
    color: #ffffff;
}

.logo-icon {
    font-size: 1.6rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: spinRecord 10s linear infinite;
    display: inline-block;
}

@keyframes spinRecord {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.logo-text .highlight {
    color: var(--accent-gold);
    text-shadow: 0 0 10px rgba(255, 179, 0, 0.2);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.25rem;
}

.nav-link {
    font-family: var(--font-subheading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #a5a5ba;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    color: #ffffff;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- SECTION DIVIDER --- */
.section-divider {
    width: 100%;
    margin: 2rem 0;
    position: relative;
    z-index: 5;
    background: transparent;
}

.flex-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider-line {
    flex-grow: 1;
    height: 2px;
    box-shadow: 0 0 8px rgba(0, 229, 255, 0.6);
}

.left-line {
    background: linear-gradient(90deg, transparent, var(--accent-cyan));
    margin-right: 15px;
}

.right-line {
    background: linear-gradient(270deg, transparent, var(--accent-cyan));
    margin-left: 15px;
}

.divider-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}



/* --- HERO SECTION --- */
.hero-section {
    padding: 10rem 2rem 6rem 2rem;
    position: relative;
    z-index: 1;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge {
    background: rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.2);
    color: var(--accent-cyan);
    font-family: var(--font-subheading);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.5rem 1.25rem;
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-pink);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--accent-pink);
    animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 7.5vw, 6.5rem);
    letter-spacing: 2px;
    line-height: 0.95;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.2vw, 1.25rem);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    width: 100%;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-subheading);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-feature-item i {
    font-size: 1.2rem;
}

.hero-media {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-frame-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    transform: rotate(2deg);
    transition: var(--transition-smooth);
}

.hero-frame-container:hover {
    transform: rotate(0deg) scale(1.03);
}

.glowing-border-backdrop {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--gradient-cyber);
    z-index: 0;
    border-radius: var(--border-radius-md);
    filter: blur(15px);
    opacity: 0.5;
    transition: var(--transition-smooth);
}

.hero-frame-container:hover .glowing-border-backdrop {
    opacity: 0.85;
    filter: blur(25px);
}

.hero-frame-wrapper {
    position: relative;
    z-index: 1;
    background-color: #0b0b0d;
    padding: 2.5rem;
    border: 18px solid #1a1a1a;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.8),
        inset 0 0 10px rgba(0,0,0,0.9);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    filter: saturate(1.1) contrast(1.05);
}

/* --- SECTION CORE WORK --- */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    position: relative;
    z-index: 1;
}

.section-header {
    max-width: 1000px;
    margin-bottom: 3rem;
}

.section-header.text-center {
    margin-left: auto;
    margin-right: auto;
}

.section-desc {
    font-size: 1.1rem;
    color: #a5a5ba;
    margin-bottom: 0;
}

/* --- INTERACTIVE VISUALIZER ("The Studio Booth") --- */
.visualizer-section {
    background-color: var(--bg-dark);
    position: relative;
}

.visualizer-container {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 4rem;
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.visualizer-controls {
    padding: 3rem;
    background-color: rgba(8, 8, 10, 0.4);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.controls-title {
    font-family: var(--font-subheading);
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 1rem;
    color: #ffffff;
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.control-label {
    font-family: var(--font-subheading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #a5a5ba;
}

/* Size Selector Styles */
.size-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.size-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.75rem 0.5rem;
    border-radius: var(--border-radius-sm);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    transition: var(--transition-fast);
}

.size-btn:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.2);
}

.size-btn.active {
    background: rgba(138, 43, 226, 0.15);
    border-color: var(--accent-purple);
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.3);
}

.size-name {
    font-family: var(--font-subheading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.size-dims {
    font-size: 0.7rem;
    color: #a5a5ba;
}

/* Art Selector Styles */
.art-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.art-btn {
    border: none;
    padding: 1rem 0.5rem;
    border-radius: var(--border-radius-sm);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.6);
    opacity: 0.6;
    transition: var(--transition-fast);
}

.art-btn span {
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.art-btn:hover {
    opacity: 0.8;
}

.art-btn.active {
    opacity: 1;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.2), inset 0 0 5px rgba(0,0,0,0.3);
    outline: 2px solid #ffffff;
}

/* Frame Options Styles */
.frame-selector {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.frame-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.85rem 1rem;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
}

.frame-option:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
}

.frame-option.active {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--accent-gold);
    box-shadow: inset 3px 0 0 var(--accent-gold);
}

.frame-color-preview {
    width: 32px;
    height: 32px;
    border-radius: var(--border-radius-sm);
    flex-shrink: 0;
}

.frame-details {
    display: flex;
    flex-direction: column;
}

.frame-name {
    font-family: var(--font-subheading);
    font-weight: 700;
    font-size: 0.85rem;
    color: #ffffff;
}

.frame-material {
    font-size: 0.75rem;
    color: #a5a5ba;
}

/* Mat Selector Styles */
.mat-selector {
    display: flex;
    gap: 0.5rem;
}

.mat-btn {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    padding: 0.65rem 0.5rem;
    font-size: 0.75rem;
    font-family: var(--font-subheading);
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
}

.mat-btn:hover {
    background: rgba(255, 255, 255, 0.06);
}

.mat-btn.active {
    background: #ffffff;
    color: var(--bg-darker);
    border-color: #ffffff;
}

/* Visualizer Preview Panel */
.visualizer-preview {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: relative;
    min-height: 580px;
}

.stage-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 50% 30%, rgba(138, 43, 226, 0.1) 0%, transparent 60%),
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: cover, 30px 30px, 30px 30px;
    z-index: 0;
}

.mockup-container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-grow: 1;
    margin-bottom: 2rem;
}

/* Framed Poster Mockup Styling */
.mockup-frame {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.8),
        0 15px 25px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
}

/* Frame Profiles */
.mockup-frame.zeppelin {
    border: 24px solid #141414;
    outline: 2px solid #282828;
}

.mockup-frame.hendrix {
    border: 28px solid #6b4329;
    outline: 2px solid #4a2f1c;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.8),
        0 15px 25px rgba(0, 0, 0, 0.6),
        inset 0 0 15px rgba(0,0,0,0.8);
    background-image: linear-gradient(135deg, rgba(255,255,255,0.05), transparent);
}

.mockup-frame.gold-record {
    border: 18px solid #c5a059;
    outline: 2px solid #ffd700;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.8),
        0 0 25px rgba(212, 175, 55, 0.2);
}

.mockup-frame.neon-vip {
    border: 24px solid #08080a;
    outline: 2px solid #00e5ff;
    box-shadow: 
        0 0 30px rgba(0, 229, 255, 0.25),
        0 30px 60px rgba(0, 0, 0, 0.8);
}

/* Glass Glare Overlay */
.glass-glare {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.03) 45%, 
        rgba(255, 255, 255, 0.07) 50%, 
        rgba(255, 255, 255, 0.03) 55%, 
        rgba(255, 255, 255, 0) 100%);
    transform: rotate(-30deg) translate(-50%, -50%);
    pointer-events: none;
    z-index: 10;
}

/* Matting Profiles */
.mockup-mat {
    background-color: #f7f5f0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.mockup-mat.mat-none {
    padding: 0;
}

.mockup-mat.mat-white {
    padding: 2rem;
    background-color: #f5f4f0;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.1);
}

.mockup-mat.mat-black {
    padding: 2rem;
    background-color: #17171d;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.05);
}

/* Poster Artwork Wrapper & Canvas */
.mockup-poster-wrapper {
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.mockup-art {
    width: 270px; /* Base 18x24 scale width */
    height: 360px; /* Base 18x24 scale height */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

/* Dynamic Dimensions based on Size Choice */
.mockup-art.size-12x18 {
    width: 200px;
    height: 300px;
}

.mockup-art.size-18x24 {
    width: 270px;
    height: 360px;
}

.mockup-art.size-24x36 {
    width: 320px;
    height: 480px;
}

/* Art Style: Psychedelic Rock */
.mockup-art.rock {
    background: linear-gradient(135deg, #d90429, #7209b7);
    color: #ffffff;
    overflow: hidden;
}

.rock-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 2.25rem 1.5rem;
    text-align: center;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(255, 179, 0, 0.45) 0%, transparent 60%),
        repeating-radial-gradient(circle, rgba(0,0,0,0.15) 0, rgba(0,0,0,0.15) 10px, transparent 10px, transparent 20px);
}

.gig-date {
    font-family: var(--font-subheading);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    background-color: #000;
    padding: 0.25rem 0.75rem;
}

.gig-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 0.85;
    letter-spacing: 1px;
    text-shadow: 3px 3px 0px #000;
}

.gig-venue {
    font-family: var(--font-subheading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 0.25rem;
}

.gig-price {
    font-size: 0.6rem;
    letter-spacing: 1px;
    opacity: 0.8;
}

.guitar-icon {
    font-size: 1.25rem;
    opacity: 0.9;
    color: var(--accent-gold);
}

/* Art Style: Indie Synthwave */
.mockup-art.indie {
    background: #0f0a20;
    color: #ffffff;
    overflow: hidden;
}

.indie-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 2.5rem 1.5rem;
    text-align: center;
    position: relative;
}

.retro-grid {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-image: 
        linear-gradient(transparent 70%, #ff007f 100%),
        linear-gradient(rgba(0, 229, 255, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 229, 255, 0.15) 1px, transparent 1px);
    background-size: cover, 15px 15px, 15px 15px;
    transform: perspective(60px) rotateX(45deg) scale(1.5);
    z-index: 1;
}

.synth-sun {
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(#ff007f, #ffb300);
    border-radius: 50%;
    top: 30%;
    left: calc(50% - 50px);
    z-index: 0;
    box-shadow: 0 0 20px rgba(255, 0, 127, 0.4);
}

.gig-title-indie {
    font-family: var(--font-heading);
    font-size: 3rem;
    letter-spacing: 2px;
    z-index: 2;
    background: linear-gradient(180deg, #ffffff 0%, #00e5ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.5));
}

.gig-subtitle-indie {
    font-family: var(--font-subheading);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #ff007f;
    z-index: 2;
    text-transform: uppercase;
}

.gig-details-indie {
    font-size: 0.6rem;
    z-index: 2;
    letter-spacing: 1px;
    background-color: rgba(0,0,0,0.7);
    padding: 0.4rem 0.8rem;
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: var(--border-radius-sm);
    width: 100%;
}

/* Art Style: Metal & Grit */
.mockup-art.metal {
    background: #111111;
    color: #ffffff;
    overflow: hidden;
}

.metal-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 2.25rem 1.5rem;
    text-align: center;
    position: relative;
}

.grunge-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        radial-gradient(rgba(255, 255, 255, 0.02) 2px, transparent 2px);
    background-size: 8px 8px, 16px 16px;
    opacity: 0.5;
}

.gig-heavy {
    font-family: var(--font-subheading);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--accent-gold);
    text-transform: uppercase;
}

.gig-title-metal {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 0.8;
    color: #ffffff;
    letter-spacing: -1px;
    transform: skewX(-10deg);
    text-shadow: 2px 2px 0px #ff0000, -2px -2px 0px #000;
}

.gig-skulls {
    font-size: 2.5rem;
    color: #333333;
}

.gig-footer-metal {
    font-family: var(--font-subheading);
    font-size: 0.55rem;
    letter-spacing: 1px;
    font-weight: 600;
    color: #888888;
    border-top: 1px solid #222;
    padding-top: 0.5rem;
    width: 100%;
}

/* Specs & Live Pricing Box Styling */
.live-specs {
    width: 100%;
    max-width: 600px;
    background: rgba(8, 8, 10, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--border-radius-md);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    z-index: 1;
}

.specs-grid {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex-grow: 1;
}

.spec-lbl {
    font-size: 0.75rem;
    color: #a5a5ba;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 0.5rem;
}

.specs-grid strong {
    font-family: var(--font-subheading);
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
}

.specs-price-box {
    text-align: right;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.price-lbl {
    font-family: var(--font-subheading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    line-height: 1;
    color: #ffffff;
}

.price-suffix {
    font-family: var(--font-subheading);
    font-size: 0.8rem;
    font-weight: 700;
    color: #a5a5ba;
}

/* --- ABOUT US SECTION --- */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.collage-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 480px;
}

.collage-item {
    position: absolute;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
}

.collage-item.c-main {
    width: 75%;
    left: 0;
    top: 0;
    z-index: 2;
    transform: rotate(-3deg);
}

.collage-item.c-sub {
    width: 60%;
    right: 0;
    bottom: 0;
    z-index: 1;
    transform: rotate(6deg);
}

.collage-item:hover {
    z-index: 5;
    transform: scale(1.05) rotate(0deg);
}

.collage-frame {
    background-color: #121212;
    padding: 1.5rem;
    border: 15px solid #242424;
    border-radius: var(--border-radius-sm);
}

.collage-frame.shadowbox {
    border: 20px solid #1a1a1a;
    padding: 1.75rem;
}

.mock-posters-collage {
    height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-family: var(--font-heading);
    position: relative;
    overflow: hidden;
}

.collage-item.c-sub .mock-posters-collage {
    height: 240px;
}

.c-art-1 {
    /* Background handled by img tags now */
}

.c-art-2 {
    /* Background handled by img tags now */
}

.cycle-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #121212; /* Acts as the matboard */
    z-index: 1;
    transition: opacity 1s ease-in-out;
}

.collage-tag {
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: #ff0055;
    color: #fff;
    font-family: var(--font-subheading);
    font-weight: 800;
    font-size: 0.55rem;
    padding: 0.25rem 2rem;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.ticket-stub-embed {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: rgba(255,255,255,0.9);
    color: #000;
    font-family: var(--font-subheading);
    font-weight: 700;
    font-size: 0.5rem;
    padding: 0.25rem 0.5rem;
    border-radius: var(--border-radius-sm);
    border-left: 2px dashed #000;
}

.collage-art-text {
    font-size: clamp(2rem, 3.5vw, 3rem);
    letter-spacing: 1px;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.3);
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-lead {
    font-size: 1.35rem;
    line-height: 1.5;
    font-family: var(--font-subheading);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2rem;
}

.about-body p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    width: 100%;
}

.value-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.75rem;
    border-radius: var(--border-radius-md);
}

.value-icon {
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    display: inline-block;
}

.value-card h4 {
    font-family: var(--font-subheading);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.85rem;
    margin-bottom: 0;
    color: #a5a5ba;
}

/* --- STYLES SECTION ("The Stage Lineup") --- */
.styles-section {
    background-color: var(--bg-dark);
}

.styles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.style-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    display: flex;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
}

.style-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
}

.style-image-wrapper {
    width: 220px;
    background-color: rgba(8, 8, 10, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    padding: 2rem;
}

.style-preview-box {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.6);
}

/* Custom CSS Frames for Style Cards */
.frame-zeppelin-border {
    border: 12px solid #141414;
    outline: 1px solid #333;
}
.frame-hendrix-border {
    border: 14px solid #6b4329;
    outline: 1px solid #4a2f1c;
}
.frame-gold-border {
    border: 10px solid #c5a059;
    outline: 1px solid #ffd700;
}
.frame-neon-border {
    border: 12px solid #0b0b0d;
    outline: 1px solid #00e5ff;
}

.style-poster-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    filter: blur(15px);
    opacity: 0.3;
    z-index: 0;
}

.rock-glow { background-color: var(--accent-pink); }
.folk-glow { background-color: var(--accent-gold); }
.pop-glow { background-color: #ffffff; }
.neon-glow { background-color: var(--accent-cyan); }

.style-poster-mock {
    width: 85%;
    height: 85%;
    z-index: 1;
    opacity: 0.8;
}

.retro-pink { background: linear-gradient(135deg, #ff0055, #8a2be2); }
.warm-yellow { background: linear-gradient(135deg, #f77f00, #fcbf49); }
.gold-shimmer { background: linear-gradient(135deg, #111111, #333333, #ffb300); }
.neon-cyan { background: linear-gradient(135deg, #00f5d4, #00bbf9); }

.style-price-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(8, 8, 10, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-family: var(--font-subheading);
    font-weight: 700;
    font-size: 0.7rem;
    padding: 0.35rem 0.75rem;
    border-radius: var(--border-radius-sm);
}

.style-info {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.style-genre {
    font-family: var(--font-subheading);
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--accent-pink);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.style-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.style-text {
    font-size: 0.85rem;
    color: #a5a5ba;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.style-specs-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.style-specs-list li {
    font-family: var(--font-subheading);
    font-size: 0.75rem;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0.5px;
}

.style-specs-list li i {
    font-size: 0.45rem;
}

/* --- PAST WORK SECTION ("The Gig Gallery") --- */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #a5a5ba;
    font-family: var(--font-subheading);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.65rem 1.5rem;
    border-radius: var(--border-radius-full);
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
}

.filter-btn.active {
    background: #ffffff;
    color: var(--bg-darker);
    border-color: #ffffff;
    box-shadow: 0 4px 15px rgba(255,255,255,0.25);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.gallery-item {
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.gallery-card {
    background-color: #121212;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 1.25rem;
    width: 100%;
}

/* Frame Designs in Gallery */
.gallery-card.shadowbox-frame {
    border: 16px solid #1a1a1a;
    outline: 1px solid #333;
    padding: 1.25rem;
}

.gallery-card.barnwood-frame {
    border: 20px solid #6b4329;
    outline: 1px solid #4a2f1c;
    padding: 1.5rem;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.6),
        inset 0 0 10px rgba(0,0,0,0.8);
}

.gallery-card.gold-frame {
    border: 14px solid #c5a059;
    outline: 1px solid #ffd700;
    padding: 1rem;
}

.gallery-card.neon-box-frame {
    border: 18px solid #08080a;
    outline: 1px solid var(--accent-cyan);
    padding: 1.25rem;
}

/* Mats in Gallery */
.gallery-mat {
    width: 100%;
    background-color: #f5f4f0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.gallery-card.shadowbox-frame .gallery-mat {
    background-color: #101014; /* Dark charcoal conservation mat */
    padding: 1.5rem;
}

.gallery-card.barnwood-frame .gallery-mat {
    background-color: #f5f4f0;
    padding: 1rem;
}

.gallery-card.barnwood-frame .gallery-mat.mat-white {
    padding: 1.75rem;
    background-color: #fcfbfa; /* Extra warm-white archival mat */
}

.gallery-card.gold-frame .gallery-mat {
    background-color: #141417; /* Carbon black conservation mat */
    padding: 1.75rem;
}

.gallery-card.neon-box-frame .gallery-mat {
    background-color: #0b0b0d; /* Shadowbox charcoal mat */
    padding: 1.25rem;
}

/* Real Image Gallery support */
.gallery-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.45),
        inset 0 0 1px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.45);
    transition: var(--transition-smooth);
    z-index: 1;
}

.gallery-card:hover .gallery-image {
    transform: scale(1.04);
}

/* Floated Ticket styling */
.gallery-mat.double-mat {
    flex-direction: column;
    gap: 1rem;
}

.floated-ticket {
    background: linear-gradient(135deg, #ffd700, #b8860b);
    color: #000000;
    font-family: var(--font-subheading);
    font-weight: 800;
    font-size: 0.55rem;
    padding: 0.35rem 1rem;
    border-radius: var(--border-radius-sm);
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #000;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    position: relative;
}

.floated-ticket::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 12px;
    background-color: #141417;
    border-radius: 6px 0 0 6px;
    right: 0;
    top: calc(50% - 6px);
}

.floated-ticket::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 12px;
    background-color: #141417;
    border-radius: 0 6px 6px 0;
    left: 0;
    top: calc(50% - 6px);
}

/* Document & Drumstick styling (Shadowbox) */
.gallery-card.list-layout .gallery-mat.dark-mat {
    background-color: #15151a;
    padding: 2rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: 290px;
    border: 1px solid rgba(255,255,255,0.05);
}

.setlist-document {
    color: #ffffff;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.75rem;
    width: 100%;
}

.setlist-title {
    font-weight: bold;
    border-bottom: 1px dashed rgba(255,255,255,0.2);
    padding-bottom: 0.5rem;
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
}

.setlist-songs {
    list-style: none;
    margin-bottom: 1rem;
}

.setlist-songs li {
    margin-bottom: 0.25rem;
}

.band-sig {
    font-family: 'Brush Script MT', cursive, sans-serif;
    font-size: 1.1rem;
    color: var(--accent-gold);
    margin-top: 1rem;
    text-align: right;
}

.floated-drumstick {
    position: absolute;
    bottom: 25px;
    right: 25px;
    width: 8px;
    height: 120px;
    background: linear-gradient(90deg, #d2b48c, #8b5a2b);
    border-radius: var(--border-radius-full);
    transform: rotate(-45deg);
    box-shadow: 8px 8px 10px rgba(0,0,0,0.5);
    border: 1px solid #5a3815;
}

/* Individual Poster Illustrations in Gallery */
.gallery-poster {
    width: 100%;
    height: 260px;
    color: #ffffff;
    overflow: hidden;
    position: relative;
}

.poster-inner {
    width: 100%;
    height: 100%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

/* Red Zeppelin Poster */
.poster-red-zeppelin {
    background: linear-gradient(135deg, #111, #ff0055);
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(0,0,0,0.4) 0%, transparent 80%),
        repeating-linear-gradient(0deg, rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 4px);
}

.poster-heading {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    line-height: 0.9;
    letter-spacing: 1px;
}

.poster-sub {
    font-family: var(--font-subheading);
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--accent-gold);
}

.poster-illustration {
    font-size: 1.5rem;
    opacity: 0.8;
}

/* Canyon Codes Poster */
.poster-indie-canyon {
    background: linear-gradient(185deg, #1a4f3e, #0c2018);
}

.poster-heading-indie {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    line-height: 1;
    color: #e3d5ca;
}

.poster-sub-indie {
    font-family: var(--font-subheading);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #c5a059;
}

/* Queen Poster */
.poster-classic-queen {
    background: linear-gradient(135deg, #1d3557, #457b9d);
    color: #fff;
    width: 100%;
    height: 180px; /* adjusted because of floated ticket stub */
}

.poster-heading-gold {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: #f1faee;
    text-shadow: 2px 2px 0px var(--accent-gold);
}

.poster-sub-gold {
    font-family: var(--font-subheading);
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 1px;
}

/* Punk Riot Poster */
.poster-punk-riot {
    background: #000000;
    border: 1px dashed rgba(255,255,255,0.2);
}

.poster-heading-punk {
    font-family: var(--font-heading);
    font-size: 3rem;
    transform: skewY(-5deg);
    color: #fff;
    text-shadow: 3px 3px 0px #ff0055;
}

.poster-sub-punk {
    font-family: var(--font-subheading);
    font-size: 0.55rem;
    letter-spacing: 2px;
    color: #00e5ff;
}

.poster-heading-sunset {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    color: #ffb703;
    line-height: 0.9;
}

.poster-sub-sunset {
    font-family: var(--font-subheading);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.poster-indie-sunset {
    background: linear-gradient(180deg, #ff5500, #ffb300, #151515);
}

/* Gallery Info */
.gallery-item-info {
    padding: 0 0.5rem;
}

.gallery-item-info h4 {
    font-family: var(--font-subheading);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.gallery-item-info p {
    font-size: 0.8rem;
    color: #a5a5ba;
    margin-bottom: 0;
}

/* --- PURCHASE OPTIONS SECTION ("The Pricing Setlist") --- */
.purchase-section {
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    align-items: stretch;
}

.price-tier {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--border-radius-lg);
    padding: 3.5rem 2.5rem 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
}

.price-tier:nth-child(1):hover {
    transform: translateY(-5px);
    border-color: rgba(255, 179, 0, 0.4) !important;
    box-shadow: 
        0 20px 50px rgba(0,0,0,0.85),
        inset 0 0 40px rgba(255, 179, 0, 0.2),
        0 0 60px rgba(255, 179, 0, 0.2) !important;
}

.price-tier.featured {
    background-color: #12121c;
    border: 2px solid rgba(0, 229, 255, 0.2);
    box-shadow: var(--shadow-glow);
}

.price-tier:nth-child(2):hover {
    transform: translateY(-5px);
    border-color: rgba(0, 229, 255, 0.4) !important;
    box-shadow: 
        0 20px 50px rgba(0,0,0,0.85),
        inset 0 0 40px rgba(0, 229, 255, 0.2),
        0 0 60px rgba(0, 229, 255, 0.2) !important;
}

.price-tier:nth-child(3):hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 85, 0.4) !important;
    box-shadow: 
        0 20px 50px rgba(0,0,0,0.85),
        inset 0 0 40px rgba(255, 0, 85, 0.2),
        0 0 60px rgba(255, 0, 85, 0.2) !important;
}

.tier-badge {
    position: absolute;
    top: 25px;
    left: 2.5rem;
    font-family: var(--font-subheading);
    font-weight: 800;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-cyan);
}

.featured-badge {
    color: #ffffff;
    background: var(--gradient-primary);
    padding: 0.35rem 1rem;
    border-radius: var(--border-radius-full);
    left: 50%;
    transform: translateX(-50%);
    top: -15px;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(255, 0, 127, 0.3);
}

.tier-title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.tier-price {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
}

.tier-price .currency {
    font-family: var(--font-subheading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 0.5rem;
    margin-right: 0.25rem;
    color: var(--accent-gold);
}

.tier-price .period {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #a5a5ba;
    margin-left: 0.5rem;
    align-self: flex-end;
    margin-bottom: 0.8rem;
}

.tier-description {
    font-size: 0.9rem;
    color: #a5a5ba;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.tier-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3.5rem;
    flex-grow: 1;
}

.tier-features li {
    font-family: var(--font-subheading);
    font-weight: 600;
    font-size: 0.85rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: 0.5px;
}

.tier-features li.disabled {
    color: #555566;
}

.tier-features li i {
    font-size: 0.9rem;
    width: 20px;
    text-align: center;
}

/* --- TESTIMONIALS SECTION --- */
.testimonials-section {
    background-color: var(--bg-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.testimonial-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    position: relative;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s ease;
}

.testimonial-card:nth-child(1):hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 85, 0.4) !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.85), inset 0 0 40px rgba(255, 0, 85, 0.2), 0 0 60px rgba(255, 0, 85, 0.2) !important;
}
.testimonial-card:nth-child(2):hover {
    transform: translateY(-5px);
    border-color: rgba(0, 229, 255, 0.4) !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.85), inset 0 0 40px rgba(0, 229, 255, 0.2), 0 0 60px rgba(0, 229, 255, 0.2) !important;
}
.testimonial-card:nth-child(3):hover {
    transform: translateY(-5px);
    border-color: rgba(255, 179, 0, 0.4) !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.85), inset 0 0 40px rgba(255, 179, 0, 0.2), 0 0 60px rgba(255, 179, 0, 0.2) !important;
}

.quote-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, rgba(138,43,226,0.1), rgba(255,0,127,0.1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute;
    top: 25px;
    left: 25px;
    z-index: 0;
    pointer-events: none;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
    font-style: italic;
    color: #e3e3eb;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: var(--font-subheading);
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-family: var(--font-subheading);
    font-weight: 700;
    font-size: 0.9rem;
    color: #ffffff;
}

.author-desc {
    font-size: 0.75rem;
    color: #a5a5ba;
}

/* --- CONTACT SECTION & FORM --- */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: flex-start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-lead {
    font-size: 1.2rem;
    line-height: 1.6;
    font-family: var(--font-subheading);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
    width: 100%;
}

.contact-method-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.method-icon {
    width: 54px;
    height: 54px;
    border-radius: var(--border-radius-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--accent-cyan);
    flex-shrink: 0;
}

.contact-method-item h5 {
    font-family: var(--font-subheading);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.contact-method-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: #a5a5ba;
}

.contact-form-container {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 3.5rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.contact-form-container:hover {
    border-color: rgba(255, 0, 85, 0.4) !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.85), inset 0 0 40px rgba(255, 0, 85, 0.2), 0 0 60px rgba(255, 0, 85, 0.2) !important;
}

.contact-form-container::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
}

.form-title {
    font-family: var(--font-subheading);
    font-weight: 800;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding-bottom: 1rem;
    color: #ffffff;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-group label {
    font-family: var(--font-subheading);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #a5a5ba;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    background-color: rgba(8, 8, 10, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    padding: 0.85rem 1rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
    outline: none;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--accent-purple);
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.2);
    background-color: rgba(8, 8, 10, 0.8);
}

.form-group select option {
    background-color: var(--bg-card);
    color: #ffffff;
}

/* --- FOOTER --- */
.footer {
    background-color: var(--bg-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 6rem 2rem 2.5rem 2rem;
    position: relative;
    z-index: 1;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 6rem;
    margin-bottom: 5rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-desc {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 360px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-sm);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #a5a5ba;
    transition: var(--transition-fast);
}

.social-links a:hover {
    color: var(--bg-darker);
    background-color: var(--accent-cyan);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 12px rgba(0, 229, 255, 0.6);
    transform: translateY(-2px);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-column h4 {
    font-family: var(--font-subheading);
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.footer-column a {
    font-size: 0.85rem;
    color: #a5a5ba;
}

.footer-column a:hover {
    color: var(--accent-cyan);
    padding-left: 3px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: center;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: #555566;
    margin-bottom: 0;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1200px) {
    .hero-container {
        gap: 2rem;
    }
    .visualizer-container {
        grid-template-columns: 1fr;
    }
    .visualizer-controls {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .about-grid {
        gap: 3rem;
    }
    .styles-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }
    .hero-content {
        align-items: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-features {
        justify-content: center;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .collage-container {
        height: 420px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 1rem 1.5rem;
    }
    .logo {
        font-size: 1.5rem;
    }
    .mobile-toggle {
        display: block;
    }
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-darker);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 2rem;
        flex-direction: column;
        gap: 1.5rem;
        transform: translateY(-150%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition-smooth);
    }
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .header-cta {
        display: none;
    }
    .gallery-filters {
        gap: 0.5rem;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .contact-form-container {
        padding: 2rem;
    }
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* ==========================================================================
   PREMIUM "FROM THE VAULT" CATALOG & INQUIRY SYSTEM
   ========================================================================== */

.vault-section {
    background-color: var(--bg-dark);
    padding: 8rem 2rem;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.vault-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius-md);
    margin-bottom: 2rem;
    flex-wrap: wrap;
    backdrop-filter: blur(10px);
}

.vault-search-box {
    position: relative;
    flex: 1;
    min-width: 280px;
}

.vault-search-box .search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #555566;
    font-size: 1rem;
}

.vault-search-box input {
    width: 100%;
    background: rgba(8, 8, 10, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    padding: 0.85rem 1rem 0.85rem 3rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.vault-search-box input:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.25);
    outline: none;
}

.vault-filters-group {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.filter-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.filter-wrapper label {
    font-family: var(--font-subheading);
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #a5a5ba;
}

.filter-wrapper select {
    background: rgba(8, 8, 10, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
    padding: 0.75rem 2.5rem 0.75rem 1.2rem !important;
    border-radius: var(--border-radius-sm) !important;
    font-size: 0.85rem !important;
    cursor: pointer;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    background-size: 14px !important;
}

.filter-wrapper select:focus {
    border-color: var(--accent-cyan);
}

.vault-stats {
    font-family: var(--font-subheading);
    font-size: 0.85rem;
    color: #a5a5ba;
    margin-bottom: 2.5rem;
    letter-spacing: 0.5px;
    border-left: 2px solid var(--accent-cyan);
    padding-left: 12px;
}

.vault-stats span {
    color: #ffffff;
    font-weight: 700;
}

.vault-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.vault-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    position: relative;
}

.vault-card-img-wrap {
    width: 100%;
    aspect-ratio: 3/4;
    background: #08080a;
    overflow: hidden;
    position: relative;
    padding: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

/* Card inner mock frame */
.vault-card-frame {
    width: 100%;
    height: 100%;
    background: #08080a;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 2;
}

.vault-card-frame img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    display: block;
    opacity: 0.85;
    transition: var(--transition-smooth);
}

/* Tier Specific Framing in Cards */
.card-tier-gold .vault-card-frame {
    border: 8px solid #141414;
    outline: 1px solid var(--accent-gold);
}
.card-tier-platinum .vault-card-frame {
    border: 8px solid #202024;
    outline: 1px solid #c0c0c0;
}
.card-tier-diamond .vault-card-frame {
    border: 8px solid #08080a;
    outline: 1px solid var(--accent-cyan);
}

/* Hover Glowing Effects */
.vault-card-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    filter: blur(28px);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 0;
}
.card-tier-gold .vault-card-glow { background: var(--accent-gold); }
.card-tier-platinum .vault-card-glow { background: #e5e5e5; }
.card-tier-diamond .vault-card-glow { background: var(--accent-cyan); }

.vault-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.09);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.vault-card:hover .vault-card-glow {
    opacity: 0.35;
}

.vault-card:hover .vault-card-frame {
    transform: scale(1.03);
}

.vault-card:hover .vault-card-frame img {
    opacity: 1;
}

/* Card Labels & Badges */
.card-tier-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    font-family: var(--font-subheading);
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.3rem 0.65rem;
    border-radius: var(--border-radius-sm);
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.badge-gold { background: #3a3212; color: var(--accent-gold); border: 1px solid var(--accent-gold); }
.badge-platinum { background: #222225; color: #e5e5e5; border: 1px solid #888; }
.badge-diamond { background: #0c242c; color: var(--accent-cyan); border: 1px solid var(--accent-cyan); }

.vault-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-grow: 1;
}

.vault-card-artist {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vault-card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #a5a5ba;
    font-weight: 500;
}

.vault-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 1rem;
    margin-top: 1rem;
}

.vault-card-price {
    font-family: var(--font-subheading);
    font-weight: 800;
    font-size: 1.2rem;
    color: #ffffff;
}

.vault-card-action {
    font-size: 0.75rem;
    font-family: var(--font-subheading);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    gap: 0.35rem;
    transition: var(--transition-fast);
}

.vault-card:hover .vault-card-action {
    color: #ffffff;
    transform: translateX(4px);
}

/* --- PREMIUM VAULT MODAL (INQUIRY) --- */
.vault-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(4, 4, 6, 0.94);
    backdrop-filter: blur(12px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    transition: opacity 0.3s ease;
}

.vault-modal-overlay.open {
    display: flex;
}

.vault-modal {
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--border-radius-lg);
    width: 100%;
    max-width: 1020px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 80px rgba(0,0,0,0.95);
    animation: modalSlide 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalSlide {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.vault-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
}

.vault-modal-close:hover {
    background: #ffffff;
    color: var(--bg-darker);
}

.vault-modal-body {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 4rem;
    padding: 2.5rem;
}

.vault-modal-image-wrap {
    width: 100%;
    aspect-ratio: 3/4;
    background: #08080a;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 3rem;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.03);
}

.vault-modal-frame-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    filter: blur(40px);
    opacity: 0.35;
    z-index: 0;
}

.modal-tier-gold .vault-modal-frame-glow { background: var(--accent-gold); }
.modal-tier-platinum .vault-modal-frame-glow { background: #e5e5e5; }
.modal-tier-diamond .vault-modal-frame-glow { background: var(--accent-cyan); }

.vault-modal-frame {
    width: 100%;
    height: 100%;
    background: #08080a;
    box-shadow: 0 20px 50px rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
}

.modal-tier-gold .vault-modal-frame {
    border: 12px solid #141414;
    outline: 1px solid var(--accent-gold);
}
.modal-tier-platinum .vault-modal-frame {
    border: 12px solid #202024;
    outline: 1px solid #c0c0c0;
}
.modal-tier-diamond .vault-modal-frame {
    border: 12px solid #08080a;
    outline: 1px solid var(--accent-cyan);
}

.vault-modal-mat {
    width: 100%;
    height: 100%;
    background: #0d0d0d;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vault-modal-frame img {
    width: 90%;
    height: 90%;
    object-fit: contain;
}

.vault-modal-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vault-modal-badge {
    align-self: flex-start;
    font-family: var(--font-subheading);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.4rem 0.85rem;
    border-radius: var(--border-radius-sm);
}

.vault-modal-info h3 {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    margin: 0;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.vault-modal-meta {
    display: flex;
    gap: 2rem;
    font-family: var(--font-subheading);
    font-size: 0.9rem;
    color: #a5a5ba;
    font-weight: 600;
}

.vault-modal-meta i {
    color: var(--accent-cyan);
    margin-right: 4px;
}

.vault-modal-pricing {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
}

.pricing-label {
    font-family: var(--font-subheading);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #a5a5ba;
    margin-bottom: 0.35rem;
}

.pricing-value {
    font-family: var(--font-subheading);
    font-weight: 900;
    font-size: 2.4rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.pricing-details {
    font-size: 0.85rem;
    color: #888899;
    line-height: 1.6;
}

.vault-inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 1rem;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
}

.inquiry-form-title {
    font-family: var(--font-subheading);
    font-size: 0.85rem;
    font-weight: 900;
    color: var(--accent-pink);
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.inquiry-form-help {
    font-size: 0.8rem;
    color: #a5a5ba;
    line-height: 1.5;
    margin: 0;
}

.vault-load-more {
    margin-top: 2rem;
}

/* Responsive Vault styles */
@media (max-width: 1200px) {
    .vault-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .vault-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .vault-modal-body {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem;
    }
    .vault-modal-image-wrap {
        max-width: 400px;
        margin: 0 auto;
    }
    .vault-controls {
        flex-direction: column;
        align-items: stretch;
        padding: 1.5rem;
    }
    .vault-filters-group {
        justify-content: space-between;
    }
}

@media (max-width: 576px) {
    .vault-grid {
        grid-template-columns: 1fr;
    }
    .vault-filters-group {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    .vault-modal-body {
        padding: 2rem;
    }
    .vault-modal-info h3 {
        font-size: 2rem;
    }
}

/* ==========================================================================
   ULTRA-ZOOM LIGHTBOX SYSTEM
   ========================================================================== */

.vault-modal-image-wrap {
    cursor: zoom-in;
    position: relative;
    transition: var(--transition-smooth);
}

.vault-modal-image-wrap::before {
    content: '🔍 Click Image to Zoom Artwork';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(8, 8, 10, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-family: var(--font-subheading);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.45rem 1rem;
    border-radius: var(--border-radius-sm);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 10;
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.vault-modal-image-wrap:hover::before {
    opacity: 1;
    bottom: 25px;
}

.vault-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(4, 4, 6, 0.96);
    backdrop-filter: blur(12px);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    cursor: zoom-out;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vault-lightbox.open {
    display: flex;
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 3100;
}

.lightbox-close:hover {
    background: #ffffff;
    color: #000000;
    transform: rotate(90deg);
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    animation: lightboxZoomIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes lightboxZoomIn {
    from { transform: scale(0.92); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.lightbox-caption {
    font-family: var(--font-subheading);
    font-size: 0.85rem;
    color: #a5a5ba;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
}

/* ==========================================================================
   CERTIFIED ALBUM & RECORD GRAPHICS
   ========================================================================== */

.certified-display {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.album-sleeve {
    width: 62%;
    height: 62%;
    background: #111115;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 10px 30px rgba(0,0,0,0.85);
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition-smooth);
    transform: translateX(-16px);
}

/* Sleeve Art and Branding */
.sleeve-art {
    width: 82%;
    height: 82%;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    position: relative;
}

.sleeve-gold .sleeve-art {
    background: linear-gradient(135deg, #1f1a0a, #3a3212);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
}
.sleeve-platinum .sleeve-art {
    background: linear-gradient(135deg, #18181c, #2a2a30);
    border: 1px solid #c0c0c0;
    color: #e5e5e5;
}
.sleeve-diamond .sleeve-art {
    background: linear-gradient(135deg, #091a22, #163644);
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
}

/* Vinyl Record Sliding Graphic */
.vinyl-record {
    width: 58%;
    height: 58%;
    border-radius: 50%;
    background: radial-gradient(circle, #222 30%, #0d0d0d 31%, #151515 45%, #08080a 46%, #000 100%);
    box-shadow: 
        0 8px 25px rgba(0,0,0,0.9),
        inset 0 0 12px rgba(255,255,255,0.05);
    position: absolute;
    z-index: 3;
    left: 42%;
    top: 21%;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Grooves simulation */
.vinyl-grooves {
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    border: 1px double rgba(255,255,255,0.03);
    pointer-events: none;
}
.vinyl-grooves::before {
    content: '';
    position: absolute;
    inset: 15px;
    border-radius: 50%;
    border: 1px double rgba(255,255,255,0.02);
}
.vinyl-grooves::after {
    content: '';
    position: absolute;
    inset: 25px;
    border-radius: 50%;
    border: 1px double rgba(255,255,255,0.02);
}

/* Record shine overlay */
.vinyl-record::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(from 45deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.06) 20%, rgba(255,255,255,0) 40%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.06) 70%, rgba(255,255,255,0) 90%, rgba(255,255,255,0) 100%);
    pointer-events: none;
    z-index: 5;
}

/* Record Center Label */
.vinyl-label {
    width: 32%;
    height: 32%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    z-index: 6;
    border: 1px solid rgba(0,0,0,0.3);
}

.label-gold {
    background: radial-gradient(circle, #fff 15%, var(--accent-gold) 16%);
    color: #000000;
}
.label-platinum {
    background: radial-gradient(circle, #fff 15%, #e5e5e5 16%);
    color: #000000;
}
.label-diamond {
    background: radial-gradient(circle, #fff 15%, var(--accent-cyan) 16%);
    color: #000000;
}

/* Hover effects */
.style-card:hover .album-sleeve {
    transform: translateX(-24px) rotate(-2deg);
}

.style-card:hover .vinyl-record {
    transform: translateX(18px) rotate(45deg);
}

/* Tier Specific Framing styles */
.frame-gold-tier-border {
    border: 12px solid #141414;
    outline: 1px solid var(--accent-gold);
}
.frame-platinum-tier-border {
    border: 14px solid #202024;
    outline: 1px solid #c0c0c0;
}
.frame-diamond-tier-border {
    border: 10px solid #08080a;
    outline: 1px solid var(--accent-cyan);
}

.gold-tier-glow { background-color: var(--accent-gold); filter: blur(25px); opacity: 0.15; }
.platinum-tier-glow { background-color: #e5e5e5; filter: blur(25px); opacity: 0.15; }
.diamond-tier-glow { background-color: var(--accent-cyan); filter: blur(25px); opacity: 0.15; }

/* ==========================================================================
   WORKFLOW SECTION ("Two Paths")
   ========================================================================== */
.workflow-section {
    background-color: var(--bg-darker);
    position: relative;
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 2rem;
}

.workflow-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 3.5rem 3rem;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: var(--transition-smooth);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.workflow-card.border-gold:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 10px 40px rgba(255, 179, 0, 0.06);
    transform: translateY(-5px);
}

.workflow-card.border-cyan:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 40px rgba(0, 229, 255, 0.06);
    transform: translateY(-5px);
}

.workflow-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-family: var(--font-subheading);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
}

.workflow-card.border-gold .workflow-badge {
    color: var(--accent-gold);
    border-color: rgba(255, 179, 0, 0.2);
}

.workflow-card.border-cyan .workflow-badge {
    color: var(--accent-cyan);
    border-color: rgba(0, 229, 255, 0.2);
}

.workflow-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.workflow-card.border-gold .workflow-icon {
    color: var(--accent-gold);
    text-shadow: 0 0 20px rgba(255, 179, 0, 0.2);
}

.workflow-card.border-cyan .workflow-icon {
    color: var(--accent-cyan);
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
}

.workflow-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
}

.workflow-text {
    font-size: 1rem;
    color: #a5a5ba;
    line-height: 1.7;
    flex-grow: 1;
}

@media (max-width: 992px) {
    .workflow-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.margin-top-sm {
    margin-top: 1rem !important;
}

/* ==========================================================================
   INTRO GATE OVERLAY ("VIP Backstage Pass")
   ========================================================================== */
body.gate-active {
    overflow: hidden !important;
}

.intro-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #050507;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 0.8s cubic-bezier(0.85, 0, 0.15, 1), filter 0.8s cubic-bezier(0.85, 0, 0.15, 1);
}

/* Background glow effects simulating stage lighting */
.stage-glow-backstage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120vw;
    height: 120vh;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 179, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 229, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.03) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
    animation: spotlightPan 25s infinite alternate ease-in-out;
}

@keyframes spotlightPan {
    0% { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
    100% { transform: translate(-50%, -50%) rotate(15deg) scale(1.1); }
}

.gate-container {
    position: relative;
    z-index: 2;
    perspective: 1200px;
    padding: 2rem;
}

/* The VIP Backstage Pass Ticket */
.backstage-pass-card {
    width: 360px;
    background: rgba(12, 12, 16, 0.7);
    border: 1px solid rgba(255, 179, 0, 0.25);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2.2rem 2.2rem 2.2rem;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.95),
        0 0 40px rgba(255, 179, 0, 0.08),
        inset 0 0 20px rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    overflow: hidden;
    transition: transform 0.8s cubic-bezier(0.85, 0, 0.15, 1), opacity 0.8s cubic-bezier(0.85, 0, 0.15, 1), filter 0.8s cubic-bezier(0.85, 0, 0.15, 1);
}

/* Hologram foil tape across the top */
.pass-hologram {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 12px;
    background: linear-gradient(90deg, #ffb300, #00e5ff, #8a2be2, #ff0055, #ffb300);
    background-size: 400% 100%;
    animation: hologramShimmer 6s infinite linear;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes hologramShimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 400% 50%; }
}

/* Pass Ticket Header */
.pass-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
    padding-bottom: 1.2rem;
}

.pass-badge {
    font-family: var(--font-subheading);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.pass-badge i {
    animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}

.pass-location {
    font-family: var(--font-subheading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #a5a5ba;
}

/* Brand styling inside ticket */
.pass-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.pass-logo-icon {
    font-size: 1.6rem;
    color: var(--accent-gold);
    text-shadow: 0 0 10px rgba(255, 179, 0, 0.4);
}

.pass-logo-text {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    letter-spacing: 1px;
    color: #ffffff;
    line-height: 1;
}

.pass-highlight {
    color: var(--accent-gold);
}

/* Admission Details grid */
.pass-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-sm);
    padding: 1.2rem 0.5rem;
    text-align: center;
}

.pass-detail-row {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.pass-detail-row:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.pass-details .label {
    font-family: var(--font-subheading);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #555566;
}

.pass-details .value {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

/* Custom barcode simulation */
.pass-barcode-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.pass-barcode {
    width: 100%;
    height: 48px;
    background: repeating-linear-gradient(
        90deg,
        #ffffff,
        #ffffff 2px,
        transparent 2px,
        transparent 6px,
        #ffffff 6px,
        #ffffff 10px,
        transparent 10px,
        transparent 12px,
        #ffffff 12px,
        #ffffff 14px,
        transparent 14px,
        transparent 18px,
        #ffffff 18px,
        #ffffff 22px,
        transparent 22px,
        transparent 26px
    );
    opacity: 0.85;
}

.barcode-number {
    font-family: monospace;
    font-size: 0.65rem;
    color: #555566;
    letter-spacing: 2px;
}

/* Call to action */
.pass-cta-wrap {
    width: 100%;
    margin-top: 0.5rem;
}

/* Exit transitions triggered by JS class addition */
.intro-gate-overlay.gate-open {
    background-color: transparent;
    pointer-events: none;
}

.intro-gate-overlay.gate-open .backstage-pass-card {
    transform: scale(1.4) rotateX(15deg) rotate(20deg);
    opacity: 0;
    filter: blur(10px);
}

/* Stage shutters sliding apart */
.gate-shutter {
    position: absolute;
    top: 0;
    height: 100vh;
    width: 50vw;
    background-color: #050507;
    z-index: 1;
    transition: transform 1s cubic-bezier(0.85, 0, 0.15, 1);
}
.left-shutter {
    left: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.02);
}
.right-shutter {
    right: 0;
}

.intro-gate-overlay.gate-open .left-shutter {
    transform: translateX(-100%);
}
.intro-gate-overlay.gate-open .right-shutter {
    transform: translateX(100%);
}

/* Strobe flash simulation */
.strobe-flash {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, var(--accent-gold) 0%, rgba(0, 229, 255, 0.8) 50%, #ffffff 100%);
    opacity: 0;
    z-index: 10;
    pointer-events: none;
    mix-blend-mode: screen;
}

/* Screen shake for bass drop */
@keyframes bassDropShake {
    0% { transform: translate(0, 0) rotate(0deg); }
    10% { transform: translate(-3px, 2px) rotate(-0.5deg); }
    20% { transform: translate(3px, -2px) rotate(0.5deg); }
    30% { transform: translate(-2px, -3px) rotate(0deg); }
    40% { transform: translate(2px, 3px) rotate(0.5deg); }
    50% { transform: translate(-3px, 1px) rotate(-0.5deg); }
    60% { transform: translate(3px, 2px) rotate(0deg); }
    70% { transform: translate(-2px, -1px) rotate(0.5deg); }
    80% { transform: translate(2px, -2px) rotate(0deg); }
    90% { transform: translate(-1px, 3px) rotate(-0.5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

/* Removed body shake animation to prevent GPU lockup */

/* Main Site Smooth Parallax Enter */
.header, .hero-section, .about-section, .workflow-section {
    transition: opacity 1s ease-out, filter 1s ease-out, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

body.gate-active .header,
body.gate-active .hero-section,
body.gate-active .about-section,
body.gate-active .workflow-section {
    opacity: 0 !important;
    filter: blur(25px) !important;
    transform: scale(0.92) translateY(20px) !important;
}

/* ==========================================================================
   CERTIFIED TIER ROWS & VIDEO PLACEHOLDERS
   ========================================================================== */
.styles-rows-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 4rem;
}

.tier-row {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
    background: rgba(8, 8, 10, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.tier-row:hover {
    background: rgba(8, 8, 10, 0.65);
}

.tier-row.row-gold:hover {
    border-color: rgba(255, 179, 0, 0.4);
    box-shadow: 
        0 20px 50px rgba(0,0,0,0.85),
        inset 0 0 40px rgba(255, 179, 0, 0.2),
        0 0 60px rgba(255, 179, 0, 0.2);
}

.tier-row.row-platinum:hover {
    border-color: rgba(0, 229, 255, 0.4);
    box-shadow: 
        0 20px 50px rgba(0,0,0,0.85),
        inset 0 0 40px rgba(0, 229, 255, 0.2),
        0 0 60px rgba(0, 229, 255, 0.2);
}

.tier-row.row-diamond:hover {
    border-color: rgba(255, 0, 85, 0.4);
    box-shadow: 
        0 20px 50px rgba(0,0,0,0.85),
        inset 0 0 40px rgba(255, 0, 85, 0.2),
        0 0 60px rgba(255, 0, 85, 0.2);
}

.tier-row-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tier-row-badge {
    font-family: var(--font-subheading);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tier-row-title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
}

.tier-row-text {
    font-size: 1.05rem;
    color: #a5a5ba;
    line-height: 1.8;
}

.tier-row-specs {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.tier-row-specs li {
    font-size: 0.95rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.tier-row-specs li i {
    font-size: 0.5rem;
}

.tier-row-btn {
    align-self: flex-start;
    margin-top: 1rem;
}

/* Video Placeholder Elements */
.tier-row-video {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
}

.video-placeholder-box {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: #08080a;
    border-radius: var(--border-radius-sm);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.8),
        inset 0 0 15px rgba(0,0,0,0.8);
    transition: var(--transition-smooth);
}

.video-placeholder-box.border-gold { border: 1px solid rgba(255, 179, 0, 0.2); }
.video-placeholder-box.border-cyan { border: 1px solid rgba(0, 229, 255, 0.2); }
.video-placeholder-box.border-pink { border: 1px solid rgba(255, 0, 85, 0.2); }

.video-placeholder-box:hover.border-gold { border-color: var(--accent-gold); box-shadow: 0 0 25px rgba(255, 179, 0, 0.15); }
.video-placeholder-box:hover.border-cyan { border-color: var(--accent-cyan); box-shadow: 0 0 25px rgba(0, 229, 255, 0.15); }
.video-placeholder-box:hover.border-pink { border-color: #ff0055; box-shadow: 0 0 25px rgba(255, 0, 85, 0.15); }

/* Play button graphics */
.video-play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 5;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gold-play-btn { background: rgba(255, 179, 0, 0.1); color: var(--accent-gold); border-color: rgba(255, 179, 0, 0.3); }
.cyan-play-btn { background: rgba(0, 229, 255, 0.1); color: var(--accent-cyan); border-color: rgba(0, 229, 255, 0.3); }
.pink-play-btn { background: rgba(255, 0, 85, 0.1); color: #ff0055; border-color: rgba(255, 0, 85, 0.3); }

.video-placeholder-box:hover .video-play-btn {
    transform: scale(1.1);
}
.video-placeholder-box:hover .gold-play-btn { background: var(--accent-gold); color: #000000; box-shadow: 0 0 20px rgba(255, 179, 0, 0.4); }
.video-placeholder-box:hover .cyan-play-btn { background: var(--accent-cyan); color: #000000; box-shadow: 0 0 20px rgba(0, 229, 255, 0.4); }
.video-placeholder-box:hover .pink-play-btn { background: #ff0055; color: #ffffff; box-shadow: 0 0 20px rgba(255, 0, 85, 0.4); }

/* Play details */
.video-placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 4;
}

.video-title {
    font-family: var(--font-subheading);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ffffff;
    text-transform: uppercase;
}

.video-duration {
    font-size: 0.7rem;
    color: #555566;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Ambient glow backdrop inside placeholder */
.video-placeholder-glow {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.1;
    filter: blur(40px);
    transition: var(--transition-smooth);
}

.gold-glow-video { background-color: var(--accent-gold); }
.cyan-glow-video { background-color: var(--accent-cyan); }
.pink-glow-video { background-color: #ff0055; }

.video-placeholder-box:hover .video-placeholder-glow {
    opacity: 0.2;
}

@media (max-width: 992px) {
    .tier-row {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 2rem;
    }
}

/* --- SHIPPING ESTIMATOR WIDGET --- */
.shipping-estimator-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
}

.shipping-estimator {
    background: rgba(15, 15, 20, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
}

.estimator-header h4 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--text-light);
}

.estimator-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.estimator-form {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.estimator-input {
    flex: 1;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-light);
    padding: 12px 15px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: all 0.3s ease;
}

.estimator-input:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 10px rgba(245, 200, 66, 0.1);
}

.estimator-result {
    padding: 15px;
    border-radius: 6px;
    background: rgba(245, 200, 66, 0.1);
    border-left: 4px solid var(--accent-gold);
    color: var(--text-light);
    font-weight: 500;
    font-size: 1.05rem;
    margin-top: 15px;
    animation: fadeIn 0.3s ease forwards;
}

.estimator-result .shipping-price {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.4rem;
    color: var(--accent-gold);
    letter-spacing: 1px;
    margin-left: 5px;
}

.estimator-result.error {
    background: rgba(255, 0, 85, 0.1);
    border-left-color: var(--accent-pink);
    color: var(--accent-pink);
}

@media (max-width: 576px) {
    .estimator-form {
        flex-direction: column;
    }
}

/* --- LOGO BLENDING FIX --- */
/* Removes the off-black AI-generated background to perfectly match the site background */
#navbar-logo,
#footer-logo,
#active-logo,
#about-watermark-logo,
#queue-logo {
    mix-blend-mode: screen;
}

/* --- HERO FAN INTERACTIVE EFFECT --- */
.fan-container .hero-frame-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4; /* Perfect 18x24 concert poster ratio */
}

.fan-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #0b0b0d; /* Acts as the matboard */
    border-radius: var(--border-radius-sm);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease, box-shadow 0.5s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    border: 1px solid rgba(255,255,255,0.1);
}

/* Default stacked state */
.card-left { transform: rotate(-3deg) scale(0.95); z-index: 1; opacity: 0.7; }
.card-right { transform: rotate(3deg) scale(0.95); z-index: 2; opacity: 0.7; }
.card-center { transform: rotate(0deg) scale(1); z-index: 3; }

/* Fan out on hover */
.fan-container:hover .card-left {
    transform: translateX(-40%) rotate(-15deg) scale(0.95);
    opacity: 1;
    box-shadow: -15px 15px 30px rgba(0,0,0,0.8);
}
.fan-container:hover .card-right {
    transform: translateX(40%) rotate(15deg) scale(0.95);
    opacity: 1;
    box-shadow: 15px 15px 30px rgba(0,0,0,0.8);
}
.fan-container:hover .card-center {
    transform: translateY(-5%) scale(1.05);
    box-shadow: 0 25px 50px rgba(0,0,0,0.9), 0 0 30px rgba(0, 229, 255, 0.4);
}

.fan-container:hover .glowing-border-backdrop {
    filter: hue-rotate(90deg) brightness(1.5);
    transform: scale(1.1);
}


/* Lightshow CSS completely removed */


/* --- SAFE WILD LIGHT SHOW --- */
.stage-haze {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(255, 0, 127, 0.1) 40%, rgba(0, 0, 0, 0.6) 100%);
    opacity: 0;
    z-index: 2;
    pointer-events: none;
    transition: opacity 1s;
}

.intro-gate-overlay.lightshow-active .stage-haze {
    opacity: 1;
    animation: pulseHaze 4s infinite alternate;
}

@keyframes pulseHaze {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.1); opacity: 1; }
}

.concert-lasers {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.5s;
}

.intro-gate-overlay.lightshow-active .concert-lasers {
    opacity: 1;
}

/* Reduced to 3 lasers, no mix-blend-mode */
.laser {
    position: absolute;
    bottom: -10%;
    width: 3px;
    height: 150vh;
    transform-origin: bottom center;
    opacity: 0.6;
}

.laser.beam-1 { left: 20%; background: var(--accent-gold); box-shadow: 0 0 10px var(--accent-gold); }
.laser.beam-2 { left: 50%; background: var(--accent-cyan); box-shadow: 0 0 10px var(--accent-cyan); }
.laser.beam-3 { right: 20%; background: var(--accent-pink); box-shadow: 0 0 10px var(--accent-pink); }

.intro-gate-overlay.lightshow-active .laser.beam-1 { animation: sweepLeft 2.1s infinite alternate ease-in-out; }
.intro-gate-overlay.lightshow-active .laser.beam-2 { animation: sweepCenter 2.4s infinite alternate ease-in-out; }
.intro-gate-overlay.lightshow-active .laser.beam-3 { animation: sweepRight 2.5s infinite alternate ease-in-out; }

@keyframes sweepLeft {
    0% { transform: rotate(-60deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: rotate(20deg); opacity: 0; }
}
@keyframes sweepRight {
    0% { transform: rotate(60deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: rotate(-20deg); opacity: 0; }
}
@keyframes sweepCenter {
    0% { transform: rotate(-35deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: rotate(35deg); opacity: 0; }
}

/* Strobe Animation */
.intro-gate-overlay.lightshow-active .strobe-flash {
    animation: strobeRage 0.15s infinite;
}

@keyframes strobeRage {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.9; }
}

/* Scanner line */
.scanner-laser {
    position: absolute;
    top: 55px; /* Start below the barcode */
    left: -10px;
    right: -10px;
    height: 3px;
    background: #ff007f;
    box-shadow: 0 0 15px #ff007f;
    opacity: 0;
    transform: translateY(0);
    z-index: 10;
}

.intro-gate-overlay.scanning .scanner-laser {
    opacity: 1;
    animation: scanLine 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
}

@keyframes scanLine {
    0% { transform: translateY(0); opacity: 0; }
    10% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translateY(-65px); opacity: 0; }
}

/* Fade out entire overlay smoothly and disable interactions */
.intro-gate-overlay.fade-out {
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 2.5s ease-out !important;
}


/* ==========================================================================
   ANIMATED SHOWCASE BOX (PROMO REEL)
   ========================================================================== */

.animated-showcase-box {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
    cursor: pointer;
}

.animated-showcase-box.border-pink {
    box-shadow: 0 0 20px rgba(255, 0, 127, 0.4);
    border: 2px solid var(--accent-pink);
}

/* Intro Overlay */
.showcase-intro {
    position: absolute;
    inset: 0;
    z-index: 10;
    background: #09090e;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease-out, visibility 0.8s;
}

.showcase-intro.playing {
    opacity: 0;
    visibility: hidden;
}

.showcase-logo {
    width: 150px;
    height: auto;
    z-index: 2;
    margin-bottom: 20px;
}

.showcase-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 0, 127, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulseGlow 2s infinite alternate;
}

@keyframes pulseGlow {
    from { transform: scale(1); opacity: 0.5; }
    to { transform: scale(1.3); opacity: 1; }
}

.showcase-play-overlay {
    z-index: 2;
    text-align: center;
}

.showcase-play-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 0, 127, 0.2);
    border: 1px solid var(--accent-pink);
    color: var(--accent-pink);
    font-size: 1.2rem;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.animated-showcase-box:hover .showcase-play-btn {
    background: var(--accent-pink);
    color: #000;
    transform: scale(1.1);
}

.showcase-title {
    font-family: var(--font-heading);
    letter-spacing: 2px;
    color: #fff;
    font-size: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

/* Slideshow */
.showcase-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.showcase-slider .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.showcase-slider .slide.slide-active {
    opacity: 1;
    animation: kenBurns 6s linear forwards;
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

/* Watermark */
.showcase-watermark {
    position: absolute;
    bottom: 15px;
    right: 20px;
    z-index: 5;
    font-family: var(--font-heading);
    letter-spacing: 3px;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 1s;
    text-shadow: 0 2px 10px rgba(0,0,0,0.9);
}

.animated-showcase-box.is-playing .showcase-watermark {
    opacity: 0.8;
}
