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

:root {
    --primary-color: #ff6b6b;
    --secondary-color: #4ecdc4;
    --dark-bg: #0a0a0a;
    --light-bg: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --accent-color: #ffd93d;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

.navbar {
    background: transparent;
}

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

.logo-image {
    width: 180px;
    height: auto;
    max-height: 60px;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
    filter: brightness(1.2) contrast(1.2);
}

.nav-logo h1 {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ff0066, #ff3366, #cc0099);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 0, 102, 0.3);
}

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

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

.nav-menu a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    gap: 5px;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(78, 205, 196, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
    position: relative;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(64deg, #00BAFF 0%, #00BAFF 54.2249177631579%, #BADA55 80.97587719298247%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-button {
    background: linear-gradient(135deg, #ff0066, #ff3366, #cc0099, #ff6600);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 0 20px rgba(255, 0, 102, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s infinite;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    position: relative;
}

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

.mobile-video {
    filter: brightness(0.5);
}

/* Hero content styling */
.hero-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

/* Video players styling */
.desktop-video,
.mobile-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.mobile-video {
    object-fit: cover;
    display: none;
}

/* Honeypot field - hidden anti-spam */
#website {
    display: none !important;
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

/* Utility class - hidden element */
.hidden {
    display: none !important;
}

.video-controls {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}

.mute-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mute-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.mute-btn.muted {
    background: rgba(255, 107, 107, 0.8);
}

.mute-btn i {
    font-size: 16px;
}

.album-cover {
    width: 400px;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.video-container {
    width: 400px;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

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

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

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #00BAFF;
    background: linear-gradient(64deg, #00BAFF 0%, #00BAFF 54.2249177631579%, #BADA55 80.97587719298247%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Vinyl Record Player Section */
.vinyl-player-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vinyl-player-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Left Panel - Playlist */
.player-left {
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.playlist-section h3 {
    font-size: 1.5rem;
}

.spotify-embed-left {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    margin-bottom: 1.5rem;
}

.spotify-embed-left:hover {
    transform: translateY(-5px);
}

.spotify-embed-left iframe {
    width: 100%;
    height: 352px;
    border: none;
}

.track-list {
    margin-bottom: 2rem;
}

.track-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.track-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.track-item.active {
    background: rgba(255, 107, 107, 0.1);
    border-left: 3px solid var(--primary-color);
}

.track-number {
    width: 40px;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
}

.track-info {
    flex: 1;
    margin-left: 1rem;
}

.track-title {
    font-weight: 500;
    margin-bottom: 0.2rem;
    color: var(--text-primary);
}

.track-artist {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.track-duration {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Bottom Controls */
.player-controls-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.control-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.control-btn:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.play-pause-btn {
    width: 55px;
    height: 55px;
    background: var(--gradient-1);
    font-size: 1.3rem;
}

.play-pause-btn:hover {
    background: var(--gradient-2);
}

/* Waveform Progress */
.progress-section {
    margin-bottom: 1.5rem;
}

.waveform {
    position: relative;
    height: 60px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.waveform-bars {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 100%;
    padding: 0 1rem;
}

.bar {
    width: 2px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.bar:nth-child(odd) {
    height: 40%;
}

.bar:nth-child(even) {
    height: 60%;
}

.bar:nth-child(3n) {
    height: 80%;
}

.bar:nth-child(5n) {
    height: 30%;
}

.waveform:hover .bar {
    background: rgba(255, 107, 107, 0.5);
}

.progress-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
    transition: left 0.1s linear;
}

.time-display {
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.volume-control input {
    width: 100px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

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

/* Center Panel - Vinyl Record */
.player-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vinyl-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.vinyl-record {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1) 0%, transparent 20%),
        radial-gradient(circle at center, 
            #1a1a1a 0%, 
            #0a0a0a 15%, 
            #1a1a1a 16%, 
            #0a0a0a 18%, 
            #1a1a1a 20%, 
            #0a0a0a 22%, 
            #1a1a1a 24%, 
            #0a0a0a 26%, 
            #1a1a1a 28%, 
            #0a0a0a 30%, 
            #1a1a1a 32%, 
            #0a0a0a 34%, 
            #1a1a1a 36%, 
            #0a0a0a 38%, 
            #1a1a1a 40%, 
            #0a0a0a 42%, 
            #1a1a1a 44%, 
            #0a0a0a 46%, 
            #1a1a1a 48%, 
            #0a0a0a 50%, 
            #1a1a1a 52%, 
            #0a0a0a 54%, 
            #1a1a1a 56%, 
            #0a0a0a 58%, 
            #1a1a1a 60%, 
            #0a0a0a 62%, 
            #1a1a1a 64%, 
            #0a0a0a 66%, 
            #1a1a1a 68%, 
            #0a0a0a 70%, 
            #1a1a1a 72%, 
            #0a0a0a 74%, 
            #1a1a1a 76%, 
            #0a0a0a 78%, 
            #1a1a1a 80%, 
            #0a0a0a 82%, 
            #1a1a1a 84%, 
            #0a0a0a 86%, 
            #1a1a1a 88%, 
            #0a0a0a 90%, 
            #1a1a1a 92%, 
            #0a0a0a 94%, 
            #1a1a1a 96%, 
            #0a0a0a 98%, 
            #1a1a1a 100%
        );
    position: relative;
    box-shadow: 
        0 0 80px rgba(0, 0, 0, 0.9),
        inset 0 0 80px rgba(0, 0, 0, 0.7),
        0 0 20px rgba(255, 255, 255, 0.1);
    animation: spin 3s linear infinite paused;
}

.vinyl-record.playing,
.vinyl-record.spinning {
    animation-play-state: running;
}

/* Styles pour le conteneur Spotify API */
#spotifyPlayer {
    width: 100%;
    height: 352px;
    border-radius: 12px;
    overflow: hidden;
}

#spotifyPlayer iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}


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

.vinyl-grooves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    border-radius: 50%;
    background: 
        radial-gradient(circle at center, 
            transparent 0%, 
            transparent 15%, 
            rgba(255, 255, 255, 0.02) 15.5%, 
            transparent 16%, 
            transparent 18%, 
            rgba(255, 255, 255, 0.02) 18.5%, 
            transparent 19%, 
            transparent 21%, 
            rgba(255, 255, 255, 0.02) 21.5%, 
            transparent 22%, 
            transparent 24%, 
            rgba(255, 255, 255, 0.02) 24.5%, 
            transparent 25%, 
            transparent 27%, 
            rgba(255, 255, 255, 0.02) 27.5%, 
            transparent 28%, 
            transparent 30%, 
            rgba(255, 255, 255, 0.02) 30.5%, 
            transparent 31%, 
            transparent 33%, 
            rgba(255, 255, 255, 0.02) 33.5%, 
            transparent 34%, 
            transparent 36%, 
            rgba(255, 255, 255, 0.02) 36.5%, 
            transparent 37%, 
            transparent 39%, 
            rgba(255, 255, 255, 0.02) 39.5%, 
            transparent 40%, 
            transparent 42%, 
            rgba(255, 255, 255, 0.02) 42.5%, 
            transparent 43%, 
            transparent 45%, 
            rgba(255, 255, 255, 0.02) 45.5%, 
            transparent 46%, 
            transparent 48%, 
            rgba(255, 255, 255, 0.02) 48.5%, 
            transparent 49%, 
            transparent 51%, 
            rgba(255, 255, 255, 0.02) 51.5%, 
            transparent 52%, 
            transparent 54%, 
            rgba(255, 255, 255, 0.02) 54.5%, 
            transparent 55%, 
            transparent 57%, 
            rgba(255, 255, 255, 0.02) 57.5%, 
            transparent 58%, 
            transparent 60%, 
            rgba(255, 255, 255, 0.02) 60.5%, 
            transparent 61%, 
            transparent 63%, 
            rgba(255, 255, 255, 0.02) 63.5%, 
            transparent 64%, 
            transparent 66%, 
            rgba(255, 255, 255, 0.02) 66.5%, 
            transparent 67%, 
            transparent 69%, 
            rgba(255, 255, 255, 0.02) 69.5%, 
            transparent 70%, 
            transparent 72%, 
            rgba(255, 255, 255, 0.02) 72.5%, 
            transparent 73%, 
            transparent 75%, 
            rgba(255, 255, 255, 0.02) 75.5%, 
            transparent 76%, 
            transparent 78%, 
            rgba(255, 255, 255, 0.02) 78.5%, 
            transparent 79%, 
            transparent 81%, 
            rgba(255, 255, 255, 0.02) 81.5%, 
            transparent 82%, 
            transparent 84%, 
            rgba(255, 255, 255, 0.02) 84.5%, 
            transparent 85%, 
            transparent 87%, 
            rgba(255, 255, 255, 0.02) 87.5%, 
            transparent 88%, 
            transparent 90%, 
            rgba(255, 255, 255, 0.02) 90.5%, 
            transparent 91%, 
            transparent 93%, 
            rgba(255, 255, 255, 0.02) 93.5%, 
            transparent 94%, 
            transparent 96%, 
            rgba(255, 255, 255, 0.02) 96.5%, 
            transparent 97%, 
            transparent 99%, 
            rgba(255, 255, 255, 0.02) 99.5%, 
            transparent 100%
        );
}

.vinyl-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3) 0%, transparent 40%),
        radial-gradient(circle, #2a2a2a 0%, #1a1a1a 50%, #0a0a0a 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 15px rgba(0, 0, 0, 0.8),
        inset 0 0 10px rgba(0, 0, 0, 0.5),
        inset 0 0 3px rgba(255, 255, 255, 0.1);
}

.vinyl-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #2a2a2a;
    box-shadow: 
        0 0 10px rgba(0, 0, 0, 0.8),
        inset 0 0 5px rgba(0, 0, 0, 0.5);
}

.vinyl-label img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.8) contrast(1.1);
}

.tonearm {
    position: absolute;
    top: 50px;
    right: 50px;
    width: 200px;
    height: 200px;
    transform-origin: 20px 20px;
    transition: transform 0.5s ease;
}

.tonearm.playing {
    transform: rotate(25deg);
}

.tonearm-base {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background: #444;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.tonearm-arm {
    position: absolute;
    top: 16px;
    left: 20px;
    width: 150px;
    height: 8px;
    background: linear-gradient(90deg, #666 0%, #999 100%);
    border-radius: 4px;
    transform-origin: 0 50%;
}

.tonearm-head {
    position: absolute;
    top: 12px;
    left: 170px;
    width: 20px;
    height: 16px;
    background: #ff6b6b;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Right Panel - Album Info & Tour Dates */
.player-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.album-info {
    background: rgba(30, 30, 30, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.album-cover {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.album-details h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.album-details p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.album-meta {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.album-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

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

.order-btn, .artwork-btn {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.order-btn {
    background: var(--gradient-1);
    color: white;
}

.order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.3);
}

.artwork-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.artwork-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Tour Dates Panel */
.tour-dates-panel {
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tour-dates-panel h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.tour-list {
    margin-bottom: 1.5rem;
}

.tour-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 0.8rem;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.tour-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.tour-date-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--gradient-1);
    width: 50px;
    height: 50px;
    border-radius: 10px;
    justify-content: center;
    margin-right: 1rem;
}

.tour-day {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
}

.tour-month {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1;
}

.tour-details {
    flex: 1;
}

.tour-city {
    font-weight: 500;
    margin-bottom: 0.2rem;
    color: var(--text-primary);
}

.tour-venue {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.tour-status {
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
}

.tour-status.available {
    background: rgba(78, 205, 196, 0.2);
    color: var(--secondary-color);
}

.tour-status.limited {
    background: rgba(255, 217, 61, 0.2);
    color: var(--accent-color);
}

.tour-status.sold-out {
    background: rgba(255, 107, 107, 0.2);
    color: var(--primary-color);
}

.view-all-tours {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-all-tours:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Waveform Animation */
@keyframes waveformBar {
    0% { height: 20%; }
    100% { height: 80%; }
}

/* Tour Section */
.tour-section {
    padding: 5rem 0;
    background: #000000;
    min-height: 100vh;
}

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

.filter-btn {
    background: #000000;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 0.75rem 2rem;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 0;
}

.filter-btn:hover {
    background-color: #ffffff;
    color: #000000;
}

.filter-btn.active {
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.tour-count {
    text-align: center;
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.tour-count #visibleCount {
    color: #ffffff;
    font-weight: 600;
}

.tour-title {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 2px;
}

.tour-table {
    max-width: 1000px;
    margin: 0 auto;
    background: #000000;
    border: 1px solid #333333;
}

.tour-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #333333;
    transition: background-color 0.3s ease;
}

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

.tour-item:hover {
    background-color: #111111;
}

.tour-date-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    min-width: 200px;
    background: linear-gradient(135deg, #8B7FD8 0%, #6B5FC7 100%);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.tour-date {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.3;
    white-space: nowrap;
}

.tour-event {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    line-height: 1.2;
    font-weight: 500;
}

.tour-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
}

.tour-location {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
}

.tour-details .tour-event {
    font-size: 14px;
    color: rgba(206, 206, 206, 0.8);
}

.tour-action {
    flex-shrink: 0;
}

.tickets-button {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tickets-button:hover {
    background-color: #ffffff;
    color: #000000;
}

.option-btn {
    border-color: #666666 !important;
    color: #666666 !important;
}

.option-btn:hover {
    background-color: #000000 !important;
    color: #666666 !important;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: var(--light-bg);

}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h3 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #ffffff;
    font-size: 1rem;
}

.contact-item i {
    color: #ff0066;
    font-size: 1.2rem;
    width: 20px;
}

.email-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #ff0066;
    text-decoration: underline;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(20px);
}

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

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

.form-group label {
    display: block;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #ff0066;
    background: rgba(255, 255, 255, 0.15);
}

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

.datetime-row {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.date-group {
    display: flex;
    gap: 1rem;
    flex: 1;
}

.time-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.date-group select,
.time-group select {
    flex: 1;
    min-width: 80px;
}

.time-group span {
    color: #ffffff;
    font-weight: 500;
}

.submit-btn {
    background: linear-gradient(135deg, #ff0066, #ff3366, #cc0099);
    color: white;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 0, 102, 0.4);
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

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

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.quote {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #ff0066;
    border-radius: 8px;
    font-style: italic;
}

.quote p {
    color: #ffffff;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.thanks {
    color: #ff0066 !important;
    font-weight: 600;
    font-size: 1.2rem !important;
    text-align: center;
    margin-top: 2rem !important;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background: linear-gradient(64deg, #00BAFF 0%, #00BAFF 15.2249177631579%, #BADA55 80%);
    transform: translateY(-3px);
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
    transform: translateY(-1px);
}

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

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

/* Press Section Styles */
.press-section {
    padding: 5rem 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}


.press-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Featured Article */
.press-featured {
    margin-bottom: 4rem;
}

.featured-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #000000;
    border-radius: 30px;
    overflow: hidden;
    backdrop-filter: blur(40px);
    border: 2px solid rgb(52, 185, 226);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 10px 20px rgba(0, 129, 200, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    transform-style: preserve-3d;
    min-height: 400px;
}


.featured-article:hover {
    transform: translateY(-15px) scale(1.03) rotateX(2deg);
       box-shadow: 0 15px 30px rgba(255, 0, 102, 0.15);
    border-color: rgba(0, 129, 200, 0.7);
    background: #000000;
}

.featured-article .article-image {
    height: 400px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    align-self: self-end;
    justify-content: center;
}

.featured-article .article-image video,
.featured-article .article-image iframe {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.featured-article .article-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 129, 200, 0.2) 0%, transparent 50%);
    opacity: 0.3;
    pointer-events: none;
}

.featured-article .article-image img,
.featured-article .article-image video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

}

.featured-article:hover .article-image img,
.featured-article:hover .article-image video {
    transform: scale(1.08);

}

.featured-article .article-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(22, 33, 62, 0.8) 100%);
    min-height: 400px;
}


.article-category {
    display: inline-block;
    background: linear-gradient(135deg, #ff0066 0%, #ff6b6b 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 35px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 20px rgba(255, 0, 102, 0.4), 0 2px 10px rgba(255, 0, 102, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.article-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.article-category::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: 1;
}

.article-category:hover::before {
    left: 100%;
}

.article-category:hover::after {
    width: 100%;
    height: 100%;
}

.article-category:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(255, 0, 102, 0.6), 0 4px 15px rgba(255, 0, 102, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.article-category span {
    position: relative;
    z-index: 2;
}

.featured-article .article-title {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.2rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, rgb(0, 129, 200) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.featured-article:hover .article-title {
    transform: translateX(5px);
}

.article-excerpt {
    color: #e0e0e0;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 400;
    position: relative;
    padding-left: 1rem;
}

.article-excerpt::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, rgb(0, 129, 200), rgb(0, 180, 220));
    border-radius: 2px;
}

.article-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    font-size: 0.9rem;
    color: #a0a0a0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    justify-content: center;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.article-meta span::before {
    content: '·';
    color: rgb(0, 129, 200);
    font-weight: 700;
}

.article-meta span:first-child::before {
    content: '';
}

.article-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: rgb(0, 129, 200);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
    border: 2px solid rgb(0, 129, 200);
    border-radius: 50px;
    background: transparent;
    transition: all 0.3s ease;
    position: relative;
        align-self: center;
    overflow: hidden;
}

.article-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgb(0, 129, 200);
    transition: left 0.4s ease;
    z-index: -1;
}

.article-link:hover {
    color: white;
    border-color: rgb(0, 129, 200);
    transform: translateY(-2px);

}

.article-link:hover::before {
    left: 0;
}

/* Press Grid */
.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.press-article {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.press-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 0, 102, 0.15);
}

.press-article .article-image {
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.press-article .article-image img,
.press-article .article-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.press-article:hover .article-image img {
    transform: scale(1.05);
}

.press-article .article-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.press-article .article-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.press-article .article-excerpt {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.press-article .article-meta {
    gap: 1rem;
    font-size: 0.8rem;
        width: 100%;
    justify-content: center;
}

/* Press CTA */
.press-cta {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.press-cta p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

.contact-press-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ff0066;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
}

.contact-press-btn:hover {
    background: #ff6b6b;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 15px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        z-index: 999;
        padding: 2rem 0;
        display: flex;
        backdrop-filter: blur(10px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1.5rem 0;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
        padding: 1rem;
        display: block;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .desktop-video {
        display: none !important;
    }
    
    .mobile-video {
        display: block !important;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 20px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
    
    .album-cover {
        width: 300px;
        height: 300px;
    }
    
    /* Vinyl Player Responsive */
    .vinyl-player-section {
        padding: 3rem 0;
        min-height: auto;
    }
    
    .vinyl-player-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 10px;
    }
    
    .player-center,
    .player-right {
        display: none;
    }
    
    .vinyl-container {
        width: 300px;
        height: 300px;
    }
    
    .player-left {
        padding: 1.5rem;
    }
    
    .control-buttons {
        gap: 0.8rem;
    }
    
    .control-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .play-pause-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .waveform {
        height: 50px;
    }
    
    .about-section {
        padding: 3rem 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .about-image {
        width: 100%;
        max-width: 100%;
    }
    
    .about-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
    }
    
    .quote {
        margin: 1.5rem 0;
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .quote p {
        font-size: 1rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .social-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Tour Section Responsive */
    .tour-section {
        padding: 3rem 0;
    }
    
    .tour-title {
        font-size: 2rem;
    }
    
    .tour-table {
        border: none;
        background: transparent;
    }
    
    .tour-item {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: 1.5rem 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        background: transparent;
    }
    
    .tour-item:hover {
        background: transparent;
    }
    
    .tour-date-info {
        min-width: auto;
        width: 110px;
        padding: 0.8rem 1rem;
        background: linear-gradient(135deg, #8B7FD8 0%, #6B5FC7 100%);
        border-radius: 15px;
        text-align: center;
        flex-shrink: 0;
    }
    
    .tour-date {
        font-size: 1.1rem;
        font-weight: 700;
        text-transform: uppercase;
        display: block;
        line-height: 1.3;
    }
    
    .hide-mobile {
        display: none;
    }
    
    .tour-event {
        font-size: 0.85rem;
        font-weight: 400;
        display: block;
        margin-top: 0.2rem;
    }
    
    .tour-details {
        flex: 1;
        text-align: left;
        padding: 0 0.5rem;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
    
    .tour-location {
        font-size: 16px;
        font-weight: 500;
        line-height: 1.4;
    }
    
    .tour-details .tour-event {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.8);
    }
    
    .tour-action {
        width: auto;
        flex-shrink: 0;
    }
    
    .tickets-button {
        width: auto;
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
        background: transparent;
        border: 2px solid #ffffff;
        color: #ffffff;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .tour-filters {
        flex-wrap: wrap;
        gap: 0.8rem;
    }
    
    .filter-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }
}
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .vinyl-player-section {
        padding: 2rem 0;
        min-height: auto;
    }
    
    .control-buttons {
        gap: 0.5rem;
    }
    
    .control-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .play-pause-btn {
        width: 50px;
        height: 50px;
    }
    
    /* Logo Responsive */
    .logo-image {
        width: 140px;
        max-height: 45px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        width: 120px;
        max-height: 40px;
    }
    
    /* Hero Responsive Mobile */
    .hero-content-box {
        padding: 1rem;
    }
    
    .branding {
        padding: 1.5rem;
        max-width: 95%;
    }
    
    .branding h1 {
        font-size: 2rem;
    }
    
    .branding h2 {
        font-size: 1rem;
    }
    
    .branding p {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Contact Responsive */
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0;
    }
    
    .contact-info {
        padding: 0 1rem;
    }
    
    .contact-info h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .contact-info p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .contact-details {
        margin-top: 1.5rem;
    }
    
    .contact-item {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem 1rem;
        margin: 0 1rem;
        border-radius: 12px;
    }
    
    .form-group {
        margin-bottom: 1.2rem;
    }
    
    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-group input,
    .form-group select {
        padding: 0.75rem;
        font-size: 0.95rem;
        border-radius: 8px;
    }
    
    .datetime-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .date-group {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        width: 100%;
    }
    
    .time-group {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        gap: 0.5rem;
        width: 100%;
        align-items: center;
    }
    
    .date-group select,
    .time-group select {
        min-width: 0;
        width: 100%;
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .time-group span {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .submit-btn {
        padding: 1rem 2rem;
        font-size: 0.95rem;
        letter-spacing: 0.5px;
        margin-top: 1.5rem;
    }
    
    /* Press Section Responsive */
    .press-section {
        padding: 3rem 0;
    }
    
    .featured-article {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .featured-article .article-image {
        height: 250px;
    }
    
    .featured-article .article-content {
        padding: 2rem;
    }
    
    .featured-article .article-title {
        font-size: 1.5rem;
    }
    
    .press-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .press-article .article-image {
        height: 180px;
    }
    
    .press-article .article-content {
        padding: 1.5rem;
    }
    
    .press-article .article-title {
        font-size: 1.1rem;
    }
    
    .press-cta {
        padding: 2rem 1.5rem;
    }
    
    .press-cta p {
        font-size: 1rem;
    }
    
    .contact-press-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .contact-form {
        padding: 1.2rem 0.8rem;
        margin: 0 0.5rem;
    }
    
    .form-group input,
    .form-group select {
        font-size: 0.9rem;
        padding: 0.7rem 0.6rem;
    }
    
    .form-group label {
        font-size: 0.8rem;
    }
    
    .date-group {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.4rem;
    }
    
    .time-group {
        grid-template-columns: 1fr auto 1fr;
        gap: 0.4rem;
    }
    
    .date-group select,
    .time-group select {
        padding: 0.7rem 0.3rem;
        font-size: 0.85rem;
    }
    
    .submit-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Tour Section Responsive Mobile */
    .tour-section {
        padding: 2rem 0;
    }
    
    .tour-title {
        font-size: 1.8rem;
    }
    
    .tour-item {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0.8rem;
        padding: 1.2rem 0.8rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .tour-date-info {
        min-width: auto;
        width: 100px;
        padding: 0.7rem 0.8rem;
        background: linear-gradient(135deg, #8B7FD8 0%, #6B5FC7 100%);
        border-radius: 12px;
        flex-shrink: 0;
    }
    
    .tour-date {
        font-size: 1rem;
        font-weight: 700;
        text-transform: uppercase;
    }
    
    .hide-mobile {
        display: none;
    }
    
    .tour-event {
        font-size: 0.75rem;
        font-weight: 400;
    }
    
    .tour-details {
        flex: 1;
        text-align: left;
        padding: 0 0.3rem;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
    
    .tour-location {
        font-size: 16px;
        font-weight: 500;
        line-height: 1.3;
    }
    
    .tour-details .tour-event {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.8);
    }
    
    .tour-action {
        width: 80px;
        flex-shrink: 0;
        display: flex;
        justify-content: flex-end;
    }
    
    .tickets-button {
        width: 80px;
        padding: 0.5rem 0.5rem;
        font-size: 0.75rem;
        border: 2px solid #ffffff;
        text-align: center;
    }
    
    .tour-filters {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.75rem;
    }
}