/* --- Reset básico --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    overflow: hidden; /* Evita que haya scroll */
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: #050505;
}

/* --- Slider de Fondo --- */
.hero-slider {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
}

.slider-track {
    position: absolute;
    inset: 0;
    display: flex;
    width: 100%;
    height: 100%;
    will-change: transform;
    z-index: 1;
}

.media-slide {
    position: relative;
    flex: 0 0 100%;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.video-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Asegura que el video cubra toda la pantalla sin distorsionarse */
    pointer-events: none; /* Evita que el usuario interactúe con el video */
    filter: saturate(0.95) contrast(1.05);
    z-index: 0;
    opacity: 1;
    transition: opacity 0.45s ease;
}

.hero-slider[data-active-slide="1"] .video-background,
.hero-slider[data-active-slide="2"] .video-background,
.hero-slider[data-active-slide="3"] .video-background {
    opacity: 0;
}

.slide-tint {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.62), rgba(229, 0, 0, 0.08));
}

.slide-home .slide-tint {
    background: transparent;
}

.slide-music .slide-tint {
    background: transparent;
}

.slide-tour .slide-tint {
    background: radial-gradient(circle at center, rgba(55, 68, 255, 0.25), rgba(5, 5, 80, 0.12) 55%, rgba(0, 0, 0, 0) 100%);
}

.slide-newsletter .slide-tint {
    background: transparent;
}

.slide-music {
    overflow-y: auto;
    overflow-x: hidden;
    pointer-events: auto;
    overscroll-behavior-y: contain;
    background: #1a1a1d url("images/fondo_negro_bratty.png") center / cover no-repeat;
}

.slide-music::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: transparent;
}

.slide-music::-webkit-scrollbar {
    width: 8px;
}

.slide-music::-webkit-scrollbar-thumb {
    background: rgba(229, 0, 0, 0.35);
}

.slide-tour {
    background:
        linear-gradient(180deg, rgba(10, 16, 46, 0.18), rgba(5, 6, 22, 0.42)),
        url("images/fonfo_azul.png") center / cover no-repeat;
}

.slide-newsletter {
    background: #050505;
}

.newsletter-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: 0;
}

.slide-caption {
    position: absolute;
    left: 50%;
    bottom: 115px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.82);
    letter-spacing: 0.16em;
    text-align: center;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.media-slide:not(.is-active) .slide-caption {
    opacity: 0;
    transform: translateX(-50%) translateY(16px);
}

.slide-caption-kanji {
    font-size: 14px;
}

.slide-caption h2 {
    font-size: clamp(24px, 4vw, 54px);
    font-style: italic;
}

.mobile-swipe-hint {
    display: none;
}

.music-scroll {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 100%;
}

.music-screen {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 100%;
    padding: 126px 0 0;
}

.music-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    padding: 0 40px 86px;
}

.music-video-card {
    display: block;
    width: min(660px, calc(100% - 220px));
    text-decoration: none;
}

.music-video-card-karma {
    margin-top: 28px;
}

.music-scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin: 4px 0 -4px;
    color: rgba(255, 255, 255, 0.78);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.music-scroll-hint span {
    font-size: 11px;
    font-weight: 700;
}

.music-scroll-arrow {
    position: relative;
    width: 2px;
    height: 42px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(229, 0, 0, 0.2));
    animation: musicScrollCue 1.35s ease-in-out infinite;
}

.music-scroll-arrow::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -2px;
    width: 12px;
    height: 12px;
    border-right: 2px solid rgba(255, 255, 255, 0.92);
    border-bottom: 2px solid rgba(255, 255, 255, 0.92);
    transform: translateX(-50%) rotate(45deg);
}

@keyframes musicScrollCue {
    0% {
        transform: translateY(0);
        opacity: 0.45;
    }

    50% {
        transform: translateY(10px);
        opacity: 1;
    }

    100% {
        transform: translateY(0);
        opacity: 0.45;
    }
}

.music-video-frame {
    position: relative;
    aspect-ratio: 1 / 0.76;
    border: 1px solid rgba(0, 0, 0, 0.4);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.music-video-gif {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.music-video-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.2));
    z-index: 0;
}

.music-video-frame span {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-size: clamp(28px, 4.7vw, 66px);
    font-weight: 900;
    line-height: 0.95;
    text-align: center;
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.music-video-tu-nombre {
    background: #2a1414;
}

.music-video-karma {
    background: #08122a;
}

.music-video-otro-dia {
    background: #415152;
}

.music-merch {
    border-top: 1px solid rgba(0, 0, 0, 0.28);
    padding: 74px 40px 90px;
}

.music-merch-inner {
    width: min(1020px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 204px minmax(0, 1fr) 204px;
    align-items: center;
    gap: 28px;
}

.music-gadget {
    position: relative;
}

.music-gadget-chain {
    width: 173px;
    margin-top: 34px;
    justify-self: center;
}

.music-gadget-chain img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.music-gadget-player {
    width: 221px;
    transform: rotate(16deg);
    justify-self: center;
    filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.28));
}

.music-gadget-player img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.music-polaroids {
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 252px));
    justify-content: center;
    gap: 18px 28px;
}

.polaroid {
    position: relative;
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.polaroid-left-top {
    transform: rotate(-8deg);
}

.polaroid-right-top {
    transform: rotate(7deg);
}

.polaroid-left-bottom {
    transform: rotate(11deg);
}

.polaroid-right-bottom {
    transform: rotate(-5deg);
}

.polaroid-photo {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    margin-bottom: 0;
    object-fit: contain;
}

.tour-screen {
    position: relative;
    z-index: 1;
    width: min(1040px, calc(100% - 180px));
    margin: 120px auto 0;
    color: #f4f2ec;
}

.tour-list {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.tour-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 12px;
}

.tour-copy {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tour-date,
.tour-copy h3 {
    font-size: clamp(22px, 3.36vw, 45px);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.tour-copy h3 {
    max-width: none;
    white-space: nowrap;
}

.ticket-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 163px;
    padding: 10px 15px;
    margin-top: 2px;
    margin-right: 68px;
    justify-self: start;
    background: transparent;
    color: #e50000;
    text-decoration: none;
    font-size: clamp(19px, 2.16vw, 30px);
    font-style: italic;
    font-weight: 900;
    line-height: 1;
    transition: transform 0.2s ease, filter 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.ticket-button:hover {
    transform: translateY(-2px);
    background: #e50000;
    color: #ffffff;
    filter: brightness(1.08);
}

.newsletter-screen {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    padding: 80px 110px;
}

.newsletter-box-scene {
    position: relative;
    width: min(816px, 100%);
    aspect-ratio: 1.85 / 1;
}

.newsletter-box-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.newsletter-panel {
    position: absolute;
    left: 29%;
    right: 28%;
    top: 28%;
    bottom: 21%;
    padding: 42px 28px 18px;
}

.newsletter-form-scale {
    width: 142.857%;
    transform: scale(0.7);
    transform-origin: top center;
    margin-left: -21.428%;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #1f1309;
}

.newsletter-form label {
    font-size: clamp(16px, 1.5vw, 28px);
    font-weight: 700;
}

.newsletter-form input,
.newsletter-form select {
    width: 100%;
    height: clamp(38px, 3.7vw, 54px);
    padding: 0 16px;
    border: 2px solid rgba(73, 44, 24, 0.38);
    border-radius: 14px;
    background: rgba(244, 221, 190, 0.58);
    color: #2b1a0c;
    font-size: clamp(16px, 1.5vw, 26px);
    font-weight: 600;
}

.newsletter-form-footer {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.newsletter-consent {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.newsletter-consent input {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.newsletter-consent span {
    font-size: clamp(9px, 0.82vw, 14px);
    line-height: 1.2;
}

.newsletter-form button {
    border: 0;
    border-radius: 16px;
    padding: 10px 20px;
    background: #e50000;
    color: #ffffff;
    font-size: clamp(18px, 1.7vw, 28px);
    font-weight: 900;
    cursor: pointer;
}

.newsletter-form button:hover {
    filter: brightness(1.06);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.24);
    color: #ffffff;
    font-size: 26px;
    cursor: pointer;
    display: grid;
    place-items: center;
    backdrop-filter: blur(8px);
    transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
    z-index: 2;
}

.slider-arrow:hover {
    background: rgba(229, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-50%) scale(1.05);
}

.slider-arrow-left {
    left: 30px;
}

.slider-arrow-right {
    right: 30px;
}

/* --- Contenedor Overlay --- */
.overlay {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 30px; /* Margen general de los elementos respecto al borde */
    color: #e50000; /* Color rojo de la marca */
    z-index: 3;
    pointer-events: none;
}

.overlay a,
.overlay button,
.overlay input,
.overlay select,
.overlay textarea,
.overlay [role="button"] {
    pointer-events: auto;
}

/* --- Logo Izquierdo --- */
.logo-left {
    position: absolute;
    top: 30px;
    left: 30px;
}

.logo-home-link {
    display: block;
}

.logo-left img {
    height: 86px; /* Ajusta este tamaño según tu imagen */
    width: auto;
}

/* --- Logo Derecho --- */
.logo-right {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.logo-right img {
    height: 72px; /* Ajusta según el ícono de la cara */
}

.logo-kanji {
    font-size: 35px;
    font-weight: bold;
}

.mobile-menu-toggle {
    display: none;
    position: absolute;
    top: 30px;
    right: 30px;
    width: 52px;
    height: 52px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    z-index: 5;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 4px;
    margin: 8px 0;
    border-radius: 999px;
    background: #e50000;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(12px) rotate(45deg);
}

.mobile-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
}

/* --- Redes Sociales (Vertical) --- */
.social-sidebar {
    position: absolute;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Espacio entre íconos */
}

.social-sidebar a {
    color: #e50000;
    font-size: 29px;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease, color 0.2s ease;
}

.social-sidebar a:hover {
    transform: scale(1.1);
    opacity: 1;
    color: #ffffff;
}

.social-sidebar a:active,
.social-sidebar a:focus-visible {
    opacity: 1;
    color: #ffffff;
}

/* --- Navegación (Inferior Derecha) --- */
.bottom-nav {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Alinea los textos a la derecha */
    gap: 20px;
}

/* Selector de Idioma */
.language-toggle {
    font-size: 17px;
    font-weight: bold;
    font-style: italic;
    color: #e50000;
}

.language-toggle a {
    color: #e50000;
    text-decoration: none;
    transition: color 0.18s ease;
}

.language-toggle a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.language-toggle a:focus-visible {
    color: #ffffff;
}

/* Lista de Enlaces */
.nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.nav-links li a {
    color: #e50000;
    text-decoration: none;
    font-size: 29px;
    font-weight: 800; /* Texto grueso */
    font-style: italic;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.nav-links li a:hover {
    opacity: 1;
    color: #ffffff;
}

.nav-links li a:focus-visible {
    color: #ffffff;
    opacity: 1;
}

.nav-links li a:hover .kanji,
.nav-links li a:focus-visible .kanji {
    opacity: 1;
    transform: translateX(0);
}

.nav-links li a.is-current {
    opacity: 1;
}

/* Estilo para las letras japonesas/chinas */
.kanji {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateX(8px) translateY(-50%);
    opacity: 0;
    font-size: 17px;
    font-weight: 400;
    font-style: normal; /* Quita la itálica para los caracteres asiáticos */
    color: #ffd400;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    line-height: 1;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

@media (max-width: 900px) {
    .slide-caption {
        bottom: 150px;
    }

    .music-video-card {
        width: min(620px, calc(100% - 150px));
    }

    .music-video-card-karma {
        margin-top: 20px;
    }

    .newsletter-screen {
        padding: 90px 80px;
    }

    .newsletter-box-scene {
        width: min(653px, 100%);
    }

    .newsletter-panel {
        left: 27%;
        right: 27%;
        top: 25%;
        bottom: 20%;
        padding: 34px 20px 16px;
    }

    .newsletter-form-scale {
        width: 142.857%;
        margin-left: -21.428%;
    }

    .newsletter-form-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .music-merch-inner {
        grid-template-columns: 144px minmax(0, 1fr) 156px;
        gap: 20px;
    }

    .music-polaroids {
        grid-template-columns: repeat(2, minmax(156px, 216px));
        gap: 16px 20px;
    }

    .tour-screen {
        width: calc(100% - 150px);
        margin-top: 86px;
    }

    .tour-row {
        gap: 24px;
    }

    .ticket-button {
        min-width: 207px;
        font-size: 30px;
        margin-right: 40px;
    }

    .slider-arrow {
        width: 46px;
        height: 46px;
        font-size: 22px;
    }

    .bottom-nav {
        left: 30px;
        right: 30px;
        align-items: flex-start;
    }

    .nav-links {
        align-items: flex-start;
    }

    .nav-links li a {
        font-size: 26px;
    }
}

@media (max-width: 822px) {
    .overlay {
        padding: 20px;
    }

    .slider-arrow {
        display: none;
    }

    .mobile-swipe-hint {
        position: absolute;
        left: 50%;
        bottom: 86px;
        transform: translateX(-50%);
        z-index: 3;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: rgba(255, 255, 255, 0.78);
        letter-spacing: 0.22em;
        text-transform: uppercase;
        pointer-events: none;
        animation: mobileSwipeHintFloat 1.8s ease-in-out infinite;
    }

    .mobile-swipe-hint-text {
        font-size: 10px;
        font-weight: 700;
        white-space: nowrap;
    }

    .mobile-swipe-hint-line {
        position: relative;
        width: 36px;
        height: 1px;
        background: rgba(255, 255, 255, 0.62);
    }

    .mobile-swipe-hint-line::after {
        content: "";
        position: absolute;
        top: 50%;
        width: 8px;
        height: 8px;
        border-top: 1px solid rgba(255, 255, 255, 0.8);
        border-right: 1px solid rgba(255, 255, 255, 0.8);
    }

    .mobile-swipe-hint-line-left::after {
        left: 0;
        transform: translateY(-50%) rotate(-135deg);
    }

    .mobile-swipe-hint-line-right::after {
        right: 0;
        transform: translateY(-50%) rotate(45deg);
    }

    .music-screen {
        padding-top: 146px;
    }

    .music-video-card {
        width: min(820px, calc(100% - 24px));
    }

    .music-scroll-hint {
        display: none;
    }

    .music-merch {
        padding: 58px 24px 96px;
    }

    .music-merch-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: end;
        justify-items: center;
        gap: 20px 18px;
    }

    .music-polaroids {
        order: 1;
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, minmax(130px, 188px));
        gap: 14px 16px;
    }

    .music-gadget-chain {
        order: 2;
        width: min(142px, 34vw);
        margin-top: 0;
        align-self: start;
    }

    .music-gadget-player {
        order: 3;
        width: min(156px, 37vw);
        margin-top: 0;
        align-self: start;
        transform: translateY(-14px) rotate(12deg);
    }

    .logo-left,
    .social-sidebar {
        left: 20px;
    }

    .logo-right,
    .bottom-nav {
        right: 20px;
    }

    .logo-left {
        top: 20px;
    }

    .logo-left img {
        height: 48px;
    }

    .logo-right {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
        top: 20px;
        right: 20px;
    }

    .social-sidebar {
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }

    .bottom-nav {
        top: 92px;
        right: 20px;
        left: auto;
        bottom: auto;
        width: min(72vw, 292px);
        padding: 18px 14px 20px 16px;
        gap: 14px;
        border: 1px solid rgba(120, 150, 255, 0.35);
        background: rgba(29, 58, 214, 0.82);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .bottom-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .social-sidebar a {
        font-size: 34px;
    }

    .language-toggle {
        font-size: 12px;
        color: #ffffff;
    }

    .language-toggle a {
        color: #ffffff;
    }

    .language-toggle a:active {
        animation: mobileLanguageTap 0.32s ease;
    }

    .nav-links li a {
        font-size: 18px;
        color: #ffffff;
        opacity: 1;
    }

    .language-toggle,
    .nav-links,
    .nav-links li,
    .nav-links li a {
        width: 100%;
    }

    .bottom-nav,
    .nav-links {
        align-items: flex-start;
    }

    .nav-links li a {
        justify-content: flex-start;
    }

    .kanji {
        position: static;
        transform: none;
        margin-right: 10px;
        opacity: 1;
        color: #ffd400;
        font-size: 11px;
    }
}

@keyframes mobileSwipeHintFloat {
    0% {
        transform: translateX(-50%) translateX(0);
        opacity: 0.45;
    }

    35% {
        transform: translateX(-50%) translateX(-8px);
        opacity: 1;
    }

    70% {
        transform: translateX(-50%) translateX(8px);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateX(0);
        opacity: 0.45;
    }
}

@media (max-width: 600px) {
    .slider-arrow {
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
    }

    .slider-arrow:hover {
        transform: translateY(-50%) scale(1.05);
    }

    .slider-arrow-left {
        left: 20px;
        right: auto;
    }

    .slider-arrow-right {
        right: 20px;
        left: auto;
    }

    .slide-caption {
        bottom: 180px;
        width: calc(100% - 40px);
    }

    .slide-caption h2 {
        font-size: 22px;
    }


@keyframes mobileLanguageTap {
    0% {
        color: #ffffff;
    }

    45% {
        color: #e50000;
    }

    100% {
        color: #ffffff;
    }
}
    .slide-music .slide-caption {
        display: none;
    }

    .newsletter-screen {
        padding: 124px 8px 120px;
        overflow: hidden;
    }

    .newsletter-box-scene {
        width: 194%;
        max-width: none;
        aspect-ratio: auto;
        min-height: 832px;
        margin-top: 12px;
    }

    .newsletter-panel {
        left: 23%;
        right: 23%;
        top: 19.5%;
        bottom: 18.5%;
        padding: 26px 12px 10px;
    }

    .newsletter-form-scale {
        width: 119.048%;
        transform: scale(0.84);
        margin-left: -9.524%;
    }

    .newsletter-form label {
        font-size: 16px;
    }

    .newsletter-form {
        align-items: center;
    }

    .newsletter-form > label {
        width: 52%;
    }

    .newsletter-form input,
    .newsletter-form select {
        width: 52%;
        height: 40px;
        font-size: 15px;
        border-radius: 10px;
        padding: 0 12px;
    }

    .newsletter-consent {
        width: 52%;
        align-items: center;
        gap: 6px;
    }

    .newsletter-consent input {
        width: 12px;
        height: 12px;
    }

    .newsletter-consent span {
        display: inline;
        max-width: none;
        white-space: nowrap;
        font-size: 9px;
        line-height: 1.15;
    }

    .newsletter-form button {
        width: auto;
        min-width: 92px;
        font-size: 13px;
        padding: 7px 10px;
    }

    .tour-screen {
        width: calc(100% - 40px);
        margin-top: 80;
        min-height: calc(100vh - 180px);
        display: flex;
        align-items: center;
    }

    .tour-list {
        width: 100%;
        gap: 30px;
    }

    .tour-row {
        grid-template-columns: 1fr;
        gap: 16px;
        justify-items: center;
    }

    .tour-copy {
        align-items: center;
        text-align: center;
    }

    .tour-date,
    .tour-copy h3 {
        font-size: 22px;
        line-height: 1.02;
    }

    .tour-copy h3 {
        max-width: 100%;
        white-space: normal;
    }

    .ticket-button {
        min-width: 0;
        width: fit-content;
        padding: 10px 16px;
        font-size: 22px;
        margin-right: 0;
        justify-self: center;
    }
}