:root {
    --primary-color: #000021;
    --accent-color: #ffffff;
    --text-color: #ffffff;
    --secondary-text: #a0a0a0;
    --hover-color: #333355;
}

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

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

html {
    scroll-behavior: smooth;
}

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

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* Skip to main content link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
}

.skip-link:focus {
    top: 0;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 33, 0.9);
    backdrop-filter: blur(10px);
    box-sizing: border-box;
}

.logo {
    height: 40px;
    display: flex;
    align-items: center;
}

.logo a {
    height: 100%;
    display: flex;
    align-items: center;
}

.logo img {
    height: 100%;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-booking {
    padding: 10px 25px;
    border: 2px solid var(--accent-color);
    border-radius: 5px;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-booking:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.nav-links a:hover {
    opacity: 0.7;
}

.hamburger {
    display: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 75vh;
    min-height: 600px;
    max-height: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
    z-index: 1;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, transparent, var(--primary-color));
    z-index: 1;
    pointer-events: none;
}

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

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

.hero-main-image {
    width: 100%;
    height: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: block;
    animation: fadeInUp 1.2s ease-out forwards;
    opacity: 0;
    object-fit: cover;
    object-position: center;
}

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

.hero-logo {
    max-width: 300px;
    width: 40vw;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.5));
    animation: fadeInUp 1s ease-out 0.3s forwards, pulse 3s ease-in-out infinite;
    opacity: 0;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    letter-spacing: 3px;
    color: var(--secondary-text);
    animation: fadeInUp 1s ease-out 0.6s forwards;
    opacity: 0;
}

.btn {
    padding: 15px 40px;
    border: 2px solid var(--accent-color);
    background: var(--accent-color);
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    animation: fadeInUp 1s ease-out 0.6s forwards, pulse 3s ease-in-out infinite;
    opacity: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary-color);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

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

.btn:hover {
    color: var(--accent-color);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.5);
}

/* Sections */
.section {
    padding: 100px 20px;
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
}

.section:first-of-type::before {
    display: none;
}

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

.section-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--accent-color);
    transition: width 0.6s ease;
}

.section-title.visible::after {
    width: 100px;
}

/* About Section */
.about-section {
    background: linear-gradient(180deg, var(--primary-color) 0%, rgba(0, 0, 33, 0.95) 100%);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.8;
}

.about-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--secondary-text);
    opacity: 0;
}

.about-intro {
    font-size: 1.15rem !important;
    font-weight: 700;
    color: var(--text-color) !important;
    margin-bottom: 30px !important;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* Carousel */
.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
}

.carousel-card {
    min-width: 250px;
    max-width: 300px;
    flex: 0 0 auto;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
}

.carousel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.cover-art {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    margin-bottom: 20px;
    border: 1px solid #333;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: grayscale(0%);
}

.carousel-card:hover .cover-art {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.carousel-card h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.release-subtitle {
    display: block;
    font-size: 0.8rem;
    color: var(--secondary-text);
    margin-top: 5px;
    font-weight: 400;
    text-transform: none;
}

.btn-small {
    font-size: 0.8rem;
    text-decoration: underline;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Live Sets */
.video-thumbnail-link {
    display: block;
    text-decoration: none;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.play-overlay i {
    font-size: 3rem;
    color: white;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.live-set-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.live-set-card:hover .play-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.live-set-card:hover .play-overlay i {
    transform: scale(1.2);
    opacity: 1;
}

.carousel-btn {
    background: transparent;
    border: none;
    color: var(--accent-color);
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

.carousel-btn:hover {
    color: var(--secondary-text);
    transform: scale(1.1);
}

/* Live Sets */
.live-sets-content {
    text-align: center;
    padding: 50px;
    border: 1px dashed rgba(255,255,255,0.1);
    color: var(--secondary-text);
}

/* Tour List */
.tour-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    opacity: 0;
}

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

.tour-item .date {
    font-weight: 900;
    font-size: 1.2rem;
    width: 100px;
}

.tour-item .venue {
    font-weight: 700;
    flex-grow: 1;
}

.tour-item .location {
    color: var(--secondary-text);
    margin-right: 20px;
}

.btn-ticket {
    padding: 10px 20px;
    background: var(--accent-color);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.8rem;
}

.btn-ticket:hover {
    background: #ddd;
}

/* Contact */
.contact-content {
    text-align: center;
}

.email-link {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin: 30px 0;
    word-break: break-all;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.social-link {
    font-size: 1.5rem;
    color: var(--text-color);
    transition: color 0.3s ease, transform 0.3s ease;
    border-bottom: none;
    opacity: 0;
    display: inline-block;
}

.social-link:hover {
    color: var(--accent-color);
    transform: translateY(-3px) scale(1.2) rotate(5deg);
    border-bottom: none;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(180deg, rgba(0, 0, 33, 0.95) 0%, var(--primary-color) 100%);
    padding: 60px 20px;
    text-align: center;
    display: flex;
    justify-content: center;
}

.newsletter-section .container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.sib-form, .sib-form-container {
    width: 100%;
    display: flex;
    justify-content: center;
    background: transparent !important;
}

#sib-container {
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    max-width: 600px !important;
    width: 100% !important;
    margin: 0 auto !important;
}

#sib-container .sib-form-block {
    background: transparent !important;
    padding: 0 !important;
}

#sib-container .input {
    font-family: 'Montserrat', sans-serif !important;
    background-color: #ffffff !important;
    border: none !important;
    color: #000000 !important;
    padding: 5px 10px !important;
    border-radius: 4px !important;
    width: 100% !important;
    transition: all 0.3s ease !important;
    text-align: center !important;
}

#sib-container .input::placeholder {
    text-align: center !important;
    color: #999 !important;
}

#sib-container .input::-webkit-input-placeholder {
    text-align: center !important;
}

#sib-container .input:-moz-placeholder {
    text-align: center !important;
}

#sib-container .input::-moz-placeholder {
    text-align: center !important;
}

#sib-container .input:-ms-input-placeholder {
    text-align: center !important;
}

#sib-container .input:focus {
    background-color: #ffffff !important;
    outline: 2px solid var(--accent-color) !important;
    box-shadow: none !important;
}

.sib-optin-label {
    display: flex !important;
    align-items: flex-start !important;
    gap: 15px !important;
    cursor: pointer !important;
    text-align: left !important;
    width: 100% !important;
    position: relative !important;
}

.sib-optin-text {
    font-size: 14px !important;
    color: var(--secondary-text) !important;
    line-height: 1.5 !important;
    flex: 1 !important;
    text-align: center;
}

#sib-container .checkbox {
    position: relative !important;
    top: 3px !important;
    left: 0 !important;
    margin-right: 12px !important;
    flex-shrink: 0 !important;
    width: 18px !important;
    height: 18px !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    background-color: transparent !important;
}

#sib-container .input_replaced:checked + .checkbox {
    background-color: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
}

#sib-container .input_replaced:checked + .checkbox::after {
    content: '' !important;
    position: absolute !important;
    left: 5px !important;
    top: 2px !important;
    width: 5px !important;
    height: 9px !important;
    border: solid var(--primary-color) !important;
    border-width: 0 2px 2px 0 !important;
    transform: rotate(45deg) !important;
    display: block !important;
}

/* Center checkbox container */
#sib-container .entry__choice {
    display: flex !important;
    justify-content: center !important;
}

#sib-container .sib-form-block__button {
    padding: 10px 20px !important;
    background-color: var(--accent-color) !important;
    color: var(--primary-color) !important;
    font-weight: 700 !important;
    font-size: 0.8rem !important;
    border: none !important;
    border-radius: 0 !important;
    cursor: pointer !important;
    margin: 20px auto 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    width: auto !important;
    letter-spacing: normal !important;
    text-transform: uppercase !important;
}

#sib-container .sib-form-block__button:hover {
    background-color: #ddd !important;
    transform: none !important;
}

#sib-container .checkbox {
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    background-color: transparent !important;
}

#sib-container .input_replaced:checked + .checkbox {
    background-color: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
}

/* Center checkbox text */
#sib-container .entry__choice label {
    justify-content: center !important;
}

#sib-container p {
    color: white !important;
}

#sib-container .sib-text-form-block p {
    color: var(--secondary-text) !important;
}

@media (max-width: 768px) {
    #sib-container {
        border-radius: 15px !important;
        padding: 30px 15px !important;
    }
}

footer {
    text-align: center;
    padding: 40px;
    color: var(--secondary-text);
    font-size: 0.8rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 20px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-color);
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        gap: 0;
    }

    .nav-links li {
        opacity: 0;
        transform: translateY(-20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links.active li {
        animation: slideDown 0.4s ease forwards;
    }

    .nav-links.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { animation-delay: 0.15s; }
    .nav-links.active li:nth-child(3) { animation-delay: 0.2s; }
    .nav-links.active li:nth-child(4) { animation-delay: 0.25s; }
    .nav-links.active li:nth-child(5) { animation-delay: 0.3s; }
    .nav-links.active li:nth-child(6) { animation-delay: 0.35s; }
    .nav-links.active li:nth-child(7) { animation-delay: 0.4s; }

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

    .nav-links a {
        display: block;
        padding: 15px 0;
    }

    .hamburger {
        display: block;
        position: relative;
        z-index: 1001;
    }

    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        background-color: white;
        transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translateY(11px);
    }

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

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-11px);
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .carousel-container {
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 20px 0;
    }

    .carousel-container::-webkit-scrollbar {
        display: none;
    }

    .carousel-track {
        display: flex;
        gap: 20px;
        padding: 0 calc(50vw - 125px);
        transition: none;
    }

    .carousel-card {
        min-width: 250px;
        max-width: 250px;
        flex-shrink: 0;
        scroll-snap-align: center;
    }

    .carousel-btn {
        display: none;
    }

    .cover-art {
        width: 100%;
        aspect-ratio: 1/1;
        object-fit: cover;
    }

    .video-thumbnail {
        aspect-ratio: 16/9;
    }

    .tour-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .tour-item .date, .tour-item .venue, .tour-item .location {
        width: auto;
        margin: 0;
    }

    .email-link {
        font-size: 1.2rem;
        margin: 20px 0;
        word-break: break-word;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%; /* Hidden by default */
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 33, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    z-index: 10000;
    transition: bottom 0.5s ease-in-out;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    color: var(--text-color);
    margin: 0;
    font-size: 0.9rem;
    flex: 1;
    min-width: 280px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-cookie {
    padding: 8px 20px;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-cookie.accept {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.btn-cookie.accept:hover {
    background-color: #ddd;
}

.btn-cookie.decline {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-color);
}

.btn-cookie.decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* ── Collide Radio Teaser ── */
.radio-teaser-card {
    display: flex;
    align-items: center;
    gap: 50px;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 44px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.radio-teaser-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 15% 50%, rgba(30,30,110,0.4) 0%, transparent 65%);
    pointer-events: none;
}

.radio-teaser-card:hover {
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.radio-teaser-artwork {
    flex-shrink: 0;
    width: 210px;
    height: 210px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.07);
    position: relative;
    z-index: 1;
}

.radio-teaser-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.radio-teaser-card:hover .radio-teaser-artwork img {
    transform: scale(1.05);
}

.radio-teaser-info {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.radio-teaser-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 12px;
}

.radio-teaser-title {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    line-height: 1.1;
    margin-bottom: 14px;
}

.radio-teaser-desc {
    color: rgba(255,255,255,0.5);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 28px;
    max-width: 450px;
}

.radio-teaser-platforms {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.radio-platform-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.radio-platform-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.22);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.radio-platform-btn .fa-youtube { color: #FF0000; }
.radio-platform-btn .fa-mixcloud { color: #7B2FFF; }
.radio-platform-btn .fa-soundcloud { color: #ff5500; }

.radio-teaser-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.18);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.radio-teaser-more:hover {
    color: #fff;
    border-bottom-color: #fff;
    gap: 12px;
}

@media (max-width: 768px) {
    .radio-teaser-card {
        flex-direction: column;
        gap: 28px;
        padding: 28px;
        text-align: center;
    }

    .radio-teaser-artwork {
        width: 180px;
        height: 180px;
        margin: 0 auto;
    }

    .radio-teaser-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .radio-teaser-platforms {
        justify-content: center;
    }

    .radio-teaser-more {
        justify-content: center;
    }
}

/* ── Tour Section Redesign ── */
.tour-year-wrapper {
    position: relative;
    padding-top: 10px;
}

.tour-year-ghost {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 9rem;
    font-weight: 900;
    letter-spacing: -8px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.04);
    line-height: 1;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.tour-year-wrapper .tour-list {
    position: relative;
    z-index: 1;
}

.tour-date-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    width: 100px;
    flex-shrink: 0;
}

.tour-date-col .date {
    width: auto;
}

.tour-upcoming-tag {
    font-size: 0.57rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    padding: 2px 8px;
    border: 1px solid rgba(255,255,255,0.4);
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    border-radius: 3px;
    white-space: nowrap;
}

.tour-item--upcoming {
    border-left: 3px solid rgba(255,255,255,0.6);
    padding-left: 27px;
    background: rgba(255,255,255,0.02);
}

.tour-archive {
    margin-top: 10px;
    position: relative;
    z-index: 1;
}

.tour-archive-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px;
    color: rgba(255,255,255,0.3);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    padding: 12px 20px;
    margin-top: 16px;
    transition: all 0.3s ease;
}

.tour-archive-toggle:hover {
    color: rgba(255,255,255,0.6);
    border-color: rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.03);
}

.tour-archive-chevron {
    font-size: 0.6rem;
    transition: transform 0.35s ease;
}

.tour-archive-toggle.open .tour-archive-chevron {
    transform: rotate(180deg);
}

.tour-archive-list {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease;
}

.tour-archive-list.open {
    max-height: 500px;
    opacity: 1;
}

.tour-item--past {
    opacity: 0.45;
    transition: opacity 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.tour-item--past:hover {
    opacity: 0.75;
}

.btn-ticket--past {
    background: transparent;
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.25);
}

.btn-ticket--past:hover {
    background: rgba(255,255,255,0.07);
    color: #fff;
}

@media (max-width: 768px) {
    .tour-date-col {
        align-items: center;
        width: auto;
    }

    .tour-item--upcoming {
        border-left: none;
        border-top: 3px solid rgba(255,255,255,0.6);
        padding-left: 0;
        padding-top: 22px;
    }
}
