/* ========================================
   WILUX PRINT Christmas Web App 2024
   WILUX Farben: Rot #E30613, Schwarz #1D1D1B, Weiss #FFFFFF
   ======================================== */

/* CSS Variables */
:root {
    /* WILUX Primary Colors */
    --wilux-red: #E30613;
    --wilux-red-dark: #b8050f;
    --wilux-red-light: #ff1a27;
    --wilux-black: #1D1D1B;
    --wilux-black-light: #2a2a28;
    --wilux-white: #FFFFFF;
    
    /* Derived Colors */
    --bg-dark: #1D1D1B;
    --bg-darker: #141413;
    --bg-card: #252523;
    
    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    
    /* Glow Effects */
    --glow-red: 0 0 60px rgba(227, 6, 19, 0.4), 0 0 120px rgba(227, 6, 19, 0.2);
    --glow-red-intense: 0 0 40px rgba(227, 6, 19, 0.6), 0 0 80px rgba(227, 6, 19, 0.4), 0 0 120px rgba(227, 6, 19, 0.2);
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Transitions */
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-darker);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
}

/* ========================================
   GATE SCENE - START SCREEN
   ======================================== */
.gate-scene {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 100;
    transition: opacity 1.2s var(--transition-smooth), transform 1.2s var(--transition-smooth);
    overflow: hidden;
}

.gate-scene.hidden {
    opacity: 0;
    transform: scale(1.05);
    pointer-events: none;
}

/* Gate Doors Container */
.gate-doors-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: 5;
    perspective: 2000px;
}

/* Gate Door Styles */
.gate-door {
    flex: 1;
    height: 100%;
    position: relative;
    transition: transform 2s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.gate-door-left {
    transform-origin: left center;
    background: linear-gradient(135deg, var(--wilux-black) 0%, var(--bg-card) 100%);
}

.gate-door-right {
    transform-origin: right center;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--wilux-black) 100%);
}

.gate-door.open.gate-door-left {
    transform: rotateY(-105deg);
}

.gate-door.open.gate-door-right {
    transform: rotateY(105deg);
}

.door-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, 
            transparent 0%, 
            transparent 49.5%, 
            rgba(255, 255, 255, 0.02) 49.5%, 
            rgba(255, 255, 255, 0.02) 50.5%, 
            transparent 50.5%, 
            transparent 100%);
    background-size: 8px 8px;
}

.door-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, 
            transparent 0%, 
            transparent 49.5%, 
            rgba(255, 255, 255, 0.015) 49.5%, 
            rgba(255, 255, 255, 0.015) 50.5%, 
            transparent 50.5%, 
            transparent 100%);
    background-size: 12px 12px;
}

/* Center Divider Line - Top Part */
.center-divider {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: calc(50vh - 160px);
    background: linear-gradient(180deg, 
        transparent 0%, 
        var(--wilux-red) 40%, 
        var(--wilux-red) 100%);
    z-index: 6;
    box-shadow: 0 0 20px rgba(227, 6, 19, 0.5), 0 0 40px rgba(227, 6, 19, 0.3);
    transition: opacity 0.5s ease-out;
}

/* Center Divider Line - Bottom Part */
.center-divider::after {
    content: '';
    position: absolute;
    top: calc(100% + 320px);
    left: 0;
    width: 3px;
    height: calc(50vh - 160px);
    background: linear-gradient(180deg, 
        var(--wilux-red) 0%, 
        var(--wilux-red) 60%, 
        transparent 100%);
    box-shadow: 0 0 20px rgba(227, 6, 19, 0.5), 0 0 40px rgba(227, 6, 19, 0.3);
}

.center-divider.hidden {
    opacity: 0;
}

/* Center Glow */
.center-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, 
        rgba(227, 6, 19, 0.15) 0%, 
        rgba(227, 6, 19, 0.08) 30%, 
        transparent 70%);
    z-index: 5;
    pointer-events: none;
}

/* Main Content Container */
.main-content-wrapper {
    position: relative;
    z-index: 15;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Play Button */
.play-button-container {
    position: relative;
    cursor: pointer;
    margin-bottom: 40px;
}

.play-button {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--wilux-red) 0%, var(--wilux-red-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s var(--transition-smooth);
    box-shadow: var(--glow-red);
}

.play-button::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--wilux-red);
    opacity: 0.6;
}

.play-button::after {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 1px solid rgba(227, 6, 19, 0.3);
}

.play-icon {
    width: 0;
    height: 0;
    border-left: 30px solid var(--wilux-white);
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    margin-left: 8px;
    transition: all 0.3s var(--transition-smooth);
}

.play-button-container:hover .play-button {
    transform: scale(1.08);
    box-shadow: var(--glow-red-intense);
}

.play-button-container:hover .play-icon {
    border-left-color: var(--wilux-white);
}

/* Pulse Ring Animation */
.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 2px solid var(--wilux-red);
    border-radius: 50%;
    animation: pulseRing 2s ease-out infinite;
    pointer-events: none;
}

.pulse-ring:nth-child(2) {
    animation-delay: 0.6s;
}

.pulse-ring:nth-child(3) {
    animation-delay: 1.2s;
}

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

/* Brand Title */
.brand-title {
    font-family: var(--font-body);
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 15px;
}

/* Subtitle */
.brand-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--wilux-white);
    opacity: 1;
    text-shadow: 
        0 0 20px rgba(227, 6, 19, 0.6),
        0 0 40px rgba(227, 6, 19, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.8);
    margin-top: 15px;
    position: relative;
    z-index: 20;
    line-height: 1.8;
}

.brand-subtitle .subtitle-action {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 5px;
    color: var(--wilux-red);
    margin-top: 5px;
    text-shadow: 
        0 0 15px rgba(227, 6, 19, 0.8),
        0 0 30px rgba(227, 6, 19, 0.5);
    animation: subtitlePulse 2s ease-in-out infinite;
}

@keyframes subtitlePulse {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 1; text-shadow: 0 0 25px rgba(227, 6, 19, 1), 0 0 50px rgba(227, 6, 19, 0.7); }
}

/* Main Content Wrapper States */
.main-content-wrapper {
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.main-content-wrapper.hidden {
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
}



/* ========================================
   SNOWFALL EFFECT
   ======================================== */
.snowfall {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    top: -20px;
    color: #ffffff;
    opacity: 1;
    font-size: 12px;
    animation: snowfall linear infinite;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8), 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes snowfall {
    0% {
        transform: translateY(0) rotate(0deg) translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg) translateX(40px);
        opacity: 0.4;
    }
}

/* ========================================
   MAIN EXPERIENCE
   ======================================== */
.main-experience {
    min-height: 100vh;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s var(--transition-smooth), visibility 1s;
    position: relative;
    background: var(--bg-darker);
}

.main-experience.visible {
    opacity: 1;
    visibility: visible;
}

/* ========================================
   SITE HEADER - Navigation + Audio Player
   ======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    background: rgba(20, 20, 19, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(227, 6, 19, 0.1);
}

/* Navigation Bar */
.main-nav {
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ========================================
   AUDIO PLAYER BAR - Integrated in Header
   ======================================== */
.audio-player-bar {
    background: linear-gradient(180deg, rgba(30, 30, 28, 0.95) 0%, rgba(25, 25, 23, 0.98) 100%);
    border-top: 1px solid rgba(227, 6, 19, 0.15);
    padding: 12px 30px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s var(--transition-smooth);
}

.main-experience.visible .audio-player-bar {
    opacity: 1;
    max-height: 100px;
}

.player-content {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Player Artwork */
.player-artwork {
    flex-shrink: 0;
}

.player-artwork .vinyl-record {
    width: 50px;
    height: 50px;
}

.player-artwork .vinyl-label {
    width: 22px;
    height: 22px;
}

.player-artwork .vinyl-logo {
    width: 12px;
    height: 12px;
}

.player-artwork .swiss-cross-small span:first-child {
    width: 8px;
    height: 3px;
}

.player-artwork .swiss-cross-small span:last-child {
    width: 3px;
    height: 8px;
}

/* Player Info */
.player-info {
    display: flex;
    flex-direction: column;
    min-width: 140px;
}

.player-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--wilux-white);
    white-space: nowrap;
}

.player-artist {
    font-size: 0.75rem;
    color: var(--text-muted);
    white-space: nowrap;
}

/* Player Progress */
.player-progress {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 500px;
}

.player-progress .progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.player-progress .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--wilux-red), var(--wilux-red-light));
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s linear;
}

.player-progress .progress-handle {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--wilux-white);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(227, 6, 19, 0.5);
    opacity: 0;
    transition: opacity 0.2s;
}

.player-progress .progress-bar:hover .progress-handle {
    opacity: 1;
}

.player-time {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
    min-width: 35px;
}

/* Player Controls */
.player-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.player-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: all 0.3s var(--transition-smooth);
}

.player-btn:hover {
    background: rgba(227, 6, 19, 0.2);
    transform: scale(1.05);
}

.player-btn-main {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--wilux-red) 0%, var(--wilux-red-dark) 100%);
    color: var(--wilux-white);
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(227, 6, 19, 0.4);
}

.player-btn-main:hover {
    background: linear-gradient(135deg, var(--wilux-red-light) 0%, var(--wilux-red) 100%);
    box-shadow: 0 6px 25px rgba(227, 6, 19, 0.5);
    transform: scale(1.08);
}

/* Player Volume */
.player-volume {
    display: flex;
    align-items: center;
    gap: 8px;
}

.player-volume .volume-slider {
    width: 80px;
    height: 4px;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    cursor: pointer;
}

.player-volume .volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: var(--wilux-red);
    border-radius: 50%;
    cursor: pointer;
}

/* Player Visualizer */
.player-visualizer {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 30px;
}

.player-visualizer .visualizer-bar {
    width: 3px;
    background: linear-gradient(to top, var(--wilux-red), var(--wilux-red-light));
    border-radius: 2px;
    transition: height 0.1s;
}

/* Responsive Header Player */
@media (max-width: 1024px) {
    .player-progress {
        max-width: 300px;
    }
    
    .player-visualizer {
        display: none;
    }
}

@media (max-width: 768px) {
    .audio-player-bar {
        padding: 10px 15px;
    }
    
    .player-content {
        gap: 12px;
    }
    
    .player-info {
        display: none;
    }
    
    .player-progress {
        max-width: 200px;
    }
    
    .player-volume .volume-slider {
        display: none;
    }
}

@media (max-width: 480px) {
    .player-progress {
        display: none;
    }
    
    .player-content {
        justify-content: center;
    }
}

.nav-logo {
    height: 55px;
    mix-blend-mode: lighten;
    filter: brightness(1.1);
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 12px 28px;
    border: 2px solid var(--wilux-red);
    border-radius: 30px;
    transition: all 0.3s var(--transition-smooth);
    letter-spacing: 1px;
}

.nav-link:hover {
    background: var(--wilux-red);
    color: var(--wilux-white);
    box-shadow: var(--glow-red);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 20px 100px;
    position: relative;
    overflow: hidden;
    background: var(--bg-darker);
}

.hero-content {
    text-align: center;
    animation: heroFadeIn 1.5s var(--transition-smooth) 0.5s both;
    position: relative;
    z-index: 10;
}

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

/* Christmas Badge - Premium Design */
.christmas-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--wilux-red) 0%, var(--wilux-red-dark) 100%);
    padding: 14px 32px;
    border-radius: 50px;
    margin-bottom: 40px;
    box-shadow: 
        var(--glow-red), 
        0 8px 32px rgba(227, 6, 19, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.christmas-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: badgeShine 3s ease-in-out infinite;
}

@keyframes badgeShine {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wilux-white);
    font-size: 0.9rem;
    opacity: 0.9;
    animation: snowflakeSpin 8s linear infinite;
}

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

.christmas-badge .badge-text {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--wilux-white);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-title .line-1 {
    display: block;
    opacity: 0.95;
}

.hero-title .line-2 {
    display: block;
    color: var(--wilux-red);
    text-shadow: 0 0 60px rgba(227, 6, 19, 0.4);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto;
}

/* Scroll Indicator */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: fadeInUp 1s ease-out 1.5s both;
}

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

.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    position: relative;
}

.scroll-wheel {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--wilux-red);
    border-radius: 2px;
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 0.3;
        transform: translateX(-50%) translateY(10px);
    }
}

.scroll-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ========================================
   JOURNEY SECTION - Ultra Premium Design
   ======================================== */
.journey-section {
    padding: 140px 20px;
    position: relative;
    overflow: hidden;
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(227, 6, 19, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(227, 6, 19, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-darker) 0%, var(--wilux-black) 50%, var(--bg-darker) 100%);
}

.journey-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 100px,
            rgba(227, 6, 19, 0.02) 100px,
            rgba(227, 6, 19, 0.02) 101px
        );
    pointer-events: none;
}

/* Journey Header */
.journey-header {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
}

.journey-header::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--wilux-red), transparent);
    border-radius: 2px;
}

.journey-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--wilux-white);
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.journey-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Journey Timeline */
.journey-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0;
}

/* Timeline Track - Premium */
.timeline-track {
    position: absolute;
    top: 38px;
    left: 10%;
    right: 10%;
    height: 4px;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.03),
        rgba(255, 255, 255, 0.08) 50%,
        rgba(255, 255, 255, 0.03));
    border-radius: 3px;
    overflow: visible;
    box-shadow: 
        inset 0 1px 3px rgba(0, 0, 0, 0.3),
        0 1px 0 rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.timeline-track::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    bottom: -8px;
    background: linear-gradient(90deg,
        transparent,
        rgba(227, 6, 19, 0.03) 20%,
        rgba(227, 6, 19, 0.05) 50%,
        rgba(227, 6, 19, 0.03) 80%,
        transparent);
    border-radius: 10px;
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, 
        var(--wilux-red-dark),
        var(--wilux-red),
        var(--wilux-red-light),
        var(--wilux-red));
    background-size: 200% 100%;
    border-radius: 3px;
    animation: progressFill 5s ease-out forwards, progressGradient 3s ease-in-out infinite;
    animation-delay: 0.5s, 0s;
    box-shadow: 0 0 20px rgba(227, 6, 19, 0.5);
}

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

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

.timeline-glow {
    position: absolute;
    top: -10px;
    left: 0;
    height: 24px;
    width: 0%;
    background: radial-gradient(ellipse at center, 
        rgba(227, 6, 19, 0.4) 0%,
        rgba(227, 6, 19, 0.2) 40%,
        transparent 70%);
    filter: blur(8px);
    animation: progressFill 5s ease-out forwards;
    animation-delay: 0.5s;
}

/* Stop Connector - Line from marker to timeline */
.stop-connector {
    display: none;
}

/* Journey Stops - Premium */
.journey-stops {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

.journey-stop {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    animation: stopReveal 1s var(--transition-smooth) forwards;
    flex: 1;
    max-width: 200px;
    position: relative;
}

.journey-stop::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(227, 6, 19, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.journey-stop:hover::before {
    opacity: 1;
}

.journey-stop[data-stop="1"] { animation-delay: 0.2s; }
.journey-stop[data-stop="2"] { animation-delay: 0.5s; }
.journey-stop[data-stop="3"] { animation-delay: 0.8s; }
.journey-stop[data-stop="4"] { animation-delay: 1.1s; }
.journey-stop[data-stop="5"] { animation-delay: 1.4s; }

@keyframes stopReveal {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.85);
        filter: blur(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

/* Stop Marker - Ultra Premium */
.stop-marker {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
    cursor: pointer;
    transition: transform 0.5s var(--transition-bounce);
    z-index: 5;
    background: var(--bg-darker);
    border-radius: 50%;
}

.stop-marker:hover {
    transform: scale(1.15) translateY(-5px);
}

.marker-ring {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(227, 6, 19, 0.25);
    border-radius: 50%;
    transition: all 0.5s var(--transition-smooth);
    background: linear-gradient(135deg, 
        rgba(227, 6, 19, 0.05) 0%, 
        transparent 50%,
        rgba(227, 6, 19, 0.03) 100%);
}

.marker-ring::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(227, 6, 19, 0.1);
    transition: all 0.5s var(--transition-smooth);
}

.stop-marker:hover .marker-ring {
    border-color: var(--wilux-red);
    box-shadow: 
        0 0 30px rgba(227, 6, 19, 0.4),
        0 10px 40px rgba(227, 6, 19, 0.2),
        inset 0 0 20px rgba(227, 6, 19, 0.1);
}

.stop-marker:hover .marker-ring::before {
    border-color: rgba(227, 6, 19, 0.4);
    transform: scale(1.1);
}

.stop-marker.active .marker-ring {
    border-color: var(--wilux-red);
    box-shadow: 
        0 0 40px rgba(227, 6, 19, 0.5),
        0 15px 50px rgba(227, 6, 19, 0.3),
        inset 0 0 25px rgba(227, 6, 19, 0.15);
}

.marker-icon {
    position: absolute;
    inset: 5px;
    background: linear-gradient(145deg, 
        rgba(37, 37, 35, 0.95) 0%, 
        rgba(29, 29, 27, 0.98) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--wilux-red);
    transition: all 0.5s var(--transition-smooth);
    box-shadow: 
        inset 0 2px 10px rgba(255, 255, 255, 0.05),
        inset 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.marker-icon::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
}

.stop-marker:hover .marker-icon {
    background: linear-gradient(145deg, 
        var(--wilux-red) 0%, 
        var(--wilux-red-dark) 100%);
    color: var(--wilux-white);
    box-shadow: 
        inset 0 2px 15px rgba(255, 255, 255, 0.2),
        inset 0 -2px 15px rgba(0, 0, 0, 0.3),
        0 5px 20px rgba(227, 6, 19, 0.3);
}

.stop-marker.active .marker-icon {
    background: linear-gradient(145deg, 
        var(--wilux-red) 0%, 
        var(--wilux-red-dark) 100%);
    color: var(--wilux-white);
    box-shadow: 
        inset 0 2px 15px rgba(255, 255, 255, 0.25),
        inset 0 -2px 15px rgba(0, 0, 0, 0.3),
        0 8px 30px rgba(227, 6, 19, 0.4);
}

.marker-pulse {
    position: absolute;
    inset: -8px;
    border: 2px solid var(--wilux-red);
    border-radius: 50%;
    opacity: 0;
}

.stop-marker.active .marker-pulse {
    animation: markerPulse 2.5s ease-out infinite;
}

@keyframes markerPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Stop Content - Premium */
.stop-content {
    padding: 0 15px;
    position: relative;
}

.stop-number {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--wilux-red);
    letter-spacing: 3px;
    margin-bottom: 10px;
    padding: 4px 12px;
    background: rgba(227, 6, 19, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(227, 6, 19, 0.2);
}

.stop-content .stop-title {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--wilux-white);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.journey-stop:hover .stop-content .stop-title {
    color: var(--wilux-red-light);
}

.stop-content .stop-desc {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    max-width: 160px;
    margin: 0 auto;
}

/* Floating Label - Premium Golden */
.floating-label {
    position: absolute;
    top: 10px;
    left: 0;
    z-index: 20;
    animation: floatAcross 10s ease-in-out infinite;
    animation-delay: 2s;
    opacity: 0;
}

@keyframes floatAcross {
    0% {
        left: 5%;
        opacity: 0;
        transform: translateY(0) rotate(-3deg) scale(0.9);
    }
    8% {
        opacity: 1;
        transform: translateY(-10px) rotate(-2deg) scale(1);
    }
    25% {
        transform: translateY(-25px) rotate(2deg) scale(1.05);
    }
    50% {
        transform: translateY(-15px) rotate(-1deg) scale(1);
    }
    75% {
        transform: translateY(-20px) rotate(1deg) scale(1.02);
    }
    92% {
        opacity: 1;
    }
    100% {
        left: calc(100% - 100px);
        opacity: 0;
        transform: translateY(-10px) rotate(-2deg) scale(0.95);
    }
}

.floating-label .label-body {
    position: relative;
    background: linear-gradient(145deg, 
        #ffd700 0%,
        #f4c430 20%,
        #daa520 50%,
        #f4c430 80%,
        #ffd700 100%);
    padding: 14px 24px;
    border-radius: 10px;
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 215, 0, 0.4),
        0 0 60px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.label-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.6),
        rgba(255, 255, 255, 0.8),
        rgba(255, 255, 255, 0.6),
        transparent);
    animation: labelShine 3s ease-in-out infinite;
}

@keyframes labelShine {
    0% { left: -100%; }
    50%, 100% { left: 200%; }
}

.floating-label .label-text {
    display: block;
    font-size: 0.85rem;
    font-weight: 900;
    color: var(--wilux-red);
    letter-spacing: 4px;
    text-align: center;
    margin-bottom: 8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.label-barcode {
    width: 70px;
    height: 18px;
    margin: 0 auto;
    background: repeating-linear-gradient(
        90deg,
        var(--wilux-black) 0px,
        var(--wilux-black) 2px,
        transparent 2px,
        transparent 5px
    );
    border-radius: 2px;
}

.label-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(ellipse, 
        rgba(255, 215, 0, 0.5) 0%, 
        rgba(255, 215, 0, 0.3) 30%,
        rgba(227, 6, 19, 0.2) 60%,
        transparent 80%);
    filter: blur(15px);
    z-index: -1;
    animation: glowPulse 2s ease-in-out infinite;
}

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

/* ========================================
   AUDIO SECTION
   ======================================== */
.audio-section {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.audio-card {
    background: linear-gradient(145deg, rgba(42, 42, 40, 0.6), rgba(20, 20, 19, 0.8));
    border: 1px solid rgba(227, 6, 19, 0.2);
    border-radius: 30px;
    padding: 50px;
    max-width: 550px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(227, 6, 19, 0.05);
    backdrop-filter: blur(20px);
}

.audio-artwork {
    position: relative;
    width: 180px;
    height: 180px;
}

/* Vinyl Record */
.vinyl-record {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center,
        var(--bg-card) 0%,
        var(--wilux-black) 28%,
        var(--wilux-black-light) 30%,
        var(--wilux-black) 48%,
        var(--wilux-black-light) 50%,
        var(--wilux-black) 68%,
        var(--wilux-black-light) 70%,
        var(--wilux-black) 100%);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s;
}

.vinyl-record.spinning {
    animation: spin 3s linear infinite;
}

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

.vinyl-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--wilux-red) 0%, var(--wilux-red-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.2);
}

.vinyl-logo {
    width: 35px;
    height: 35px;
    background: var(--wilux-white);
    border-radius: 4px;
    position: relative;
}

.swiss-cross-small span:first-child {
    position: absolute;
    width: 22px;
    height: 7px;
    background: var(--wilux-red);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.swiss-cross-small span:last-child {
    position: absolute;
    width: 7px;
    height: 22px;
    background: var(--wilux-red);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Audio Visualizer */
.audio-visualizer {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
    height: 45px;
    align-items: flex-end;
}

.visualizer-bar {
    width: 4px;
    background: linear-gradient(to top, var(--wilux-red), var(--wilux-red-light));
    border-radius: 2px;
    transition: height 0.1s;
}

/* Audio Info */
.audio-info {
    width: 100%;
    text-align: center;
    margin-top: 15px;
}

.song-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.song-artist {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* Progress Bar */
.progress-container {
    width: 100%;
    margin-bottom: 30px;
}

.progress-bar {
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    position: relative;
    cursor: pointer;
    overflow: visible;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--wilux-red), var(--wilux-red-light));
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s linear;
}

.progress-handle {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background: var(--wilux-white);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(227, 6, 19, 0.5);
    opacity: 0;
    transition: opacity 0.2s;
}

.progress-bar:hover .progress-handle {
    opacity: 1;
}

.time-display {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Audio Controls */
.audio-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.control-btn {
    width: 50px;
    height: 50px;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.control-btn:hover {
    background: rgba(227, 6, 19, 0.2);
    transform: scale(1.08);
}

.control-btn.play-btn {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--wilux-red) 0%, var(--wilux-red-dark) 100%);
    color: var(--wilux-white);
    font-size: 1.3rem;
    box-shadow: var(--glow-red);
}

.control-btn.play-btn:hover {
    background: linear-gradient(135deg, var(--wilux-red-light) 0%, var(--wilux-red) 100%);
    box-shadow: var(--glow-red-intense);
}

/* Volume Control */
.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.volume-slider-container {
    width: 0;
    overflow: hidden;
    transition: width 0.3s var(--transition-smooth);
}

.volume-control:hover .volume-slider-container {
    width: 100px;
}

.volume-slider {
    -webkit-appearance: none;
    width: 100px;
    height: 5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    background: var(--wilux-red);
    border-radius: 50%;
    cursor: pointer;
}

/* ========================================
   MESSAGE SECTION
   ======================================== */
.message-section {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.message-card {
    background: linear-gradient(145deg, rgba(42, 42, 40, 0.5), rgba(20, 20, 19, 0.7));
    border: 1px solid rgba(227, 6, 19, 0.15);
    border-radius: 25px;
    padding: 70px 50px;
    max-width: 650px;
    width: 100%;
    position: relative;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.message-decoration .corner {
    position: absolute;
    width: 35px;
    height: 35px;
    border-color: var(--wilux-red);
    border-style: solid;
    opacity: 0.6;
}

.corner.top-left {
    top: 25px;
    left: 25px;
    border-width: 2px 0 0 2px;
}

.corner.top-right {
    top: 25px;
    right: 25px;
    border-width: 2px 2px 0 0;
}

.corner.bottom-left {
    bottom: 25px;
    left: 25px;
    border-width: 0 0 2px 2px;
}

.corner.bottom-right {
    bottom: 25px;
    right: 25px;
    border-width: 0 2px 2px 0;
}

.message-content {
    text-align: center;
}

.message-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 600;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.title-decoration {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--wilux-red), transparent);
}

.message-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.message-text.highlight-text {
    color: var(--wilux-red);
    font-weight: 500;
    font-size: 1.2rem;
}

.signature {
    margin-top: 50px;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.signature-text {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.signature-location {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.signature-location i {
    color: var(--wilux-red);
}

/* ========================================
   FOOTER - Premium Modern Design
   ======================================== */
.main-footer {
    background: linear-gradient(180deg, var(--bg-darker) 0%, #0a0a09 100%);
    border-top: 1px solid rgba(227, 6, 19, 0.15);
    position: relative;
    overflow: hidden;
}

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

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 40px;
}

/* Footer Bottom Simple */
.footer-bottom-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Footer Grid - 3 Column Layout */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
}

/* Footer Columns */
.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col-left {
    align-items: flex-start;
}

.footer-col-center {
    align-items: center;
}

.footer-col-right {
    align-items: flex-end;
}

/* Company Name & Tagline */
.footer-company-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--wilux-white);
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--text-secondary);
    letter-spacing: 0.3px;
}

/* Address Block */
.footer-address-block {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: linear-gradient(135deg, rgba(227, 6, 19, 0.08) 0%, rgba(227, 6, 19, 0.03) 100%);
    border: 1px solid rgba(227, 6, 19, 0.15);
    border-radius: 12px;
}

.footer-address-block i {
    color: var(--wilux-red);
    font-size: 1.1rem;
}

.footer-address-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-address-text span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.footer-address-text span:first-child {
    color: var(--wilux-white);
    font-weight: 500;
}

/* Phone Link */
.footer-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: linear-gradient(135deg, var(--wilux-red) 0%, var(--wilux-red-dark) 100%);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(227, 6, 19, 0.25);
}

.footer-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 6, 19, 0.4);
}

.footer-phone i {
    color: var(--wilux-white);
    font-size: 0.9rem;
}

.footer-phone span {
    color: var(--wilux-white);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Footer Divider */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(227, 6, 19, 0.3), transparent);
    margin: 35px 0 25px;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
}

.footer-copyright {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-made {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-made i {
    color: var(--wilux-red);
    margin: 0 4px;
    animation: heartbeat 1.5s ease-in-out infinite;
}

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

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-bottom,
    .footer-bottom-simple {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 20px 20px;
    }
    
    .footer-copyright,
    .footer-made {
        font-size: 0.9rem;
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
    .play-button {
        width: 100px;
        height: 100px;
    }
    
    .play-icon {
        border-left-width: 24px;
        border-top-width: 16px;
        border-bottom-width: 16px;
        margin-left: 6px;
    }
    
    .pulse-ring {
        width: 100px;
        height: 100px;
    }
    
    .brand-title {
        font-size: 1.4rem;
        letter-spacing: 5px;
    }
    
    .brand-subtitle {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }
    
    .main-nav {
        padding: 20px 25px;
    }
    
    .nav-logo {
        height: 35px;
    }
    
    .nav-link {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .journey-section {
        padding: 80px 15px;
    }
    
    .journey-header {
        margin-bottom: 60px;
    }
    
    .journey-header::after {
        bottom: -25px;
        width: 50px;
    }
    
    .journey-timeline {
        padding: 40px 0;
    }
    
    .timeline-track {
        display: none;
    }
    
    .journey-stops {
        flex-direction: column;
        gap: 30px;
        padding: 0;
    }
    
    .journey-stop {
        flex-direction: row;
        gap: 25px;
        max-width: 100%;
    }
    
    .journey-stop::before {
        display: none;
    }
    
    .stop-marker {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
        margin-bottom: 0;
    }
    
    .stop-content {
        text-align: left;
        padding: 0;
    }
    
    .stop-content .stop-desc {
        max-width: 100%;
        margin: 0;
    }
    
    .floating-label {
        display: none;
    }
    
    .audio-card {
        padding: 35px 25px;
        border-radius: 25px;
    }
    
    .audio-artwork {
        width: 140px;
        height: 140px;
    }
    
    .vinyl-label {
        width: 55px;
        height: 55px;
    }
    
    .vinyl-logo {
        width: 28px;
        height: 28px;
    }
    
    .song-title {
        font-size: 1.35rem;
    }
    
    .audio-controls {
        gap: 15px;
    }
    
    .control-btn {
        width: 45px;
        height: 45px;
    }
    
    .control-btn.play-btn {
        width: 60px;
        height: 60px;
    }
    
    .message-card {
        padding: 50px 30px;
    }
    
    .message-title {
        flex-direction: column;
        gap: 12px;
    }
    
    .title-decoration {
        width: 40px;
    }
}

@media (max-width: 480px) {
    .play-button {
        width: 90px;
        height: 90px;
    }
    
    .pulse-ring {
        width: 90px;
        height: 90px;
    }
    
    .brand-title {
        font-size: 1.2rem;
        letter-spacing: 4px;
    }
    
    .brand-subtitle {
        font-size: 0.65rem;
    }
    
    .hero-section {
        padding: 80px 20px;
    }
    
    .stop-marker {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .volume-control {
        display: none;
    }
}
