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

body {
    font-family: 'Arial', sans-serif;
    background: #000;
    color: #fff;
}

/* ============================= */
/* SPLIT HOMEPAGE */
/* ============================= */

.split-container {
    display: flex;
    height: 100vh;
    width: 100%;
}

.lang-switch {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    border: 1px solid rgba(255,255,255,0.42);
    border-radius: 999px;
    background: rgba(8,8,8,0.72);
    backdrop-filter: blur(14px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.35);
}
.program-images {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.program-image {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
}

.lang-option {
    color: rgba(255,255,255,0.88);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    padding: 10px 14px;
    border-radius: 999px;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.lang-option:hover {
    color: #fff;
    background: rgba(255,255,255,0.16);
    transform: translateY(-1px);
}

.lang-option.active {
    color: #000;
    background: #fff;
    box-shadow: 0 6px 18px rgba(255,255,255,0.22);
}

.page-lang-switch {
    top: 24px;
    left: auto;
    right: 24px;
    transform: none;
}

.left::before {
    background-image: url('../img/1000030968.jpg');
    background-position: right bottom;
}

.right::before {
    background-image: url('../img/1000020990.jpg');
    background-position: left bottom;
}

.overlay {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    text-align: center;
    padding: 10vh 24px 24px;
}

.overlay h1 {
    font-size: 3.2rem;
    font-weight: 900;
    letter-spacing: 5px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(0,0,0,0.8);
}

.overlay span {
    margin-top: 20px;
    display: inline-block;
    padding: 12px 28px;
    border: 2px solid #fff;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.split:hover .overlay span {
    background: #fff;
    color: #000;
}

.overlay .event-status {
    margin: 0 0 18px;
    padding: 7px 13px;
    border: 1px solid rgba(255,255,255,0.55);
    border-radius: 999px;
    background: rgba(0,0,0,0.58);
    font-size: 0.68rem;
    line-height: 1;
    letter-spacing: 0.18em;
    backdrop-filter: blur(8px);
}

.overlay .event-action {
    margin-top: 18px;
}

.event-message {
    max-width: 480px;
    margin-top: 16px;
    font-size: 1.05rem;
    line-height: 1.65;
    text-shadow: 0 2px 14px rgba(0,0,0,0.9);
}

.event-message strong {
    font-size: 1.15rem;
}

.split,
.split:visited,
.split:active {
    color: #fff;
}


.split {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    overflow: hidden;
}

/* IMAGE */
.split::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}

/* DARK OVERLAY */
.split::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.42), rgba(0,0,0,0.22));
    transition: 0.4s ease;
    z-index: 1;
}

.split:hover::after {
    background: linear-gradient(to bottom, rgba(0,0,0,0.28), rgba(0,0,0,0.12));
}

/* Silnejší headline */
.overlay h1 {
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.overlay span {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 14px;
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.4);
    padding: 8px 18px;
    transition: 0.3s ease;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(4px);
}

.split:hover .overlay span {
    background: #fff;
    color: #000;
}

.split.past-event::before {
    filter: saturate(0.65) brightness(0.78);
    transition: filter 0.4s ease, transform 0.6s ease;
}

.split.past-event::after {
    background: linear-gradient(to bottom, rgba(0,0,0,0.56), rgba(0,0,0,0.4));
}

.split.past-event:hover::before {
    filter: saturate(0.82) brightness(0.88);
    transform: scale(1.015);
}

.split.past-event:hover::after {
    background: linear-gradient(to bottom, rgba(0,0,0,0.46), rgba(0,0,0,0.3));
}

.split.past-event:hover .overlay .event-status {
    background: rgba(0,0,0,0.58);
    color: #fff;
}


body {
    animation: fadeInPage 1s ease forwards;
    opacity: 0;
}

@keyframes fadeInPage {
    to {
        opacity: 1;
    }
}

.overlay h1,
.overlay span,
.overlay .event-message {
    opacity: 0;
    transform: translateY(30px);
    animation: revealText 1s ease forwards;
}

.overlay span,
.overlay .event-message {
    animation-delay: 0.3s;
}

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

.split-container {
    position: relative;
}

@media (max-width: 900px) {
    .split-container {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }

    .split {
        min-height: 50vh;
    }

    .split::before {
        background-position: center bottom;
        background-size: cover;
    }

    .split-container::after {
        top: 50%;
        bottom: auto;
        left: 10%;
        right: 10%;
        width: auto;
        height: 1px;
        transform: translateY(-50%);
    }

    .overlay h1 {
        font-size: 2.2rem;
        letter-spacing: 3px;
    }

    .lang-switch {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        gap: 6px;
        padding: 6px;
    }

    .lang-option {
        font-size: 0.72rem;
        letter-spacing: 0.14em;
        padding: 7px 10px;
    }

    .page-lang-switch {
        top: 16px;
        left: auto;
        right: 16px;
        transform: none;
    }
}

.split-container::after {
    content: "";
    position: absolute;
    top: 10%;
    bottom: 10%;
    left: 50%;
    width: 1px;
    background: rgba(255,255,255,0.2);
    transform: translateX(-50%);
    animation: dividerGlow 3s infinite alternate;
}

@keyframes dividerGlow {
    from {
        opacity: 0.2;
    }
    to {
        opacity: 0.6;
    }
}

/* ============================= */
/* EVENT PAGE UPGRADE */
/* ============================= */

.event-hero {
    position: relative;
    height: 65vh;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 1.5s ease;
}

.event-hero:hover .hero-bg {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay h1 {
    font-size: 3rem;
    letter-spacing: 4px;
    text-align: center;
    text-transform: uppercase;
}

/* HERO SLIDER */

.hero-slider {
    position: absolute;
    inset: 0;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}
/* CONTENT */

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

.past-event-notice {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 0 0 34px;
    padding: 22px 24px;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.035));
    box-shadow: 0 18px 45px rgba(0,0,0,0.2);
    text-align: left;
}

.past-event-notice-icon {
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    color: #090909;
    font-size: 1.25rem;
    font-weight: 900;
}

.past-event-notice strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1.12rem;
}

.past-event-notice p {
    color: rgba(255,255,255,0.72);
    line-height: 1.55;
}

.event-info {
    margin-bottom: 20px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.event-info p {
    margin: 5px 0;
}

.event-text {
    max-width: 600px;
    margin: 20px auto;
    line-height: 1.6;
    opacity: 0.85;
}

/* BUTTONS */

.event-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 15px;
    flex-wrap: wrap;
}

.event-buttons .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 58px;
    padding: 14px 24px;
    line-height: 1.2;
}


.btn.secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    margin-left: 0;
}

.btn.secondary:hover {
    background: #fff;
    color: #000;
}

/* BACK LINK */

.back-link {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
}

.back-link:hover {
    color: #fff;
}

/* ============================= */
/* ABOUT + CONTACT */
/* ============================= */

.about-contact {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 80px;
    align-items: start;
}

.about p {
    margin-bottom: 15px;
    line-height: 1.6;
    opacity: 0.85;
}

.contact {
    border-left: 1px solid rgba(255,255,255,0.1);
    padding-left: 30px;
}

.contact p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.contact .btn {
    margin-top: 20px;
}


/* FORM */

.form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form input,
.form textarea {
    padding: 12px;
    background: #111;
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
}

.form textarea {
    min-height: 100px;
}

.form input:focus,
.form textarea:focus {
    outline: none;
    border-color: #fff;
}

.form input[type="file"] {
    background: transparent;
    border: none;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.success-msg {
    margin-top: 10px;
    color: #4CAF50;
    font-weight: 500;
}

/* SUCCESS BOX */

.success-box {
    margin-top: 20px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
}

.back-btn {
    margin-top: 15px;
    display: inline-block;
}
.btn:disabled {
    background: #666;
    color: #ccc;
}


.gdpr {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 10px;
    line-height: 1.4;
}

.gdpr input {
    margin-right: 8px;
}

.socials {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    justify-content: center; /* 👈 toto je hlavné */
}

.socials a {
    padding: 8px 14px;
    border: 1px solid rgba(255,255,255,0.2);
    text-decoration: none;
    color: #fff;
    font-size: 0.85rem;
    transition: 0.3s ease;
}

.socials a:hover {
    background: #fff;
    color: #000;
}

/* MOBILE FIX */

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 800px) {
    .split-container {
        flex-direction: column;
    }

    .split {
        height: 50vh;
    }

    .overlay h1 {
        font-size: 2rem;
    }

        .about-contact {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 20px;
    }

        .container {
        margin: 40px auto;
    }

    .form {
        width: 100%;
        padding: 0 10px;
    }

    .form input,
    .form textarea {
        font-size: 16px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .success-box {
        padding: 15px;
    }

.btn.secondary {
    margin-left: 0px;
}

}

.form select {
    padding: 12px;
    background: #111;
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
}

/* ============================= */
/* GLOBAL CONTAINER PRE PODSTRÁNKY */
/* ============================= */

.container {
    width: 90%;
    max-width: 1200px;
    margin: 80px auto;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
}

.btn:hover {
    background: #ccc;
}

.btn.vip-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-width: 220px;
    color: #f5e7bd;
    border: 1px solid rgba(204,169,92,0.72);
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(40,33,18,0.94) 0%, rgba(18,15,10,0.98) 100%);
    box-shadow:
        0 18px 34px rgba(0,0,0,0.34),
        inset 0 1px 0 rgba(255,240,201,0.14),
        inset 0 0 0 1px rgba(153,120,46,0.18);
}

.btn.vip-btn span {
    font-size: 0.98rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff4d1;
}

.btn.vip-btn small {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(241,222,174,0.72);
}

.btn.vip-btn:hover {
    background:
        linear-gradient(180deg, rgba(56,45,23,0.96) 0%, rgba(22,18,11,1) 100%);
    border-color: rgba(232,198,117,0.88);
    box-shadow:
        0 22px 38px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,244,213,0.18),
        0 0 0 1px rgba(201,164,85,0.12);
    transform: translateY(-1px);
}

.vip-page {
    padding: 32px 0 80px;
}

.vip-shell {
    max-width: 1120px;
}

.vip-hero-image,
.vip-footer-image {
    display: block;
    width: 100%;
    border-radius: 28px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 26px 60px rgba(0,0,0,0.34);
}

.vip-hero-image {
    max-height: 420px;
}

.vip-hero-image-focused {
    max-height: 470px;
    object-position: center 22%;
}

.vip-footer-image {
    margin-top: 28px;
    max-height: 320px;
}

.vip-showcase {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    margin-top: 32px;
}

.vip-showcase-copy {
    padding: 10px 8px 10px 2px;
}

.vip-showcase-overline {
    display: inline-flex;
    margin-bottom: 12px;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(241,222,174,0.78);
}

.vip-showcase-title {
    margin: 0 0 14px;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.vip-showcase-text {
    max-width: 420px;
    line-height: 1.75;
    color: rgba(255,255,255,0.76);
}

.vip-footer-stage {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100%;
    padding: 26px;
    border: 1px solid rgba(221,189,111,0.12);
    border-radius: 34px;
    background:
        radial-gradient(circle at 20% 18%, rgba(255,235,186,0.12), transparent 32%),
        radial-gradient(circle at 82% 84%, rgba(255,255,255,0.08), transparent 26%),
        linear-gradient(180deg, rgba(41,31,14,0.44) 0%, rgba(17,14,10,0.9) 100%);
    box-shadow: 0 30px 70px rgba(0,0,0,0.32);
    overflow: hidden;
}

.vip-footer-stage::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 26px;
    pointer-events: none;
}

.vip-showcase-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 1;
    padding: 8px 12px;
    border: 1px solid rgba(234,204,124,0.3);
    border-radius: 999px;
    background: rgba(10,10,10,0.52);
    backdrop-filter: blur(12px);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #f4e8bf;
}

.vip-footer-image-portrait {
    width: auto;
    max-width: min(100%, 540px);
    max-height: 720px;
    margin-top: 0;
    object-fit: contain;
    object-position: center center;
    background: rgba(0,0,0,0.18);
    box-shadow: 0 26px 54px rgba(0,0,0,0.26);
}

.vip-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 28px;
    margin-top: 28px;
}

.vip-copy-card,
.vip-form-card {
    position: relative;
    padding: 34px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
    box-shadow: 0 24px 48px rgba(0,0,0,0.26);
    backdrop-filter: blur(16px);
}

.vip-copy-card::after,
.vip-form-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    border: 1px solid rgba(255,255,255,0.05);
}

.vip-eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    padding: 7px 12px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.74);
}

.vip-title {
    margin-bottom: 18px;
    font-size: clamp(2.2rem, 5vw, 3.25rem);
    letter-spacing: 0.04em;
}

.vip-intro,
.vip-summary {
    line-height: 1.7;
    color: rgba(255,255,255,0.82);
}

.vip-availability-card {
    margin: 24px 0 10px;
    padding: 20px 20px 18px;
    border: 1px solid rgba(212,181,105,0.2);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(38,31,17,0.74) 0%, rgba(22,18,11,0.42) 100%);
    box-shadow: inset 0 1px 0 rgba(255,244,213,0.06);
}

.vip-availability-card.is-sold-out {
    border-color: rgba(255,255,255,0.12);
    background: linear-gradient(180deg, rgba(36,36,36,0.72) 0%, rgba(18,18,18,0.42) 100%);
}

.vip-availability-overline {
    display: block;
    margin-bottom: 10px;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(239,222,184,0.72);
}

.vip-availability-main {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.vip-availability-main strong {
    font-size: 1rem;
    color: rgba(255,255,255,0.86);
}

.vip-availability-main span,
.vip-availability-soldout {
    font-size: clamp(2rem, 4vw, 2.9rem);
    line-height: 1;
    font-weight: 800;
    color: #fff2c9;
    letter-spacing: -0.03em;
}

.vip-availability-soldout {
    color: #fff;
}

.vip-availability-copy,
.vip-availability-meta,
.vip-availability-hint {
    line-height: 1.65;
    color: rgba(255,255,255,0.74);
}

.vip-availability-meta {
    margin-top: 12px;
    font-size: 0.92rem;
}

.vip-availability-hint {
    margin-top: 10px;
    font-size: 0.92rem;
}

.vip-availability-meter {
    height: 8px;
    margin-top: 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    overflow: hidden;
}

.vip-availability-meter span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #c9a455 0%, #fff0be 100%);
}

.vip-benefits {
    margin: 22px 0;
    padding-left: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.vip-benefits li {
    position: relative;
    padding: 14px 16px 14px 44px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    background: rgba(255,255,255,0.035);
    line-height: 1.55;
}

.vip-benefits li::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 18px;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255,255,255,0.42) 100%);
    box-shadow: 0 0 0 5px rgba(255,255,255,0.05);
}

.vip-form {
    max-width: none;
    gap: 16px;
}

.vip-form textarea {
    min-height: 120px;
    resize: vertical;
}

.vip-form-card .gdpr {
    margin-top: 2px;
}

.vip-submit-btn,
.vip-reopen-btn {
    width: 100%;
    border: 0;
    border-radius: 18px;
    cursor: pointer;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.vip-reopen-btn {
    margin-top: 14px;
}

.vip-inline-note {
    margin-top: 10px;
    line-height: 1.6;
    color: rgba(255,255,255,0.78);
}

.vip-success-box {
    margin-top: 0;
}

.vip-soldout-box,
.vip-soldout-state {
    text-align: center;
}

.vip-soldout-state h3 {
    margin-bottom: 12px;
    font-size: 1.35rem;
}

.vip-soldout-state p {
    line-height: 1.7;
    color: rgba(255,255,255,0.78);
}

.vip-submit-disabled {
    margin-top: 20px;
    background: rgba(255,255,255,0.16);
    color: rgba(255,255,255,0.6);
    cursor: not-allowed;
}

.vip-back-wrap {
    margin-top: 22px;
    text-align: center;
}

.vip-modal-open {
    overflow: hidden;
}

.vip-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
    -webkit-overflow-scrolling: touch;
}

.vip-modal.is-visible {
    opacity: 1;
    visibility: visible;
}

.vip-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.74);
    backdrop-filter: blur(10px);
}

.vip-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 620px);
    max-height: calc(100vh - 48px);
    padding: 28px;
    overflow-y: auto;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(16,16,16,0.96) 0%, rgba(12,12,12,0.94) 100%);
    box-shadow: 0 30px 70px rgba(0,0,0,0.46);
    -webkit-overflow-scrolling: touch;
}

.vip-modal-dialog h2 {
    margin-bottom: 20px;
    font-size: 1.9rem;
    letter-spacing: 0.03em;
}

.vip-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.vip-qr-image,
.vip-qr-placeholder {
    display: block;
    width: min(100%, 280px);
    margin: 0 auto 20px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.1);
    background: #fff;
}

.vip-qr-image {
    padding: 12px;
}

.vip-qr-placeholder {
    padding: 28px 22px;
    color: #111;
    text-align: center;
    line-height: 1.6;
}

.vip-payment-grid {
    display: grid;
    gap: 14px;
}

.vip-payment-grid div {
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
}

.vip-payment-grid span {
    display: block;
    margin-bottom: 6px;
    font-size: 0.74rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.58);
}

.vip-payment-grid strong {
    display: block;
    line-height: 1.5;
    word-break: break-word;
}

.vip-payment-note {
    margin-top: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.78);
}

.vip-payment-subnote {
    margin-top: 12px;
    line-height: 1.7;
    color: rgba(255,255,255,0.62);
    font-size: 0.92rem;
}

.vip-modal-mail-btn {
    width: 100%;
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    border-radius: 18px;
}

@media (max-width: 900px) {
    .vip-layout {
        grid-template-columns: 1fr;
    }

    .vip-showcase {
        grid-template-columns: 1fr;
    }

    .vip-showcase-copy {
        padding-bottom: 0;
    }
}

@media (max-width: 700px) {
    .btn.vip-btn {
        width: 100%;
        min-width: 0;
    }

    .vip-page {
        padding-top: 16px;
    }

    .vip-copy-card,
    .vip-form-card,
    .vip-modal-dialog {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .vip-hero-image,
    .vip-footer-image {
        border-radius: 22px;
    }

    .vip-hero-image-focused {
        max-height: 380px;
        object-position: center 18%;
    }

    .vip-footer-stage {
        padding: 14px;
        border-radius: 22px;
    }

    .vip-footer-image-portrait {
        max-height: 540px;
    }

    .vip-showcase-copy {
        padding: 0;
    }

    .vip-showcase-badge {
        top: 14px;
        left: 14px;
    }

    .vip-benefits li {
        padding: 14px 14px 14px 40px;
    }

    .vip-benefits li::before {
        left: 16px;
    }

    .vip-modal {
        align-items: flex-start;
        padding: 14px;
    }

    .vip-modal-dialog {
        max-height: calc(100vh - 28px);
    }
}

.legal-note {
    margin-top: 10px;
    line-height: 1.6;
    color: rgba(255,255,255,0.72);
    font-size: 0.9rem;
}

.legal-inline-link {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-inline-link:hover {
    color: #d7d7d7;
}

.legal-footer-links {
    width: min(90%, 1200px);
    margin: 24px auto 48px;
    text-align: center;
}

.legal-footer-links a {
    color: rgba(255,255,255,0.72);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.24);
    padding-bottom: 3px;
}

.legal-footer-links a:hover {
    color: #fff;
    border-bottom-color: rgba(255,255,255,0.58);
}

.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 1300;
    transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
}

.cookie-banner.is-hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    pointer-events: none;
}

.cookie-banner-inner {
    max-width: 1040px;
    margin: 0 auto;
    padding: 16px 18px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    background: rgba(10,10,10,0.94);
    box-shadow: 0 24px 60px rgba(0,0,0,0.34);
    backdrop-filter: blur(18px);
}

.cookie-banner-copy {
    margin: 0;
    line-height: 1.6;
    color: rgba(255,255,255,0.84);
}

.cookie-banner-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.cookie-banner-link {
    color: rgba(255,255,255,0.88);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-banner-btn {
    min-width: 120px;
    padding: 11px 18px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 14px;
    background: #fff;
    color: #000;
    font-weight: 700;
    cursor: pointer;
}

.cookie-banner-btn:hover {
    background: #d9d9d9;
}

.legal-page {
    max-width: 980px;
}

.legal-hero {
    margin-bottom: 34px;
}

.legal-intro {
    max-width: 760px;
    line-height: 1.75;
    color: rgba(255,255,255,0.8);
}

.legal-section {
    margin-bottom: 22px;
    padding: 24px 24px 22px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 22px;
    background: rgba(255,255,255,0.03);
}

.legal-section h2 {
    margin-bottom: 14px;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.legal-section p {
    line-height: 1.75;
    color: rgba(255,255,255,0.82);
}

.legal-list {
    padding-left: 18px;
    color: rgba(255,255,255,0.82);
}

.legal-list li + li {
    margin-top: 10px;
}

@media (max-width: 700px) {
    .legal-footer-links {
        margin-bottom: 110px;
    }

    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .cookie-banner-inner {
        padding: 14px;
        border-radius: 18px;
    }

    .cookie-banner-actions {
        justify-content: stretch;
    }

    .cookie-banner-link,
    .cookie-banner-btn {
        width: 100%;
        text-align: center;
    }

    .legal-section {
        padding: 20px 18px;
        border-radius: 18px;
    }
}
