:root {
  font-family: 'Poppins', sans-serif;
  line-height: 1.5;
  font-weight: 400;
  box-sizing: border-box;
  color: #E6E6E6;
  font-synthesis: none;
  background-color: rgb(55, 55, 55);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction:column;
  overflow-x: hidden;
  min-width: 320px;
  min-height: 100vh;
}

#main-container {
  position: relative;
  z-index: 2;
}

::-webkit-scrollbar {
  background-color: rgb(80,0,80); 
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background-color: #ffffff; 
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #dddddd; 
}
.navbar {
    background: rgb(80,0,80);
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1300px;
    padding: 0 50px;
}

.nav-logo {
    color: #fff;
    justify-self: start;
    cursor: pointer;
    margin-left: 20px;
    font-size: 2rem;
    display: flex;
    align-items: center;
}

.navbar-logo {
    max-height: 35px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
}

.nav-links {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 2px solid transparent;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
}

.nav-links:hover {
    color: rgb(190,133,187);
}

.menu-icon {
    display: none;
    z-index: 1000;
}

@media screen and (max-width: 1024px) {
    .menu-icon {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        transform: translate(-100%, 60%);
        font-size: 1.8rem;
        cursor: pointer;
        color: #fff;
    }

    .nav-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 60px;
        left: 100%;
        height: calc(var(--vh, 1vh) * 100 - 60px);
        width: 100vw;
        transition: transform 0.5s ease;
        background: rgb(80,0,80);
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 1;
    }
    
    .nav-menu.active {
        transform: translateX(-100%);
        background-color: rgb(60,0,60);
    }

    .nav-links {
        text-align: center;
        padding: 2rem;
        display: block;
        margin: 0 auto;
    }

    .nav-links:hover {
        color: #fff;
    }
}

body.menu-active {
    overflow: hidden;
}

body.menu-active .menu-icon {
    color: rgb(190,133,187);
}

@media screen and (min-width: 961px) {
    .nav-links:before {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: rgb(255,255,255);
        visibility: hidden;
        transition: all 0.3s ease-in-out;
    }

    .nav-links:hover:before {
        visibility: visible;
        width: 100%;
    }
}
.newsletter-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    text-align: center;
    padding: 10px;
    z-index: 9999;
}

.newsletter-popup p {
    margin: 0;
    display: inline; 
}

.newsletter-popup .close-popup-button {
    background: none;
    border: none;
    color: white;
    padding: 0 0.5em;
    cursor: pointer;
    position: absolute;
    right: 1em; 
    font-size: 24px;
}
.newsletter-popup .newsletter-link {
    color: white;
    text-decoration: underline; 
    margin-right: 5px;
}

.newsletter-popup .newsletter-link:hover {
    color: #ddd; 
}
.footer {
    background: rgb(80, 0, 80);
    color: #fff;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1300px;
    padding: 0 50px;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    padding: 15px;
    min-width: 120px;
}

.footer-section h4 {
    margin-bottom: 10px;
}

.footer-section a {
    display: block;
    margin-bottom: 5px;
    color: #fff;
    text-decoration: none;
}

.footer-copyright {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    width: 100%;
}

.subscribe-container {
    display: flex;
    justify-content: left;
    width: 100%;
    max-width: 1300px;
    margin: 0 50px;
    flex-wrap: wrap;
}

.subscribe-card {
    display: flex;
    flex-direction: column;
    padding: 15px;
    justify-content: left;
    width: 50%;
}

.subscribe-input {
    padding: 10px;
    border-radius: 5px;
    border: none;
    margin-right: 10px;
    outline: none;
    transition: all 0.3s;
    width: 100%;
}

.subscribe-input:hover,
.subscribe-input:focus {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.subscribe-btn {
    padding: 10px 20px;
    background-color: #fff;
    color: rgb(80, 0, 80);
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.subscribe-btn:hover {
    background-color: rgb(190, 133, 187, 255);
    color: #fff;
}

.email-container {
    display: flex;
    align-items: center;
}

#google_translate_element {
    display: flex;
    width: 40%;
    align-items: center;
    justify-content: flex-start;
}

.goog-te-combo {
    border: 1px solid rgb(190, 133, 187, 255);
}

.goog-te-gadget {
    text-align: center;
}

.translate-section {
    margin: auto;
    justify-content: flex-start;
}

.subscribe-message {
    margin-bottom: 1em;
    color: rgb(190,133,187);
    font-weight: bold;
    border: 1px solid white;
    padding: 8px 12px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    width: 80%;
    text-align: center; 
    transition: all 0.3s;
}

.subscribe-message.success {
    color: #5cb85c;
    border-color: #5cb85c;
    background-color: rgba(92, 184, 92, 0.1);
}

.g-recaptcha {
    margin-top: 10px;
}

@media screen and (max-width: 960px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-evenly;
        flex-wrap: wrap;
    }

    .footer-section {
        margin-bottom: 20px;
    }

    .subscribe-card {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .g-recaptcha {
        transform: scale(0.65);
        transform-origin: top left;
    }
}.custom-alert-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeInOut 5s forwards;
}

.custom-alert {
    padding: 1em; 
    margin: 1em; 
}

.custom-alert h2 {
    text-align: center;
    font-size: 1.2em; 
    margin: 0.5em 0;
    line-height: 1.4; 
}

@media screen and (max-width: 600px) {
    .custom-alert {
        width: 90%; 
    }

    .custom-alert h2 {
        font-size: 1em; 
    }
}
.notfound {
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 7.66em;
    justify-content: center;
    align-content: space-around;
    background-color: rgba(150, 150, 200, 0.5);
    z-index: 3;
    box-sizing: border-box;
}

.notfound h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
    text-transform: uppercase; 
}

.notfound p {
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: 600;
}
.club-section {
    text-align: center;
    cursor: pointer;
    position: relative;
}

.club-name,
.club-description {
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.club-name {
    font-size: 5em;
    color: #fff;
    margin-bottom: 10px;
}

.club-description {
    position: relative;
    font-size: 1.5em;
    color: #FFFFFF;
    overflow: hidden;
    white-space: nowrap;
    width: 0;
    animation: typeEffect 2.5s forwards;
    max-height: 3em;
    transition: max-height 5s;
}

.expanded-description {
    white-space: normal;
    width: auto;
    animation: none;
    max-height: 300px;
    overflow-y: auto;
}

.club-description::after {
    content: '↓';
    position: absolute;
    right: 10px;
    display: none;
}

.club-description:hover::after {
    display: block;
}

.club-description.expanded-description::after {
    content: '↑';
}

.click-indicator {
    display: block;
    font-size: 0.8em;
    margin-top: -1em;
    cursor: pointer;
    opacity: 0;
    animation: fadeInEffect 0.5s forwards;
    animation-delay: 2.5s;
}

.expanded-indicator {
    animation: none;
    opacity: 1;
}

.event-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 25px;
    font-size: 1.2em;
    border: none;
    border-radius: 5px;
    background-color: #9A56B3;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    z-index: 1;
    opacity: 0;
    animation: buttonFadeInEffect 0.5s forwards;
    animation-delay: 2.8s;
}

.event-button::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    z-index: -1;
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(45deg);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
}

.event-button:hover {
    background-color: #7C3D91;
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.2);
}

.event-button:active {
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.event-button:hover::before {
    opacity: 1;
    transform: rotate(45deg) scale(3);
}

@keyframes buttonFadeInEffect {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

@media (max-width: 968px) {
    .club-description {
        font-size: 1.2em;
        white-space: normal;
        width: auto;
        animation: none;
    }

    .click-indicator {
        animation-delay: 0.2s;
    }

    .club-description:not(.expanded-description) {
        overflow: hidden;
        max-height: 3em;
    }

    .club-description.expanded-description {
        max-height: 300px;
    }

    .event-button {
        animation-delay: 0.2s;
    }
}.intro-section {
    display: flex;
    justify-content: space-between;
    height: calc(100vh - 2em);
    background: linear-gradient(217deg, rgba(172,128,160, 0.8), rgba(255,253,208,0) 70.71%);
    align-items: center;
    position: relative;
}

.text-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
    padding-left: 8em;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.intro-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%; 
    z-index: -2; 
    opacity: 0.75;
    background: 
        linear-gradient(to right, 
            rgba(128, 0, 128, 1), 
            rgba(162, 81, 162, 0.8), 
            rgba(195, 99, 195, 0.6), 
            rgba(228, 176, 228, 0.8), 
            rgba(162, 81, 162, 0.8), 
            transparent
        ), 
        url('/assets/landing-page-4b4ccf06.jpg') center center no-repeat;
    background-size: cover;
}

.intro-section svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.image-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    -o-object-fit: cover;
       object-fit: cover;
}

.image-section img {
    max-width: 55%;
    transition: transform 1s ease;
    height: auto;
    overflow: hidden;
}

.image-section img:hover {
    transform: translateX(80px) translateY(-80px) scale(1.5);
}

@keyframes fadeInOut {
    0% { opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; }
}

@media (max-width: 968px) {
    .intro-section {
        flex-direction: column;
        justify-content: center;
        padding: 1em;
    }

    .text-section {
        padding-left: 0;
        align-items: center;
        text-align: center;
    }

    .image-section {
        display: none;
    }
}
.imageSection-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.media-container {
    display: flex;
    flex-wrap: wrap
}

.image-section-gradient {
    height: 5px;
    background: linear-gradient(to bottom, rgb(148, 119, 188), rgba(136, 84, 208, 0)); 
}

.imageSection-image, .imageSection-video {
    flex: 1;
    width: 50%;
    height: auto;
    max-height:500px;
    transition: transform 0.3s ease;
    -o-object-fit: cover;
       object-fit: cover;
}

.imageSection-image:hover {
    transform: scale(1.05);
}

.imageSection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(128, 0, 128, 0.4);
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    z-index: 1;
}


.highlight-text {
    color: #FFF;
    font-weight: bold;
    font-size: 1.2em; 
    background-color: rgba(0, 0, 0, 0.7);
    padding: 12px 24px; 
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.highlight-text:hover {
    background-color: rgba(0, 0, 0, 0.9);
    transform: scale(1.05);
}

.imageSection-overlay h2 {
    color: white;
    font-size: 2em;
    margin-bottom: 20px; 
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .imageSection-image, .imageSection-video {
        width: 100%;
    }
}
.attention-section {
    background: radial-gradient(circle at center, rgba(60, 0, 60, 0.9) 0%, rgba(100, 0, 100, 0.9) 50%, rgba(60, 0, 60, 0.9) 100%);
    padding: 40px 0;
    text-align: center;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.attention-section h1 {
    font-size: 36px;
    font-weight: bold; 
    margin: 0;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.attention-section button {
    background: linear-gradient(135deg, rgb(80, 0, 80) 0%, rgb(120, 0, 120) 50%, rgb(80, 0, 80) 100%);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-position 0.5s, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    background-size: 200% 100%;
    background-position: 100% 0;
}

.attention-section button:hover {
    background-position: 0 0;
    transform: scale(1.05);
}
.attention-section p {
    font-size: 18px; 
    margin: 10px 0;  
}

@media (max-width: 768px) {
    .attention-section h1 {
        font-size: 28px;
    }

    .attention-section p {
        font-size: 16px;
    }

    .attention-section button {
        font-size: 14px;
        padding: 8px 16px;
    }
}.wait-section {
    background: radial-gradient(circle at center, rgba(60, 0, 60, 0.9) 0%, rgba(100, 0, 100, 0.9) 50%, rgba(60, 0, 60, 0.9) 100%);
    padding: 13em 0;
    text-align: center;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.wait-section h1 {
    font-size: 36px;
    font-weight: bold; 
    margin: 0;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.wait-section button {
    background: linear-gradient(135deg, rgb(80, 0, 80) 0%, rgb(120, 0, 120) 50%, rgb(80, 0, 80) 100%);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    color: white;
    padding: 15px 25px;
    border: none;
    border-radius: 10px;
    font-size: 20px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-position 0.5s, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    background-size: 200% 100%;
    background-position: 100% 0;
}

.wait-section button:hover {
    background-position: 0 0;
    transform: scale(1.05);
}
.wait-section p {
    font-size: 18px; 
    margin: 10px 0;  
}

@media (max-width: 768px) {
    .wait-section h1 {
        font-size: 28px;
    }

    .wait-section p {
        font-size: 16px;
    }

    .wait-section button {
        font-size: 14px;
        padding: 8px 16px;
    }
}.board-container {
    padding: 2rem 0;
    text-align: center;
    background: radial-gradient(circle at center, rgba(60, 0, 60, 0.9) 0%, rgba(100, 0, 100, 0.9) 50%, rgba(60, 0, 60, 0.9) 100%);
}

.board-label {
    font-size: 30px;
}

.board-desc-label { 
    font-weight: bold;
}

.board-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3em;
    padding: 1em;
    justify-content: space-evenly;
    max-width: 1300px;
    margin: 0 auto;
}

.card {
    position: relative;
    width: 280px;
    border-radius: 20px;
    overflow: hidden;
    background: rgb(80,0,80);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    color: #fff;
}

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

.card-header {
    position: relative;
    overflow: hidden;
}

.position-label {
    position: relative;
    text-align: center;
    padding: 0.5rem 0;
    background-color: rgba(80,0,80, 0.4);
    color: #fff;
    font-weight: bold;
    bottom: 100%;
    font-size: 0.9rem;
    z-index: 100;
}

.member-avatar {
    width: 100%;
    height: 180px;
    -o-object-fit: cover;
       object-fit: cover;
    transition: transform 0.3s ease-in-out;
    transform-origin: center top;
}

.card-header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.card:hover .member-avatar {
    transform: scale(1.1);
}

.card-body {
    position: relative;
    flex: 1;
    padding: 1em;
    text-align: center;
    display: block;
}

.member-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0.5rem 0;
    position: relative;
    display: inline-block;
}

.member-name::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #fff;
    left: 0;
    bottom: -5px;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.member-name:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.member-info {
    margin: 0.2rem 0;
    font-size: 0.9rem;
}

.social-icons {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.social-icon {
    width: 24px;
    height: 24px;
    color: white;
    transition: transform 0.2s ease-in-out;
}

.social-media-link:hover .social-icon {
    transform: scale(1.2);
}

.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

.background-animation::before,
.background-animation::after {
    content: "";
    display: block;
    position: absolute;
    width: 200px;
    height: 200px;
    background: url('/assets/board-background-721dd648.png') no-repeat center/contain; 
    animation: float 6s infinite;
    opacity: 0.7;
}

.background-animation::before {
    top: 0%;
    left: 10%;
}

.background-animation::after {
    bottom: 0%;
    right: 5%;
    animation-delay: 3s;
}


.fun-facts {
    top: 0;
    left: 0;
    right: 0; 
    max-height: 200px; 
    overflow-y: auto;
    animation: slideIn 0.3s forwards;
}

.toggle-fun-facts {
    background: linear-gradient(145deg, rgb(80,0,80), #9932cc);
    border: none;
    color: #fff;
    padding: 8px 15px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 0.5rem;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.toggle-fun-facts::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1;
    transform: translateY(-100%);
    transition: transform 0.3s;
}

.toggle-fun-facts:hover {
    background: linear-gradient(145deg, #9932cc, #8a2be2);
}

.toggle-fun-facts:hover::before {
    transform: translateY(100%);
}

.fun-facts-content {
    background-color: rgba(120, 0, 120, 0.9);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.fun-facts-content ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.fun-facts-content li {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
}

.fun-facts-content li::before {
    content: "•";
    position: absolute;
    left: 0.5rem; 
    top: 50%;
    transform: translateY(-50%);  
    color: #9932cc;
    font-size: 1.5rem;
}

@keyframes slideIn {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}
.events-container {
    padding: 4em 0;
    text-align: center;
    background: radial-gradient(circle at center, rgba(90, 0, 90, 0.55) 0%, rgba(70, 0, 70, 0.9) 70%, rgba(80, 0, 60, 0.9) 100%);
}

.events-label {
    font-size: 30px;
    color: #fff;
}

.events-grid {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    gap: 3em;
    justify-content: center;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.event-card {
    position: relative;
    width: 500px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    background: radial-gradient(circle at center, rgba(60, 0, 60, 0.9) 0%, rgba(100, 0, 100, 0.9) 50%, rgba(60, 0, 60, 0.9) 100%);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    color: #fff;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.event-card.glow {
    box-shadow: 0 0 40px rgba(255, 0, 255, 1), 0 0 20px rgba(140, 0, 140, 1);
}

.event-image {
    width: 100%;
    height: auto;
    max-height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: bottom;
       object-position: bottom;
}

.event-arrow {
    position: absolute;
    top: 70%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-color: rgba(90, 0, 90, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease, background-color 0.3s ease;
}

.event-arrow:hover {
    opacity: 1;
    background-color: rgba(90, 0, 90, 0.9);
}

.event-arrow-left {
    left: 10px;
}

.event-arrow-right {
    right: 10px;
}

.event-roadmap-number {
    position: absolute;
    bottom: 20px;
    right: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background-color: rgba(90, 0, 90, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 16px;
    z-index: 3;
    box-shadow: 0 0 10px rgba(90, 0, 90, 0.7);
}

.event-card h2 {
    padding: 1em 1em 0em 1em;
}

.event-card p {
    padding: 0em 1em 1em 1em;
    margin: 0; 
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.enlarge-icon {
    position: absolute;
    right: 10px;
    bottom: 10px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
}

.enlarge-icon:hover {
    transform: scale(1.1); 
}

.enlarged-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.enlarged-overlay img,
.enlarged-overlay video {
    box-shadow: 0 0 40px rgba(255, 0, 255, 1), 0 0 20px rgba(140, 0, 140, 1);
    border-radius: 10px;
    background-color: rgba(128,0,128,0.7);
    width: auto;
    max-width: 75%;
    max-height: 80vh;
    transition: transform 0.3s ease-out;
}

.no-hover {
    transform: none !important;
    box-shadow: none !important;
    cursor: default;
}

.enlarged-content {
    position: relative;
    display: inline-block;
}

.close-icon {
    position: relative;
    cursor: pointer;
    color: white;
    font-size: 24px;
    z-index: 1005;
}

.close-icon>svg {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 0.5em;
}

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: rgba(80, 0, 80, 0.7);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.event-number {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    background-color: rgba(100, 0, 100, 0.85);
    padding: 5px 15px;
    border-radius: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.event-date {
    font-size: 18px;
    color: #fff;
    background-color: rgba(100, 0, 100, 0.85);
    padding: 3px 10px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.enlarged {
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
}

@media (max-width: 600px) {
    .event-card {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .event-image {
        width: 100%;
    }

    .enlarged-overlay img,
    .enlarged-overlay video {
        max-width: 75%;
    }
}.privacy-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    justify-content: flex-start;
    background: radial-gradient(circle at center, rgba(90, 0, 90, 0.55) 0%, rgba(70, 0, 70, 0.9) 70%, rgba(80, 0, 60, 0.9) 100%);
    padding: 2em 0em;
    color: white;
    overflow-x: hidden;
}

.privacy-section {
    background-color: rgba(255, 255, 255, 0.85);
    margin: 1rem;
    padding: 2rem;
    border-radius: 10px;
    max-width: 800px;
    width: calc(100% - 2rem);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all .3s ease;
}

.privacy-banner {
    background-color: rgba(70, 0, 70, 0.85);
    padding: 1rem;
    border-radius: 10px 10px 0 0;
    margin: -2rem -2rem 1rem -2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.privacy-banner h2 {
    margin: 0;
    color: #ffffff;
    text-transform: uppercase;
    text-align: center;
    font-size: 1.8rem;
}

.privacy-content {
    color: #000000;
    text-align: left;
    font-size: 1rem;
    font-weight: 400;
}

.privacy p, .privacy ul {
    margin: 0.5rem 0;
    line-height: 1.6;
}

.privacy ul {
    list-style-type: circle;
    margin-left: 2rem;
}

.update-footer {
    text-align: center;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 2rem;
}

.update-date {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted #ffffff81;
    cursor: help;
}

.update-date:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 5px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 2000;
}

.privacy-link {
    color: rgb(90, 0, 90);
    text-decoration: none;
    font-weight: 500;
}

.privacy-link:hover {
    text-decoration: underline;
}

@media screen and (max-width: 600px) {
    .privacy-page {
        padding: 1em 0;
    }
    .privacy-section {
        width: calc(100% - 1rem); 
        padding: 1rem;
        margin: 0.5rem;
    }

    .privacy-banner {
        margin: -1rem -1rem 1rem -1rem; 
        padding: 0.8rem;
    }
}
.unsubscribe-container {
    padding: 4em 1em;
    text-align: center;
    background: rgba(60, 0, 60, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.unsubscribe-form-container {
    background: white;
    padding: 2em;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    width: 100%;
    margin: 0 0;
}

.unsubscribe-form {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.unsubscribe-input {
    padding: 1em;
    border-radius: 5px;
    border: 2px solid #5a005a;
    color: #4A0072;
}

.unsubscribe-captcha {
    margin-top: 1em;
    margin-bottom: 1em;
}

.unsubscribe-button {
    padding: 1em 2em;
    background-color: #5a005a;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: bold;
}

.unsubscribe-button:hover {
    background-color: #6A0080;
}

.unsubscribe-form-container > .subscribe-message {
    width: 100%;
    color: rgb(183, 56, 56);
    padding: 4px 6px;
}


.unsubscribe-form-container > .subscribe-message.success {
    background-color: white;
    border-color: white;
    color: green;
}
@media (max-width: 600px) {
    .unsubscribe-form-container {
        width: 90%;
        padding: 1.5em;
    }

    .unsubscribe-button {
        padding: 0.8em 1.6em;
    }
}
.sixflags-container {
  position: relative;
  padding: 4rem 1rem;
  background: radial-gradient(
      circle at center,
      rgba(45, 0, 60, 0.95) 0%,
      rgba(75, 0, 90, 0.95) 40%,
      rgba(50, 0, 70, 0.95) 70%,
      rgba(30, 0, 45, 0.95) 100%
    ),
    linear-gradient(
      135deg,
      rgba(153, 50, 204, 0.3) 0%,
      rgba(255, 110, 199, 0.15) 50%,
      rgba(75, 0, 130, 0.3) 100%
    );
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  text-align: center;
}

.sixflags-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(153, 50, 204, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(255, 110, 199, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(255, 215, 0, 0.06) 0%,
      transparent 60%
    );
  animation: gentlePulse 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.sixflags-container::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(153, 50, 204, 0.03) 2px,
    rgba(153, 50, 204, 0.03) 4px
  );
  animation: slowRotate 25s linear infinite;
  pointer-events: none;
  z-index: 0;
}

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

@keyframes slowRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Floating theme park emojis */
.sixflags-background-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.sixflags-background-animation::before,
.sixflags-background-animation::after {
  content: "🎢";
  position: absolute;
  font-size: 100px;
  opacity: 0.5;
  animation: floatEmoji 7s ease-in-out infinite;
  pointer-events: none;
}

.sixflags-background-animation::before {
  top: 5%;
  left: 5%;
  animation-delay: 0s;
  content: "🎡";
  font-size: 90px;
  opacity: 0.4;
}

.sixflags-background-animation::after {
  bottom: 8%;
  right: 5%;
  animation-delay: 3.5s;
  content: "🎢";
  font-size: 100px;
  opacity: 0.35;
}

.sixflags-float-1,
.sixflags-float-2,
.sixflags-float-3,
.sixflags-float-4,
.sixflags-float-5 {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.sixflags-float-1::before,
.sixflags-float-2::before,
.sixflags-float-3::before,
.sixflags-float-4::before,
.sixflags-float-5::before {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: floatEmoji 7s ease-in-out infinite;
}

.sixflags-float-1 {
  top: 8%;
  right: 10%;
}

.sixflags-float-1::before {
  content: "🎠";
  font-size: 80px;
  opacity: 0.35;
  animation-delay: 1s;
}

.sixflags-float-2 {
  bottom: 15%;
  left: 3%;
}

.sixflags-float-2::before {
  content: "🎪";
  font-size: 85px;
  opacity: 0.3;
  animation-delay: 2s;
}

.sixflags-float-3 {
  top: 45%;
  left: 8%;
}

.sixflags-float-3::before {
  content: "🎟️";
  font-size: 70px;
  opacity: 0.3;
  animation-delay: 0.5s;
}

.sixflags-float-4 {
  top: 20%;
  right: 30%;
}

.sixflags-float-4::before {
  content: "🎡";
  font-size: 65px;
  opacity: 0.25;
  animation-delay: 1.8s;
}

.sixflags-float-5 {
  bottom: 25%;
  right: 15%;
}

.sixflags-float-5::before {
  content: "✨";
  font-size: 55px;
  opacity: 0.35;
  animation-delay: 2.5s;
}

@keyframes floatEmoji {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-22px) rotate(8deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

/* Particle field */
.sixflags-background-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(
      2px 2px at 15% 25%,
      rgba(255, 215, 0, 0.3),
      transparent
    ),
    radial-gradient(
      2px 2px at 55% 65%,
      rgba(255, 110, 199, 0.25),
      transparent
    ),
    radial-gradient(
      1px 1px at 45% 45%,
      rgba(255, 255, 255, 0.2),
      transparent
    ),
    radial-gradient(
      1px 1px at 75% 15%,
      rgba(153, 50, 204, 0.3),
      transparent
    ),
    radial-gradient(
      2px 2px at 85% 55%,
      rgba(255, 215, 0, 0.2),
      transparent
    ),
    radial-gradient(
      1px 1px at 30% 55%,
      rgba(255, 110, 199, 0.2),
      transparent
    ),
    radial-gradient(
      1px 1px at 60% 25%,
      rgba(255, 255, 255, 0.15),
      transparent
    ),
    radial-gradient(
      1.5px 1.5px at 10% 75%,
      rgba(255, 215, 0, 0.25),
      transparent
    ),
    radial-gradient(
      1px 1px at 40% 10%,
      rgba(153, 50, 204, 0.2),
      transparent
    );
  background-size: 200% 200%;
  animation: sparkle 18s linear infinite;
  opacity: 0.6;
}

.sixflags-background-particles::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 215, 0, 0.08) 50%,
    transparent 70%
  );
  animation: lightSweep 14s ease-in-out infinite;
}

@keyframes sparkle {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}

@keyframes lightSweep {
  0%,
  100% {
    transform: translateX(-100%) translateY(-100%);
    opacity: 0;
  }
  50% {
    transform: translateX(100%) translateY(100%);
    opacity: 0.3;
  }
}

/* Neon arc — amusement park neon glow */
.sixflags-neon-arc {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 120vw;
  height: 400px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  border: 8px solid rgba(255, 110, 199, 0.15);
  box-shadow: 0 0 0 8px rgba(153, 50, 204, 0.12),
    0 0 0 16px rgba(138, 43, 226, 0.1), 0 0 0 24px rgba(255, 215, 0, 0.08),
    0 0 0 32px rgba(255, 110, 199, 0.06),
    0 0 0 40px rgba(153, 50, 204, 0.04);
  filter: blur(6px);
  animation: neonFade 22s ease-in-out infinite;
  -webkit-clip-path: polygon(0% 50%, 100% 50%, 100% 100%, 0% 100%);
          clip-path: polygon(0% 50%, 100% 50%, 100% 100%, 0% 100%);
}

@keyframes neonFade {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 0;
  }
  15% {
    opacity: 0.2;
  }
  30% {
    opacity: 0.35;
  }
  50% {
    transform: translateX(-50%) translateY(-8px);
    opacity: 0.25;
  }
  70% {
    opacity: 0.3;
  }
  85% {
    opacity: 0.15;
  }
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0;
  }
}

/* Glass card */
.sixflags-content-box {
  background: linear-gradient(
    135deg,
    rgba(75, 0, 90, 0.92) 0%,
    rgba(50, 0, 70, 0.92) 100%
  );
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.6),
    0px 0px 0px 2px rgba(255, 204, 255, 0.2),
    inset 0px 1px 0px rgba(255, 255, 255, 0.08);
  max-width: 800px;
  width: 100%;
  color: #fff;
  border: 1px solid rgba(255, 204, 255, 0.15);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}

/* Heading — grid keeps left/right coaster art aligned with title when text wraps */
.sixflags-heading-wrapper {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0 14px;
  margin: 0 0 0.5rem;
  padding: 0;
  font-weight: inherit;
}

.sixflags-heading {
  display: block;
  min-width: 0;
  margin: 0;
  font-size: 2.8rem;
  font-weight: bold;
  /* Tight line-height + background-clip:text clips descenders (g, y); extra
     padding-bottom extends the painted box so the tail of “g” isn’t cut off. */
  line-height: 1.22;
  padding: 0.05em 0 0.14em;
  overflow: visible;
  background: linear-gradient(45deg, #ffccff, #ffd700, #ffccff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sixflags-heading-icon {
  width: 2.8rem;
  height: 2.8rem;
  filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.4));
  display: block;
  flex-shrink: 0;
  align-self: center;
}

.sixflags-heading-icon-flip {
  transform: scaleX(-1);
}

.sixflags-tagline {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  font-weight: 500;
  color: #f0d0ff;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
}

.sixflags-section-title {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  text-decoration: underline;
  text-underline-offset: 6px;
  color: #ffccff;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Collaborators — mobile: icon above text, 16px radius. Desktop (768+): icon
   beside text, tighter radius; inner shrink-wraps so text isn’t oddly centered. */
.sixflags-clubs-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.12) 0%,
    rgba(255, 204, 255, 0.1) 100%
  );
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 16px;
  padding: 0.75rem 1.5rem 0.85rem;
  margin-bottom: 2.2rem;
  box-sizing: border-box;
}

.sixflags-clubs-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  min-width: 0;
}

.sixflags-clubs-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sixflags-clubs-icon .event-icon-svg {
  display: block;
  width: 1.55rem;
  height: 1.55rem;
}

.sixflags-clubs-list {
  margin: 0;
  padding: 0;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  text-align: center;
  line-height: 1.5;
  font-size: 1rem;
}

.sixflags-clubs-sep {
  color: rgba(255, 224, 150, 0.85);
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.sixflags-clubs-name {
  font-weight: 600;
  color: #ffd700;
  letter-spacing: 0.02em;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

@media (min-width: 768px) {
  .sixflags-clubs-banner {
    border-radius: 12px;
    padding: 0.6rem 1.35rem;
  }

  .sixflags-clubs-inner {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .sixflags-clubs-list {
    width: auto;
    max-width: min(36rem, 100%);
    text-align: left;
  }
}

.sixflags-event-details {
  margin-bottom: 2.5rem;
  width: 100%;
}

.sixflags-event-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 0.75rem;
}

/* Panels sit inside the glass content box — inset stroke + soft fill, no
   second “floating card” drop shadow (that stacked oddly on the outer glass). */
.sixflags-event-item {
  background: linear-gradient(
    135deg,
    rgba(35, 8, 48, 0.65) 0%,
    rgba(22, 4, 32, 0.72) 100%
  );
  padding: 1.2rem 1.5rem;
  border-radius: 14px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.22);
  width: 220px;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  text-align: left;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  border: 1px solid rgba(255, 204, 255, 0.14);
}

@media (hover: hover) and (pointer: fine) {
  .sixflags-event-item:hover {
    background: linear-gradient(
      135deg,
      rgba(48, 12, 58, 0.82) 0%,
      rgba(30, 6, 40, 0.88) 100%
    );
    border-color: rgba(255, 204, 255, 0.24);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.14),
      inset 0 -1px 0 rgba(0, 0, 0, 0.18);
  }
}

.event-icon {
  font-size: 2.2rem;
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.3));
  flex-shrink: 0;
}

.event-icon-svg {
  width: 2.4rem;
  height: 2.4rem;
  display: block;
}

.event-info h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #ffccff;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
}

.event-info p {
  margin: 0.3rem 0 0;
  font-size: 1rem;
  color: #f5e0ff;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Countdown */
.countdown-display {
  margin-top: 0.5rem;
}

.countdown-grid {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.countdown-item {
  text-align: center;
  min-width: 45px;
}

.countdown-number {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  background: linear-gradient(45deg, #ffccff, #ffd700, #ffccff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 0.2rem;
}

.countdown-label {
  font-size: 0.65rem;
  color: #f0d0ff;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  font-weight: bold;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
  display: block;
  line-height: 1;
}

/* Pricing */
.pricing-text {
  margin: 0;
  font-size: 1rem;
  color: #f5e0ff;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
  line-height: 1.4;
}

.price-highlight {
  font-weight: bold;
  color: #ffd700;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Includes section */
.sixflags-includes-section {
  margin-top: 3rem;
}

.sixflags-includes-badge-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.sixflags-include-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(
    135deg,
    rgba(100, 20, 120, 0.9) 0%,
    rgba(65, 0, 85, 0.9) 100%
  );
  padding: 1.5rem;
  border-radius: 18px;
  width: 150px;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.4),
    0px 0px 0px 1px rgba(255, 204, 255, 0.15);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 204, 255, 0.1);
}

.sixflags-include-badge:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.5),
    0px 0px 0px 2px rgba(255, 204, 255, 0.35);
  background: linear-gradient(
    135deg,
    rgba(120, 30, 140, 1) 0%,
    rgba(80, 0, 100, 1) 100%
  );
}

.badge-icon {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 204, 255, 0.25) 100%
  );
  border-radius: 50%;
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  margin-bottom: 1rem;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3),
    inset 0px 1px 0px rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 204, 255, 0.25);
}

.badge-text {
  margin: 0;
  font-size: 1rem;
  font-weight: bold;
  color: #ffccff;
  text-align: center;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Buttons */
.sixflags-button-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.sixflags-next-button {
  margin-top: 3rem;
  background: linear-gradient(145deg, rgb(120, 30, 140), #9932cc);
  color: #fff;
  padding: 1.2rem 3rem;
  border: none;
  border-radius: 30px;
  font-size: 1.3rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.5),
    0px 0px 0px 2px rgba(255, 204, 255, 0.25);
  transition: all 0.3s ease;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
}

.sixflags-next-button:hover {
  background: linear-gradient(145deg, #9932cc, #8a2be2);
  transform: translateY(-6px);
  box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.6),
    0px 0px 0px 3px rgba(255, 204, 255, 0.45);
}

.sixflags-secondary-button {
  background: transparent;
  border: 2px solid #ffccff;
  color: #ffccff;
  padding: 1.2rem 3rem;
  border-radius: 30px;
  font-size: 1.3rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.4),
    0px 0px 0px 1px rgba(255, 204, 255, 0.15);
  margin-top: 3rem;
  transition: all 0.3s ease;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
}

.sixflags-secondary-button:hover {
  background: linear-gradient(145deg, #ffccff, #f5e0ff);
  color: #4b004b;
  transform: translateY(-6px);
  box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.5),
    0px 0px 0px 2px rgba(255, 204, 255, 0.4);
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
}

/* Spinner (kept for other components sharing this CSS) */
.sixflags-loading-spinner {
  width: 180px;
  height: 180px;
  border: 8px solid rgba(255, 204, 255, 0.2);
  border-top: 8px solid #ffccff;
  border-radius: 50%;
  animation: spin2 1.2s linear infinite;
  margin: 2rem auto;
}

@keyframes spin2 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Responsive */
@media (max-width: 767px) {
  .sixflags-container {
    padding: 1.5rem 1rem 2.75rem;
    align-items: center;
  }

  .sixflags-content-box {
    padding: 2rem 1.35rem 2.15rem;
    border-radius: 16px;
  }

  /* Top-heavy title row: pin coaster icons to first line when heading wraps */
  .sixflags-heading-wrapper {
    align-items: start;
    gap: 0 10px;
    margin-bottom: 1rem;
  }

  .sixflags-heading-icon {
    width: 1.75rem;
    height: 1.75rem;
    margin-top: 0.2rem;
    align-self: start;
  }

  .sixflags-heading {
    font-size: clamp(1.45rem, 5.5vw, 2.05rem);
    line-height: 1.28;
    text-align: center;
    padding: 0.06em 0.2rem 0.14em;
  }

  .sixflags-tagline {
    font-size: 1.05rem;
    line-height: 1.55;
    margin: 0 0 1.35rem;
    padding: 0 0.35rem;
  }

  .sixflags-clubs-banner {
    box-sizing: border-box;
    width: 100%;
    max-width: min(100%, 26rem);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
    padding: 0.8rem 1rem 0.85rem;
    border-radius: 16px;
  }

  .sixflags-clubs-inner {
    gap: 0.5rem;
  }

  .sixflags-clubs-list {
    min-width: 0;
    line-height: 1.5;
    font-size: 0.88rem;
    text-align: center;
  }

  .sixflags-clubs-name {
    font-size: inherit;
    line-height: inherit;
    letter-spacing: 0.02em;
  }

  .sixflags-clubs-icon .event-icon-svg {
    display: block;
    width: 1.3rem;
    height: 1.3rem;
  }

  .sixflags-section-title {
    font-size: 1.45rem;
    margin: 0.35rem 0 1.35rem;
    text-underline-offset: 8px;
  }

  .sixflags-event-details {
    margin-bottom: 2rem;
  }

  .countdown-grid {
    gap: 0.55rem;
    justify-content: flex-start;
  }

  .countdown-item {
    min-width: 40px;
  }

  .countdown-number {
    font-size: 1.45rem;
  }

  .countdown-label {
    font-size: 0.62rem;
  }

  .pricing-text {
    font-size: 0.95rem;
  }

  .sixflags-event-grid {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    overflow-x: hidden;
    padding: 0;
    box-sizing: border-box;
    gap: 1.1rem;
    margin-top: 1.15rem;
  }

  .sixflags-event-item {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 1.15rem 1.2rem;
    gap: 0.95rem;
    align-items: flex-start;
  }

  .event-info h3 {
    font-size: 1.05rem;
    margin-bottom: 0.15rem;
  }

  .event-info p {
    font-size: 1.02rem;
    line-height: 1.45;
  }

  .event-icon-svg {
    width: 2.15rem;
    height: 2.15rem;
  }

  .sixflags-includes-badge-grid {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    padding: 0 0.5rem;
    box-sizing: border-box;
    justify-content: center;
  }

  .sixflags-include-badge {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .sixflags-button-row {
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.5rem;
  }

  .sixflags-next-button,
  .sixflags-secondary-button {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 0 !important;
  }
}

/* Narrow phones: drop side coaster art so the title and pill aren’t squeezed */
@media (max-width: 480px) {
  .sixflags-content-box {
    padding: 1.85rem 1rem 2.1rem;
  }

  .sixflags-heading-wrapper .sixflags-heading-icon {
    display: none;
  }

  .sixflags-heading-wrapper {
    display: block;
    margin-bottom: 1.15rem;
  }

  .sixflags-heading {
    font-size: clamp(1.5rem, 6.2vw, 1.85rem);
    line-height: 1.28;
    padding-bottom: 0.14em;
  }

  .sixflags-tagline {
    margin-bottom: 1.45rem;
  }

  .sixflags-clubs-banner {
    padding: 0.9rem 1rem;
  }
}
/*
 * Login (Already RSVP’d): background = checkout-unified-container (Payment.css).
 * Transparent card shell; no extra ::before/::after (avoids seams vs pay-* layers).
 */
 .sixflags-form-container.six-flags-login-inner {
  flex: 0 1 auto;
  width: 100%;
  max-width: 560px;
  padding: 0 0.5rem;
  box-sizing: border-box;
  background: transparent;
  justify-content: center;
}

.sixflags-form-container.six-flags-login-inner::before,
.sixflags-form-container.six-flags-login-inner::after {
  display: none;
}

.sixflags-form-container {
  position: relative;
  padding: 4rem 1rem;
  background:
    radial-gradient(
      circle at center,
      rgba(45, 0, 60, 0.95) 0%,
      rgba(75, 0, 90, 0.95) 40%,
      rgba(50, 0, 70, 0.95) 70%,
      rgba(30, 0, 45, 0.95) 100%
    ),
    linear-gradient(
      135deg,
      rgba(153, 50, 204, 0.3) 0%,
      rgba(255, 110, 199, 0.15) 50%,
      rgba(75, 0, 130, 0.3) 100%
    );
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.sixflags-form-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(153, 50, 204, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(255, 110, 199, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(255, 215, 0, 0.05) 0%,
      transparent 60%
    );
  animation: formGentlePulse 10s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.sixflags-form-container::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(153, 50, 204, 0.025) 2px,
    rgba(153, 50, 204, 0.025) 4px
  );
  animation: formSlowRotate 30s linear infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes formGentlePulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.75;
    transform: scale(1.04);
  }
}

@keyframes formSlowRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes formSparkle {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}

@keyframes formSweep {
  0%,
  100% {
    transform: translateX(-100%) translateY(-100%);
    opacity: 0;
  }
  50% {
    transform: translateX(100%) translateY(100%);
    opacity: 0.25;
  }
}

@keyframes dropdownSlideIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Particle field on form background */
.sixflags-form-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(
      1.5px 1.5px at 12% 20%,
      rgba(255, 215, 0, 0.25),
      transparent
    ),
    radial-gradient(1px 1px at 50% 40%, rgba(255, 110, 199, 0.2), transparent),
    radial-gradient(
      1.5px 1.5px at 80% 15%,
      rgba(153, 50, 204, 0.25),
      transparent
    ),
    radial-gradient(1px 1px at 30% 70%, rgba(255, 215, 0, 0.2), transparent),
    radial-gradient(1px 1px at 65% 60%, rgba(255, 255, 255, 0.15), transparent),
    radial-gradient(
      1.5px 1.5px at 90% 80%,
      rgba(255, 110, 199, 0.18),
      transparent
    ),
    radial-gradient(1px 1px at 15% 90%, rgba(153, 50, 204, 0.2), transparent);
  background-size: 200% 200%;
  animation: formSparkle 20s linear infinite;
  opacity: 0.5;
}

.sixflags-form-particles::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 215, 0, 0.06) 50%,
    transparent 70%
  );
  animation: formSweep 16s ease-in-out infinite;
}

.sixflags-form-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
  background: linear-gradient(45deg, #ffccff, #ffd700, #ffccff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

.attendee-counter-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.attendee-counter {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.counter-button {
  background: linear-gradient(145deg, rgb(120, 30, 140), #9932cc);
  color: #fff;
  border: none;
  padding: 0.4rem 0.7rem;
  font-size: 1.2rem;
  border-radius: 10px;
  cursor: pointer;
  box-shadow:
    0px 6px 18px rgba(0, 0, 0, 0.4),
    0px 0px 0px 1px rgba(255, 204, 255, 0.15);
  transition: all 0.3s ease;
}

.counter-button:hover {
  background: linear-gradient(145deg, #9932cc, #8a2be2);
  transform: translateY(-2px);
  box-shadow:
    0px 8px 22px rgba(0, 0, 0, 0.5),
    0px 0px 0px 2px rgba(255, 204, 255, 0.3);
}

.add-attendee-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: #f0d0ff;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
}

.attendee-number {
  font-size: 2rem;
  font-weight: bold;
  background: linear-gradient(45deg, #ffccff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.attendee-forms {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  max-width: 700px;
  position: relative;
  z-index: 10;
}

.attendee-form {
  background: linear-gradient(
    135deg,
    rgba(75, 0, 90, 0.92) 0%,
    rgba(50, 0, 70, 0.92) 100%
  );
  padding: 2rem;
  border-radius: 20px;
  box-shadow:
    0px 15px 35px rgba(0, 0, 0, 0.5),
    0px 0px 0px 2px rgba(255, 204, 255, 0.15),
    inset 0px 1px 0px rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 204, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  overflow: visible;
  position: relative;
}

.attendee-form__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.attendee-form__header h3 {
  margin: 0;
  font-size: 1.5rem;
  color: #ffccff;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
}

.attendee-form__remove {
  flex-shrink: 0;
  padding: 0.45rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 200, 220, 0.95);
  background: rgba(180, 40, 80, 0.35);
  border: 1px solid rgba(255, 120, 140, 0.35);
  border-radius: 10px;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.15s;
}

.attendee-form__remove:hover {
  background: rgba(200, 50, 90, 0.5);
  border-color: rgba(255, 160, 180, 0.5);
}

.attendee-form__remove:active {
  transform: scale(0.98);
}

.attendee-form input,
.attendee-form select {
  width: 100%;
  padding: 0.9rem 1rem;
  margin-bottom: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 204, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1rem;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.attendee-form input:focus,
.attendee-form select:focus {
  outline: none;
  border-color: rgba(255, 204, 255, 0.35);
  box-shadow: 0 0 0 3px rgba(153, 50, 204, 0.25);
}

.attendee-form input::-moz-placeholder {
  color: rgba(255, 204, 255, 0.45);
}

.attendee-form input::placeholder {
  color: rgba(255, 204, 255, 0.45);
}

.attendee-form input:-webkit-autofill,
.attendee-form input:-webkit-autofill:hover,
.attendee-form input:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff;
  -webkit-box-shadow: 0 0 0 1000px rgba(75, 0, 90, 0.95) inset;
  caret-color: #fff;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

.attendee-form input[type="tel"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.attendee-form select option {
  background: #fff;
  color: #000;
}

.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-row input,
.form-row select {
  flex: 1;
}

.styled-select {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1rem;
  border: 1px solid rgba(255, 204, 255, 0.12);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="white" height="18" viewBox="0 0 24 24" width="18" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 18px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.styled-select:focus {
  outline: none;
  border-color: rgba(255, 204, 255, 0.35);
  box-shadow: 0 0 0 3px rgba(153, 50, 204, 0.25);
}

.styled-select option {
  background: #fff;
  color: #000;
}

.navigation-buttons {
  margin-top: -2rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.sixflags-back-button {
  margin-top: 3rem;
  background: transparent;
  border: 2px solid #ffccff;
  color: #ffccff;
  padding: 1.2rem 3rem;
  border-radius: 30px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow:
    0px 8px 25px rgba(0, 0, 0, 0.4),
    0px 0px 0px 1px rgba(255, 204, 255, 0.15);
  transition: all 0.3s ease;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
}

.sixflags-back-button:hover {
  background: linear-gradient(145deg, #ffccff, #f5e0ff);
  color: #4b004b;
  transform: translateY(-6px);
  box-shadow:
    0px 15px 35px rgba(0, 0, 0, 0.5),
    0px 0px 0px 2px rgba(255, 204, 255, 0.4);
  text-shadow: none;
}

.sixflags-next-button {
  margin-top: 3rem;
  background: linear-gradient(145deg, rgb(120, 30, 140), #9932cc);
  color: #fff;
  padding: 1.2rem 3rem;
  border: none;
  border-radius: 30px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow:
    0px 8px 25px rgba(0, 0, 0, 0.5),
    0px 0px 0px 2px rgba(255, 204, 255, 0.25);
  transition: all 0.3s ease;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
}

.sixflags-next-button:hover {
  background: linear-gradient(145deg, #9932cc, #8a2be2);
  transform: translateY(-6px);
  box-shadow:
    0px 15px 35px rgba(0, 0, 0, 0.6),
    0px 0px 0px 3px rgba(255, 204, 255, 0.45);
}

.input-error {
  border: 2px solid #ff4c4c !important;
  background-color: rgba(255, 76, 76, 0.12) !important;
}

input.input-error,
select.input-error {
  border: 2px solid #ff4c4c !important;
  background-color: rgba(255, 76, 76, 0.12) !important;
}

.tooltip-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-left: 6px;
  width: 18px;
  height: 18px;
  background: linear-gradient(145deg, #9932cc, #8a2be2);
  color: white;
  border-radius: 50%;
  font-size: 0.9rem;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.tooltip-icon::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: linear-gradient(
    135deg,
    rgba(75, 0, 90, 0.97),
    rgba(50, 0, 70, 0.97)
  );
  color: #f0d0ff;
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
  white-space: nowrap;
  font-size: 0.8rem;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s,
    transform 0.3s;
  z-index: 10;
  border: 1px solid rgba(255, 204, 255, 0.2);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.tooltip-icon:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.input-with-tooltip {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}

.input-with-tooltip input {
  width: 100%;
  padding-right: 2.5rem;
}

/* Same placement as address field tooltip — see .tooltip-icon sizing */
.input-with-tooltip .tooltip-icon,
.dob-input-wrapper .dob-calendar-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-100%);
}

/* Address autocomplete */
.address-autocomplete-wrapper {
  position: relative;
  flex: 1;
  min-width: 0;
}

.address-autocomplete-wrapper input {
  width: 100%;
  box-sizing: border-box;
}

.address-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(40, 0, 50, 0.98);
  border: 1px solid rgba(255, 204, 255, 0.2);
  border-radius: 12px;
  margin-top: 4px;
  padding: 0;
  list-style: none;
  z-index: 100;
  max-height: 220px;
  overflow-y: auto;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  animation: dropdownSlideIn 0.2s ease-out;
  transform-origin: top center;
}

.address-suggestion-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: #f0d0ff;
  text-align: left;
  transition: background 0.15s;
  border-bottom: 1px solid rgba(255, 204, 255, 0.06);
}

.address-suggestion-item:last-of-type {
  border-bottom: none;
}

.address-suggestion-item:hover,
.address-suggestion-item.active {
  background: rgba(153, 50, 204, 0.35);
  color: #fff;
}

.suggestion-icon {
  flex-shrink: 0;
  font-size: 0.85rem;
  margin-top: 2px;
}

.suggestion-text {
  line-height: 1.3;
}

.address-attribution {
  font-size: 0.65rem;
  color: rgba(255, 204, 255, 0.3);
  text-align: center;
  padding: 0.35rem;
  border-top: 1px solid rgba(255, 204, 255, 0.06);
}

/* DOB — mirror .input-with-tooltip: relative flex shell; icon out of flow like ? tooltip */
.dob-input-wrapper {
  position: relative;
  flex: 1;
  min-width: 0;
  align-self: flex-start;
  display: flex;
  align-items: center;
}

.dob-input-wrapper > input[type="text"] {
  width: 100%;
  padding-right: 2.5rem;
  box-sizing: border-box;
}

.dob-calendar-btn {
  /* Match .tooltip-icon hit box (18×18) so shared absolute + translateY(-100%) lines up the same */
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  padding: 0;
  margin: 0;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 0;
  opacity: 0.45;
  transition: opacity 0.2s;
}

.dob-calendar-btn svg {
  display: block;
  width: 18px;
  height: 18px;
}

.dob-calendar-btn:hover {
  opacity: 0.9;
}

/* Calendar popup */
.datepicker-popup {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  width: min(100vw - 2rem, 320px);
  max-width: 320px;
  overflow: visible;
  color-scheme: dark;
  background: rgba(75, 15, 95, 0.97);
  border: 1px solid rgba(255, 204, 255, 0.2);
  border-radius: 14px;
  padding: 0.75rem 0.85rem 0.85rem;
  z-index: 100;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  animation: dropdownSlideIn 0.2s ease-out;
  transform-origin: top right;
}

.datepicker-header {
  --dp-header-h: 32px;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}

.datepicker-selects {
  display: flex;
  flex: 1;
  min-width: 0;
  gap: 0.45rem;
  align-items: center;
  height: var(--dp-header-h);
}

/* Custom month/year menus (native <select> lists can fill the whole viewport) */
.datepicker-dropdown {
  position: relative;
  flex: 1.15;
  min-width: 0;
}

.datepicker-dropdown--year {
  flex: 0.95;
  min-width: 4.75rem;
}

.datepicker-select-trigger {
  box-sizing: border-box;
  width: 100%;
  height: var(--dp-header-h);
  margin: 0;
  padding: 0 0.38rem 0 0.45rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.2rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  font-family: inherit;
  border-radius: 8px;
  border: 1px solid rgba(255, 204, 255, 0.28);
  background-color: rgba(42, 10, 58, 0.96);
  color: #ffeefc;
  -webkit-text-fill-color: #ffeefc;
  cursor: pointer;
  transition:
    border-color 0.15s,
    box-shadow 0.15s,
    background-color 0.15s;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 1px 2px rgba(0, 0, 0, 0.2);
}

.datepicker-select-trigger:hover {
  border-color: rgba(255, 204, 255, 0.42);
  background-color: rgba(52, 18, 68, 0.98);
}

.datepicker-select-trigger:focus {
  outline: none;
  border-color: rgba(255, 204, 255, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 2px rgba(153, 50, 204, 0.45);
}

.datepicker-select-trigger-chevron {
  flex-shrink: 0;
  font-size: 0.6rem;
  line-height: 1;
  opacity: 0.85;
}

.datepicker-select-list {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 6;
  max-height: min(11rem, 34vh);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  margin: 0;
  padding: 0;
  list-style: none;
  border-radius: 10px;
  border: 1px solid rgba(255, 204, 255, 0.22);
  background: rgba(28, 6, 40, 0.98);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 204, 255, 0.28) rgba(0, 0, 0, 0.12);
}

.datepicker-select-list--year {
  max-height: min(12rem, 38vh);
}

.datepicker-select-list::-webkit-scrollbar {
  width: 5px;
}

.datepicker-select-list::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 100px;
  margin: 6px 0;
}

.datepicker-select-list::-webkit-scrollbar-thumb {
  background: rgba(255, 204, 255, 0.22);
  border-radius: 100px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.datepicker-select-list::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 204, 255, 0.35);
}

.datepicker-select-option {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0.42rem 0.65rem;
  border: none;
  background: transparent;
  font-size: 0.8125rem;
  font-weight: 500;
  font-family: inherit;
  color: #f0d8ff;
  text-align: left;
  cursor: pointer;
  transition: background 0.12s;
}

.datepicker-select-option:hover {
  background: rgba(153, 50, 204, 0.35);
  color: #fff;
}

.datepicker-select-option.is-active {
  background: rgba(153, 50, 204, 0.45);
  color: #fff;
  font-weight: 700;
}

.datepicker-nav {
  box-sizing: border-box;
  flex-shrink: 0;
  width: var(--dp-header-h);
  height: var(--dp-header-h);
  background: rgba(35, 8, 48, 0.6);
  border: 1px solid rgba(255, 204, 255, 0.22);
  color: #ffccff;
  font-size: 1.05rem;
  line-height: 1;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}

.datepicker-nav:hover {
  background: rgba(153, 50, 204, 0.4);
  border-color: rgba(255, 204, 255, 0.3);
}

.datepicker-days-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 0.3rem;
}

.datepicker-day-label {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 204, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.25rem 0;
}

.datepicker-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.datepicker-cell {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: #f0d0ff;
  border: none;
  background: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s;
}

.datepicker-cell:hover:not(.empty) {
  background: rgba(153, 50, 204, 0.45);
  color: #fff;
}

.datepicker-cell.empty {
  cursor: default;
}

.datepicker-cell.today {
  border: 1px solid rgba(255, 215, 0, 0.4);
  color: #ffd700;
  font-weight: 600;
}

.datepicker-cell.selected {
  background: linear-gradient(145deg, #9932cc, #7b28a8);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(153, 50, 204, 0.5);
}

/* Custom select dropdown */
.custom-select-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 1rem;
}

.form-row .custom-select-wrapper {
  flex: 1;
  margin-bottom: 0;
}

.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 204, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  text-align: left;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  box-sizing: border-box;
}

.custom-select-trigger:focus {
  outline: none;
  border-color: rgba(255, 204, 255, 0.35);
  box-shadow: 0 0 0 3px rgba(153, 50, 204, 0.25);
}

.custom-select-trigger.open {
  border-color: rgba(255, 204, 255, 0.35);
  box-shadow: 0 0 0 3px rgba(153, 50, 204, 0.25);
}

.custom-select-trigger.input-error {
  border: 2px solid #ff4c4c !important;
  background-color: rgba(255, 76, 76, 0.12) !important;
}

.trigger-placeholder {
  color: rgba(255, 204, 255, 0.45);
}

.trigger-value {
  color: #fff;
}

.trigger-arrow {
  font-size: 0.9rem;
  color: rgba(255, 204, 255, 0.5);
  transition: transform 0.25s ease;
  flex-shrink: 0;
  margin-left: 0.5rem;
}

.trigger-arrow.rotated {
  transform: rotate(180deg);
}

.custom-select-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: rgba(85, 20, 105, 0.95);
  border: 1px solid rgba(255, 204, 255, 0.2);
  border-radius: 12px;
  padding: 0.3rem 0;
  margin: 0;
  list-style: none;
  z-index: 100;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  animation: dropdownSlideIn 0.2s ease-out;
  transform-origin: top center;
}

.custom-select-option {
  padding: 0.7rem 1rem;
  cursor: pointer;
  font-size: 0.95rem;
  color: #f0d0ff;
  text-align: left;
  transition: background 0.15s;
}

.custom-select-option:hover,
.custom-select-option.active {
  background: rgba(153, 50, 204, 0.35);
  color: #fff;
}

.custom-select-option.active {
  font-weight: 600;
}

.already-rsvped {
  border: 2px dashed #ffa500 !important;
  background: linear-gradient(
    135deg,
    rgba(255, 165, 0, 0.08) 0%,
    rgba(75, 0, 90, 0.92) 100%
  ) !important;
  position: relative;
  transition:
    background-color 0.3s ease,
    border 0.3s ease;
}

.already-rsvped::before {
  content: "Already RSVP'd";
  position: absolute;
  top: -12px;
  left: 20px;
  background: linear-gradient(145deg, #ffa500, #ff8c00);
  color: #000;
  font-weight: bold;
  font-size: 0.75rem;
  padding: 2px 10px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.already-waitlisted {
  border: 2px dashed #00bcd4 !important;
  background: linear-gradient(
    135deg,
    rgba(0, 188, 212, 0.08) 0%,
    rgba(75, 0, 90, 0.92) 100%
  ) !important;
  position: relative;
  transition:
    background-color 0.3s ease,
    border 0.3s ease;
}

.already-waitlisted::before {
  content: "Already Waitlisted";
  position: absolute;
  top: -12px;
  left: 20px;
  background: linear-gradient(145deg, #00bcd4, #0097a7);
  color: #000;
  font-weight: bold;
  font-size: 0.75rem;
  padding: 2px 10px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.duplicate-warning {
  color: #ffa500;
  background: linear-gradient(
    135deg,
    rgba(255, 165, 0, 0.12) 0%,
    rgba(255, 165, 0, 0.06) 100%
  );
  border-left: 4px solid #ffa500;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
  border-radius: 10px;
  text-align: left;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
}

.form-status-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 204, 255, 0.15);
  color: #ffccff;
  box-shadow: 0 0 12px rgba(255, 204, 255, 0.15);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  z-index: 10;
}

.form-open {
  background: rgba(144, 238, 144, 0.12);
  border-color: rgba(144, 238, 144, 0.25);
  color: #98ff98;
  box-shadow: 0 0 14px rgba(144, 238, 144, 0.2);
}

.counter-button.disabled-button {
  background: rgba(100, 100, 100, 0.3);
  cursor: not-allowed;
  box-shadow: none;
  opacity: 0.5;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-closed {
  background: rgba(255, 0, 64, 0.08);
  border-color: rgba(255, 0, 64, 0.25);
  color: #ff8080;
  box-shadow: 0 0 14px rgba(255, 0, 64, 0.2);
}

.form-locked {
  margin: 4rem auto;
  max-width: 600px;
  background: linear-gradient(
    135deg,
    rgba(75, 0, 90, 0.92) 0%,
    rgba(50, 0, 70, 0.92) 100%
  );
  border: 2px dashed rgba(255, 100, 100, 0.5);
  padding: 3rem;
  border-radius: 20px;
  color: #ff9999;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.5),
    inset 0px 1px 0px rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}

.contact-help-note {
  font-size: 0.95rem;
  color: #f0d0ff;
  opacity: 0.85;
  text-align: center;
  font-weight: 500;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 1;
  margin-top: 1.75rem;
  margin-bottom: 0.85rem;
}

.contact-help-note a {
  color: #ffd700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.contact-help-note a:hover {
  color: #ffffff;
}

.contact-help-note-waitlist {
  font-size: 0.95rem;
  padding-top: 1rem;
  color: #f0d0ff;
  opacity: 0.85;
  text-align: center;
  font-weight: 500;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.4);
}

.contact-help-note-waitlist a {
  color: #ffd700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.contact-help-note-waitlist a:hover {
  color: #ffffff;
}

.form-closed-button {
  background: rgba(255, 0, 64, 0.08);
  border: 2px solid rgba(255, 0, 64, 0.35);
  color: #ff8080;
  padding: 1.2rem 2.8rem;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 30px;
  cursor: pointer;
  margin-top: 2rem;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.form-closed-button:hover {
  background: rgba(255, 0, 64, 0.15);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

.disabled-waitlist-button {
  cursor: not-allowed;
  opacity: 0.5;
  position: relative;
}

.disabled-waitlist-button:hover {
  color: #aaa;
  transform: none;
}

@media (max-width: 768px) {
  .sixflags-form-container {
    overflow-x: hidden;
  }

  .sixflags-form-title {
    font-size: 2rem;
    text-align: center;
  }

  .attendee-counter-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
  }

  .attendee-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
  }

  .attendee-number {
    font-size: 1.6rem;
  }

  .add-attendee,
  .counter-button {
    width: auto;
    min-width: 44px;
    text-align: center;
  }

  .form-row {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }

  /* Stacked row: DOB had align-self: flex-start for side-by-side phone row — without
     this it stays “intrinsic” width (~half screen) on narrow viewports. */
  .form-row .dob-input-wrapper {
    align-self: stretch;
    width: 100%;
    max-width: 100%;
  }

  .attendee-form {
    padding: 1.5rem 1rem;
    width: 100%;
    box-sizing: border-box;
  }

  .attendee-form input,
  .attendee-form select,
  .styled-select {
    width: 100% !important;
    max-width: 100%;
    box-sizing: border-box;
  }

  .input-with-tooltip {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    width: 100%;
  }

  .input-with-tooltip .tooltip-icon,
  .dob-input-wrapper .dob-calendar-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-100%);
  }

  .navigation-buttons {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    margin-top: -0.5rem;
  }

  .sixflags-back-button,
  .sixflags-next-button {
    width: 100%;
    font-size: 1.1rem;
    padding: 1rem;
    text-align: center;
    margin-top: 0 !important;
  }

  .form-status-badge {
    top: 0.5rem;
    right: 0.5rem;
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
  }

  .tooltip-icon {
    font-size: 0.75rem;
    width: 16px;
    height: 16px;
  }

  .dob-calendar-btn,
  .dob-calendar-btn svg {
    width: 16px;
    height: 16px;
  }

  .styled-select {
    padding-right: 2rem;
    background-clip: padding-box;
  }

  .contact-help-note {
    font-size: 0.75rem;
    margin-top: 2.25rem;
    margin-bottom: 1rem;
  }

  .contact-help-note-waitlist {
    font-size: 0.75rem;
  }
}.checkout-unified-container {
  position: relative;
  padding: 4rem 1rem;
  background: radial-gradient(
      circle at center,
      rgba(45, 0, 60, 0.95) 0%,
      rgba(75, 0, 90, 0.95) 40%,
      rgba(50, 0, 70, 0.95) 70%,
      rgba(30, 0, 45, 0.95) 100%
    ),
    linear-gradient(
      135deg,
      rgba(153, 50, 204, 0.3) 0%,
      rgba(255, 110, 199, 0.15) 50%,
      rgba(75, 0, 130, 0.3) 100%
    );
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

/* Animated pulsing glow overlay */
.checkout-unified-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(153, 50, 204, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(255, 110, 199, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(255, 215, 0, 0.06) 0%,
      transparent 60%
    );
  animation: payPulse 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

/* Rotating subtle gridlines */
.checkout-unified-container::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(153, 50, 204, 0.03) 2px,
    rgba(153, 50, 204, 0.03) 4px
  );
  animation: payRotate 25s linear infinite;
  pointer-events: none;
  z-index: 0;
}

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

@keyframes payRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Floating emojis */
.pay-background-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.pay-float-1,
.pay-float-2,
.pay-float-3,
.pay-float-4 {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.pay-float-1::before,
.pay-float-2::before,
.pay-float-3::before,
.pay-float-4::before {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: payFloat 7s ease-in-out infinite;
}

.pay-float-1 { top: 6%; left: 5%; }
.pay-float-1::before {
  content: "🎡";
  font-size: 85px;
  opacity: 0.35;
  animation-delay: 0s;
}

.pay-float-2 { bottom: 10%; right: 5%; }
.pay-float-2::before {
  content: "🎢";
  font-size: 90px;
  opacity: 0.3;
  animation-delay: 2s;
}

.pay-float-3 { top: 40%; right: 8%; }
.pay-float-3::before {
  content: "🎟️";
  font-size: 65px;
  opacity: 0.3;
  animation-delay: 1s;
}

.pay-float-4 { bottom: 30%; left: 8%; }
.pay-float-4::before {
  content: "✨";
  font-size: 55px;
  opacity: 0.3;
  animation-delay: 3s;
}

@keyframes payFloat {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-22px) rotate(8deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

/* Sparkle particle field */
.pay-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(2px 2px at 15% 25%, rgba(255, 215, 0, 0.3), transparent),
    radial-gradient(2px 2px at 55% 65%, rgba(255, 110, 199, 0.25), transparent),
    radial-gradient(1px 1px at 45% 45%, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(1px 1px at 75% 15%, rgba(153, 50, 204, 0.3), transparent),
    radial-gradient(2px 2px at 85% 55%, rgba(255, 215, 0, 0.2), transparent),
    radial-gradient(1px 1px at 30% 55%, rgba(255, 110, 199, 0.2), transparent),
    radial-gradient(1px 1px at 60% 25%, rgba(255, 255, 255, 0.15), transparent),
    radial-gradient(1.5px 1.5px at 10% 75%, rgba(255, 215, 0, 0.25), transparent),
    radial-gradient(1px 1px at 40% 10%, rgba(153, 50, 204, 0.2), transparent);
  background-size: 200% 200%;
  animation: paySparkle 18s linear infinite;
  opacity: 0.6;
}

.pay-particles::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 215, 0, 0.08) 50%,
    transparent 70%
  );
  animation: payLightSweep 14s ease-in-out infinite;
}

@keyframes paySparkle {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 100%; }
}

@keyframes payLightSweep {
  0%, 100% {
    transform: translateX(-100%) translateY(-100%);
    opacity: 0;
  }
  50% {
    transform: translateX(100%) translateY(100%);
    opacity: 0.3;
  }
}

/* Neon arc glow at top */
.pay-neon-arc {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 120vw;
  height: 400px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  border: 8px solid rgba(255, 110, 199, 0.15);
  box-shadow:
    0 0 0 8px rgba(153, 50, 204, 0.12),
    0 0 0 16px rgba(138, 43, 226, 0.1),
    0 0 0 24px rgba(255, 215, 0, 0.08),
    0 0 0 32px rgba(255, 110, 199, 0.06),
    0 0 0 40px rgba(153, 50, 204, 0.04);
  filter: blur(6px);
  animation: payNeonFade 22s ease-in-out infinite;
}

@keyframes payNeonFade {
  0%, 100% { opacity: 0; }
  30%, 70% { opacity: 0.45; }
}

/* Title */
.checkout-unified-title {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 2rem;
  text-align: center;
  background: linear-gradient(45deg, #ffccff, #ffd700, #ffccff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

/* Main form card - glassmorphism */
.checkout-unified-form {
  width: 100%;
  max-width: 960px;
  background: linear-gradient(
    135deg,
    rgba(75, 0, 90, 0.92) 0%,
    rgba(50, 0, 70, 0.92) 100%
  );
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.6),
    0px 0px 0px 2px rgba(255, 204, 255, 0.15),
    inset 0px 1px 0px rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 204, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}

.checkout-options-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .checkout-options-section {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .checkout-ticket-summary,
  .checkout-payment-box {
    flex: 1;
  }

  .checkout-ticket-summary {
    padding-right: 2rem;
  }

  .checkout-payment-box {
    padding-left: 2rem;
    border-left: 1px solid rgba(255, 204, 255, 0.1);
  }
}

/* Ticket summary card */
.checkout-ticket-summary {
  flex: 1;
  background: linear-gradient(
    135deg,
    rgba(100, 20, 120, 0.7) 0%,
    rgba(65, 0, 85, 0.7) 100%
  );
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.4),
    0px 0px 0px 1px rgba(255, 204, 255, 0.1);
  border: 1px solid rgba(255, 204, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.checkout-section-header {
  font-size: 1.6rem;
  font-weight: bold;
  color: #ffccff;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
}

.attendee-count-block {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.attendee-count-block .counter-button {
  background: linear-gradient(145deg, rgb(120, 30, 140), #9932cc);
  color: #fff;
  border: none;
  padding: 0.4rem 0.9rem;
  font-size: 1.2rem;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.4),
    0px 0px 0px 1px rgba(255, 204, 255, 0.15);
  transition: all 0.3s ease;
}

.attendee-count-block .counter-button:hover {
  background: linear-gradient(145deg, #9932cc, #8a2be2);
  transform: translateY(-2px);
}

.attendee-count-block .attendee-number {
  font-size: 2rem;
  font-weight: bold;
  background: linear-gradient(45deg, #ffccff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.attendee-count-block .add-attendee-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: #f0d0ff;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
}

.checkout-ticket-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  padding: 1.2rem;
  border-radius: 12px;
  font-size: 1rem;
  border: 1px solid rgba(255, 204, 255, 0.08);
  color: #f0d0ff;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.4);
}

.checkout-ticket-info strong {
  color: #ffccff;
}

.checkout-input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.checkout-input-group label {
  color: #f0d0ff;
  font-weight: 500;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.4);
}

.checkout-input-group input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 204, 255, 0.12);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  color: #fff;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.checkout-input-group input:focus {
  outline: none;
  border-color: rgba(255, 204, 255, 0.35);
  box-shadow: 0 0 0 3px rgba(153, 50, 204, 0.25);
}

.input-with-tooltip {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}

.input-with-tooltip input {
  width: 100%;
  padding-right: 2.5rem;
}

.tooltip-icon-pay {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-left: 6px;
  width: 18px;
  height: 18px;
  background: linear-gradient(145deg, #9932cc, #8a2be2);
  color: white;
  border-radius: 50%;
  font-size: 0.9rem;
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.tooltip-icon-pay::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: linear-gradient(135deg, rgba(75, 0, 90, 0.97), rgba(50, 0, 70, 0.97));
  color: #f0d0ff;
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
  white-space: nowrap;
  font-size: 0.8rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 10;
  border: 1px solid rgba(255, 204, 255, 0.2);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.tooltip-icon-pay:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Payment box */
.checkout-payment-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.checkout-stripe-box {
  background-color: white;
  border-radius: 12px;
  padding: 1.2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.checkout-payment-notice {
  margin-top: 1rem;
  padding: 1.1rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 204, 255, 0.12);
  border-radius: 12px;
  border-left: 3px solid rgba(255, 215, 0, 0.55);
}

/* Full-width at top of checkout — Stripe, checkbox, and Pay stay together below */
.checkout-payment-notice--top {
  width: 100%;
  box-sizing: border-box;
  margin-top: 0;
  margin-bottom: 1.5rem;
  padding: 0.95rem 1.15rem;
}

.checkout-payment-notice-title {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffd700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.checkout-payment-notice p {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  line-height: 1.55;
  color: #e8d4f5;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.checkout-payment-notice p:last-child {
  margin-bottom: 0;
}

.checkout-agreement {
  margin-top: 1.2rem;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 204, 255, 0.08);
  border-radius: 12px;
  font-size: 0.85rem;
  color: #f0d0ff;
  line-height: 1.4;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
}

.checkout-agreement label {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 0;
  cursor: pointer;
}

/* One flex item besides the checkbox — otherwise each text node + <strong> becomes a column */
.checkout-agreement-copy {
  flex: 1;
  min-width: 0;
}

.checkout-agreement input[type="checkbox"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 204, 255, 0.3);
  position: relative;
  flex-shrink: 0;
  margin: 0.12rem 0 0;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  box-sizing: border-box;
}

.checkout-agreement input[type="checkbox"]:checked {
  background: linear-gradient(145deg, #9932cc, #8a2be2);
  border-color: #9932cc;
}

.checkout-agreement input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 4px;
  height: 8px;
  margin: 0;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -58%) rotate(45deg);
  box-sizing: border-box;
}

.checkout-btn-row {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.checkout-back-btn {
  padding: 1.2rem 1.8rem;
  font-size: 1.1rem;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.06);
  color: #f0d0ff;
  border: 1px solid rgba(255, 204, 255, 0.2);
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.4);
}

.checkout-back-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 204, 255, 0.4);
  transform: translateY(-3px);
}

.checkout-back-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

/* Pay button */
.checkout-submit-btn {
  padding: 1.2rem 2.5rem;
  font-size: 1.3rem;
  font-weight: bold;
  background: linear-gradient(145deg, rgb(120, 30, 140), #9932cc);
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.5),
    0px 0px 0px 2px rgba(255, 204, 255, 0.25);
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
}

.checkout-submit-btn:hover {
  background: linear-gradient(145deg, #9932cc, #8a2be2);
  transform: translateY(-5px);
  box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.6),
    0px 0px 0px 3px rgba(255, 204, 255, 0.45);
}

.checkout-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.checkout-error-banner {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
  padding: 0.9rem 1rem 0.95rem;
  text-align: left;
  border-radius: 14px;
  border: 1px solid rgba(255, 120, 120, 0.45);
  background: linear-gradient(
    135deg,
    rgba(90, 20, 35, 0.55) 0%,
    rgba(55, 12, 40, 0.75) 100%
  );
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 200, 200, 0.12);
}

.checkout-error-banner__icon {
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: #ff9b9b;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}

.checkout-error-banner__body {
  min-width: 0;
  flex: 1;
}

.checkout-error-banner__title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffc9c9;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.checkout-error-banner__text {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 235, 235, 0.92);
  line-height: 1.45;
}

.checkout-error-banner__ref {
  margin: 0.55rem 0 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 200, 200, 0.55);
}

.input-error {
  border: 2px solid #ff4c4c !important;
  background-color: rgba(255, 76, 76, 0.1) !important;
  border-radius: 12px;
}

.checkout-highlight-pay {
  border: 2px solid #ff4c4c !important;
  background-color: rgba(255, 76, 76, 0.08) !important;
  border-radius: 12px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

.checkout-input-group input[type="number"] {
  padding-right: 1rem;
  font-size: 1.1rem;
}

/* Overlays — match checkout glass card + gradient type */
.payment-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  box-sizing: border-box;
}

.payment-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 50% 40%,
      rgba(75, 0, 90, 0.55) 0%,
      rgba(15, 0, 30, 0.94) 55%,
      rgba(10, 0, 22, 0.97) 100%
    ),
    linear-gradient(
      135deg,
      rgba(153, 50, 204, 0.2) 0%,
      transparent 45%,
      rgba(255, 110, 199, 0.12) 100%
    );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.payment-overlay-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  padding: 2.25rem 1.85rem 2rem;
  border-radius: 20px;
  text-align: center;
  background: linear-gradient(
    145deg,
    rgba(75, 0, 90, 0.94) 0%,
    rgba(42, 8, 58, 0.96) 100%
  );
  border: 1px solid rgba(255, 204, 255, 0.14);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 204, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  animation: paymentOverlayCardIn 0.35s ease-out;
}

.payment-overlay-card--success {
  border-color: rgba(129, 199, 132, 0.35);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(129, 199, 132, 0.2),
    0 0 48px rgba(76, 175, 80, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.payment-overlay-card-edge {
  position: absolute;
  left: 0;
  top: 1.25rem;
  bottom: 1.25rem;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(
    180deg,
    rgba(255, 215, 0, 0.85) 0%,
    rgba(255, 110, 199, 0.5) 50%,
    rgba(153, 50, 204, 0.65) 100%
  );
  box-shadow: 0 0 16px rgba(255, 215, 0, 0.25);
}

.payment-overlay-card-edge--success {
  background: linear-gradient(
    180deg,
    #81c784 0%,
    #43a047 50%,
    #2e7d32 100%
  );
  box-shadow: 0 0 18px rgba(76, 175, 80, 0.35);
}

@keyframes paymentOverlayCardIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.payment-overlay-heading {
  margin: 0 0 0.5rem;
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.2;
  background: linear-gradient(45deg, #ffccff, #ffd700, #ffccff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

.payment-overlay-heading--success {
  background: linear-gradient(45deg, #c8e6c9, #fff9c4, #a5d6a7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.payment-overlay-caption {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 500;
  color: #e8d4f5;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.payment-overlay-card--success .payment-overlay-caption {
  color: rgba(232, 245, 233, 0.88);
}

/* —— Processing state: richer overlay, no harsh white bleed —— */
.payment-overlay-backdrop--processing {
  background: radial-gradient(
      ellipse 100% 80% at 50% 35%,
      rgba(55, 12, 75, 0.92) 0%,
      rgba(12, 4, 22, 0.97) 50%,
      rgba(6, 2, 14, 1) 100%
    ),
    linear-gradient(
      160deg,
      rgba(153, 50, 204, 0.25) 0%,
      transparent 42%,
      rgba(255, 110, 199, 0.08) 100%
    );
  backdrop-filter: blur(12px) saturate(1.1);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
}

.payment-overlay-card--processing {
  max-width: 440px;
  padding: 2.5rem 2rem 2.1rem;
  overflow: hidden;
  border-color: rgba(255, 215, 0, 0.22);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 215, 0, 0.1),
    0 0 80px rgba(255, 215, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  animation: paymentOverlayCardIn 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.payment-overlay-card-shine {
  position: absolute;
  inset: -40%;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 215, 0, 0.06) 48%,
    rgba(255, 110, 199, 0.05) 52%,
    transparent 65%
  );
  animation: paymentCardShine 4.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.payment-overlay-card--processing .payment-overlay-card-edge {
  z-index: 2;
}

.payment-overlay-card--processing .payment-processing-orbit,
.payment-overlay-card--processing .payment-overlay-heading,
.payment-overlay-card--processing .payment-overlay-caption,
.payment-overlay-card--processing .payment-processing-bar,
.payment-overlay-card--processing .payment-processing-hint,
.payment-overlay-card--processing .payment-processing-trust {
  position: relative;
  z-index: 1;
}

@keyframes paymentCardShine {
  0%,
  100% {
    transform: translateX(-12%) translateY(-5%) rotate(0deg);
    opacity: 0.5;
  }
  50% {
    transform: translateX(12%) translateY(5%) rotate(0deg);
    opacity: 1;
  }
}

.payment-processing-orbit {
  position: relative;
  width: 88px;
  height: 88px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-processing-orbit__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: rgba(255, 215, 0, 0.55);
  border-right-color: rgba(255, 110, 199, 0.25);
  animation: paymentOrbitSpin 1.4s linear infinite;
}

.payment-processing-orbit .payment-loader--modal {
  margin: 0;
  position: relative;
  z-index: 1;
}

.payment-loader--processing {
  border-top-color: #ffd700;
  border-right-color: rgba(255, 204, 255, 0.2);
  box-shadow: 0 0 28px rgba(255, 215, 0, 0.25),
    inset 0 0 12px rgba(255, 215, 0, 0.06);
}

@keyframes paymentOrbitSpin {
  to {
    transform: rotate(360deg);
  }
}

.payment-overlay-heading--processing {
  margin-bottom: 0.65rem;
}

.payment-processing-bar {
  display: block;
  width: 100%;
  height: 4px;
  margin: 1.35rem 0 1rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.4);
}

.payment-processing-bar__fill {
  display: block;
  height: 100%;
  width: 38%;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(153, 50, 204, 0.9),
    #ffd700,
    rgba(255, 110, 199, 0.85)
  );
  background-size: 200% 100%;
  animation: paymentBarSweep 1.35s ease-in-out infinite;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.35);
}

@keyframes paymentBarSweep {
  0% {
    transform: translateX(-100%);
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    transform: translateX(260%);
    background-position: 0% 50%;
  }
}

.payment-processing-hint {
  margin: 0 0 1.15rem;
  font-size: 0.82rem;
  line-height: 1.45;
  font-weight: 500;
  color: rgba(200, 180, 220, 0.88);
  letter-spacing: 0.02em;
}

.payment-processing-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 215, 0, 0.55);
}

.payment-processing-trust__dot {
  opacity: 0.45;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.payment-processing-trust__item {
  opacity: 0.9;
}

@media (prefers-reduced-motion: reduce) {
  .payment-overlay-card-shine,
  .payment-processing-orbit__ring,
  .payment-processing-bar__fill {
    animation: none;
  }

  .payment-processing-bar__fill {
    width: 100%;
    transform: none;
    opacity: 0.85;
  }

  .payment-processing-orbit__ring {
    opacity: 0.4;
    border-top-color: rgba(255, 215, 0, 0.35);
  }
}

.payment-loader {
  border: 5px solid rgba(255, 204, 255, 0.15);
  border-top: 5px solid #ffd700;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
  margin-bottom: 1.2rem;
}

.payment-loader--modal {
  margin: 0 auto 1.35rem;
  width: 56px;
  height: 56px;
  border-width: 4px;
  box-shadow: 0 0 24px rgba(255, 215, 0, 0.2);
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.checkmark-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(145deg, #66bb6a, #43a047);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  box-shadow: 0 10px 28px rgba(76, 175, 80, 0.45),
    0 0 0 3px rgba(255, 255, 255, 0.08);
}

.checkmark-circle--modal {
  margin: 0 auto 1.25rem;
  width: 72px;
  height: 72px;
}

.checkmark {
  font-size: 2.8rem;
  color: white;
  animation: pop 0.3s ease-out;
}

.checkmark-circle--modal .checkmark {
  font-size: 2.4rem;
}

@keyframes pop {
  0% { transform: scale(0); }
  80% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* Mobile */
@media (max-width: 768px) {
  .checkout-unified-container {
    padding: 2rem 1rem;
    overflow-x: hidden;
  }

  .checkout-unified-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .checkout-unified-form {
    padding: 1.5rem 1rem;
    border-radius: 14px;
    width: 100%;
    box-sizing: border-box;
  }

  .checkout-options-section {
    flex-direction: column;
    gap: 1.5rem;
  }

  .checkout-ticket-summary,
  .checkout-payment-box {
    padding: 1.2rem;
    border: none;
    width: 100%;
    box-sizing: border-box;
  }

  .checkout-section-header {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 1rem;
  }

  .attendee-count-block {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    margin: 1rem 0;
  }

  .attendee-count-block .add-attendee-text {
    font-size: 1rem;
    text-align: center;
  }

  .attendee-count-block .attendee-number {
    font-size: 1.4rem;
  }

  .attendee-count-block .counter-button {
    font-size: 1rem;
    padding: 0.4rem 0.9rem;
  }

  .checkout-ticket-info {
    font-size: 0.95rem;
    padding: 0.8rem;
  }

  .checkout-input-group {
    margin-top: 1rem;
  }

  .checkout-input-group input {
    width: 100%;
    padding: 0.8rem 1rem;
    font-size: 1rem;
  }

  .checkout-stripe-box {
    padding: 1rem;
    border-radius: 10px;
    box-sizing: border-box;
  }

  .checkout-btn-row {
    flex-direction: column;
  }

  .checkout-back-btn {
    padding: 0.9rem;
    font-size: 1rem;
    width: 100%;
    text-align: center;
  }

  .checkout-submit-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 0;
  }

  .checkout-agreement {
    padding: 1rem;
    font-size: 0.85rem;
  }

  .checkout-agreement label {
    gap: 0.65rem;
  }

  .checkout-agreement input[type="checkbox"] {
    width: 16px;
    height: 16px;
    min-width: 16px;
    min-height: 16px;
    margin: 0.1rem 0 0;
    border-radius: 4px;
  }

  .checkout-agreement input[type="checkbox"]:checked::after {
    width: 3px;
    height: 7px;
    border-width: 0 1.5px 1.5px 0;
    transform: translate(-50%, -56%) rotate(45deg);
  }

  .tooltip-icon-pay {
    font-size: 0.75rem;
    width: 16px;
    height: 16px;
  }

  .tooltip-icon-pay::after {
    font-size: 0.7rem;
    padding: 0.4rem;
    white-space: normal;
    text-align: center;
  }

  .checkout-error-banner {
    padding: 0.75rem 0.85rem;
    gap: 0.65rem;
  }

  .checkout-error-banner__title {
    font-size: 0.98rem;
  }

  .checkout-error-banner__text {
    font-size: 0.86rem;
  }

  .payment-overlay {
    padding: 1rem;
  }

  .payment-overlay-card {
    padding: 1.75rem 1.35rem 1.5rem;
    border-radius: 16px;
    max-width: 100%;
  }

  .payment-overlay-heading {
    font-size: 1.35rem;
  }

  .payment-overlay-caption {
    font-size: 0.88rem;
  }

  .payment-loader--modal {
    width: 50px;
    height: 50px;
    margin-bottom: 1.1rem;
  }

  .payment-overlay-card--processing {
    padding: 2rem 1.35rem 1.65rem;
  }

  .payment-processing-orbit {
    width: 78px;
    height: 78px;
    margin-bottom: 1.25rem;
  }

  .payment-processing-trust {
    font-size: 0.72rem;
  }

  .checkmark-circle {
    width: 60px;
    height: 60px;
  }

  .checkmark-circle--modal {
    width: 62px;
    height: 62px;
    margin-bottom: 1rem;
  }

  .checkmark {
    font-size: 2.2rem;
  }

  .checkmark-circle--modal .checkmark {
    font-size: 2rem;
  }

  .pay-float-1::before { font-size: 55px; }
  .pay-float-2::before { font-size: 60px; }
  .pay-float-3::before { font-size: 45px; }
  .pay-float-4::before { font-size: 40px; }
}
/* Page shell matches Payment.jsx (checkout-unified-container + pay-* layers). */
.seating-page-root.checkout-unified-container {
  position: relative;
  /* Same as payment: centers title; main column stretches via align-self below */
  align-items: center;
  /*
   * Keep Payment’s decorative ::before/::after (200% size, rotated grid) clipped.
   * Using overflow: visible let that ink overflow expand the page’s scroll height
   * past the footer (huge empty area + birds canvas visible “below” the footer).
   * Single-axis overflow mixes (hidden + visible) also force overflow-y:auto and
   * nested scrollbars — so use plain overflow:hidden here.
   */
  overflow: hidden;
  padding-bottom: max(3rem, env(safe-area-inset-bottom, 0px));
}

.seating-page-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* flex:1 was filling all space below the title with empty purple area and
     interacting badly with parent min-height — only grow with real content */
  flex: 0 1 auto;
  align-self: stretch;
  box-sizing: border-box;
}

.seating-page-heading {
  width: 100%;
  max-width: min(100%, 52rem);
  margin-left: auto;
  margin-right: auto;
  padding: 0 0.75rem;
  box-sizing: border-box;
  line-height: 1.15;
  -webkit-hyphens: auto;
          hyphens: auto;
  text-align: center;
}

.bus-structure {
  display: flex;
  flex-direction: row;
  gap: 3.5rem;
  justify-content: center;
  align-items: flex-start;
  max-width: 780px;
  margin: 0 auto;
  width: 100%;
  /* Inset for floating legend (absolute .seat-legend-fixed); keeps buses visually centered. */
  padding-left: 60px;
}

.bus-structure--filter-bus1 .bus-column--bus2,
.bus-structure--filter-bus2 .bus-column--bus1 {
  display: none;
}

.bus-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: opacity 0.25s ease;
}

.bus-layout {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  width: 250px;
  background: linear-gradient(165deg, #2a2a32 0%, #1a1a22 42%, #121218 100%);
  border-radius: 32px 32px 40px 40px;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  min-height: 700px;
  align-items: center;
  margin: 0 auto;
  overflow: hidden;
  transition:
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

/* Bus 1: cool blue frame (same family as before, refined) */
.bus-layout--bus1 {
  border: 5px solid #1e88e5;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(100, 181, 246, 0.2),
    0 0 28px rgba(30, 136, 229, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Bus 2: violet accent so the two coaches read as distinct */
.bus-layout--bus2 {
  border: 5px solid #7e57c2;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(179, 157, 255, 0.18),
    0 0 28px rgba(126, 87, 194, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.bus-aisle-bg {
  position: absolute;
  left: 50%;
  top: 75px;
  transform: translateX(-50%);
  width: 32px;
  height: 780px;
  background: linear-gradient(180deg, #4a4a58 0%, #3a3a48 45%, #2e3438 100%);
  border-radius: 22px;
  z-index: 1;
  box-shadow:
    inset 0 0 12px rgba(0, 0, 0, 0.35),
    0 0 20px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(179, 229, 252, 0.45);
}

.bus-layout--bus2 .bus-aisle-bg {
  border-color: rgba(206, 196, 255, 0.4);
  background: linear-gradient(180deg, #45405a 0%, #353045 50%, #282530 100%);
}

.bus-row {
  width: 100%;
  display: grid;
  grid-template-columns: 44px 44px 32px 44px 44px;
  grid-gap: 10px;
  align-items: center;
  margin-bottom: 3px;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.bus-seats {
  display: grid;
  grid-template-columns: 44px 44px;
  gap: 0.5rem;
}

.bus-aisle {
  width: 22px;
  transform: translateX(4px);
  height: 40px;
  background: linear-gradient(90deg, #ffccff33, #ffccff66, #ffccff33);
  border-radius: 4px;
  margin: 0 1px;
}

.bus-seat {
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

.bus-seat svg {
  width: 36px;
  height: 36px;
  display: block;
}

.bus-seat.available svg .seat-body {
  fill: #1de9b6;
}
.bus-seat.taken svg .seat-body {
  fill: #e53935;
}
.bus-seat.selected svg .seat-body {
  fill: #fff;
  stroke: #ffcc00;
  stroke-width: 3px;
}

.bus-seat:hover svg .seat-body {
  filter: brightness(1.2);
}

/* Taken seats stay pointer — users can click to open seat swap request (see Seating.jsx). */

.bus-seat:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  z-index: 1000;
}

/* Rear of coach: restroom strip (inside bus graphic) */
.bus-rear-footer {
  width: 100%;
  margin-top: 0.25rem;
  border-radius: 0 0 24px 24px;
  overflow: hidden;
}

.bus-rear-strip {
  position: relative;
  width: 100%;
  padding: 0.65rem 0.5rem 0.75rem;
  box-sizing: border-box;
  background: linear-gradient(
    180deg,
    rgba(22, 26, 38, 0.98) 0%,
    rgba(12, 14, 22, 0.99) 100%
  );
  border-top: 1px solid rgba(100, 181, 246, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 -8px 24px rgba(0, 0, 0, 0.35);
}

.bus-rear-strip__edge {
  display: block;
  position: absolute;
  left: 8%;
  right: 8%;
  top: 0;
  height: 2px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(129, 212, 250, 0.55) 25%,
    rgba(179, 157, 255, 0.45) 75%,
    transparent
  );
  opacity: 0.9;
}

/* Same content width as `.bus-row` grid (44+gap+44+gap+32+gap+44+gap+44 = 248px) */
.bus-rear-strip__inner {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 248px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

/* Shrink-wrapped row, centered under the seat grid / aisle */
.bus-rear-strip__cluster {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  max-width: 100%;
}

.bus-rear-strip__badge {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: radial-gradient(
    120% 120% at 30% 20%,
    rgba(100, 181, 246, 0.18) 0%,
    rgba(30, 35, 55, 0.95) 55%,
    rgba(18, 20, 32, 1) 100%
  );
  border: 1px solid rgba(129, 212, 250, 0.28);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: rgba(187, 222, 251, 0.95);
}

.bus-rear-strip__icon {
  width: 1.35rem;
  height: 1.35rem;
  display: block;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
}

.bus-rear-strip__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.12rem;
  min-width: 0;
  text-align: center;
}

.bus-rear-strip__title {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #eceff1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
  line-height: 1.2;
}

.bus-rear-strip__sub {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(179, 229, 252, 0.65);
  line-height: 1.2;
}

.bus-layout--bus2 .bus-rear-strip {
  border-top-color: rgba(179, 157, 255, 0.28);
}

.bus-layout--bus2 .bus-rear-strip__edge {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(186, 104, 200, 0.5) 28%,
    rgba(149, 117, 205, 0.42) 72%,
    transparent
  );
}

.bus-layout--bus2 .bus-rear-strip__badge {
  background: radial-gradient(
    120% 120% at 30% 20%,
    rgba(186, 104, 200, 0.22) 0%,
    rgba(40, 32, 58, 0.96) 55%,
    rgba(22, 18, 36, 1) 100%
  );
  border-color: rgba(186, 104, 200, 0.32);
  color: rgba(225, 190, 255, 0.96);
}

.bus-layout--bus2 .bus-rear-strip__sub {
  color: rgba(206, 196, 255, 0.68);
}

/*
 * Stack buses + partners in the main column (right of the floating legend) so
 * “With thanks to” sits directly under the coach diagrams—not pushed down to
 * clear a tall sidebar (old JS margin) or centered on the full viewport.
 */
.seating-buses-and-partners {
  /* Override .seating-page-content { align-items: center } so this row isn’t centered as a slim block */
  align-self: stretch;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  box-sizing: border-box;
}

@media (min-width: 1201px) {
  /*
   * Use horizontal padding (not a narrow max-width block) so buses sit in the
   * space between legend and ticket column — avoids viewport-centering bugs from
   * align-items: center on the parent.
   */
  .seating-buses-and-partners {
    width: 100%;
    max-width: none;
    margin-left: 0;
    /* Legend ends ~376px from content edge; keep buses from sliding under it */
    padding-left: clamp(360px, 28vw, 420px);
    /* Comments + ticket column (~340px) + air */
    padding-right: clamp(260px, 18vw, 360px);
    box-sizing: border-box;
  }

  .seating-buses-and-partners .bus-main-row {
    justify-content: flex-start;
    /* Nudge coaches left only; partners block is a sibling, not affected */
    margin-left: clamp(-3rem, -2.0vw, -0.35rem);
  }

  .seating-buses-and-partners .bus-structure {
    margin-left: 0;
    margin-right: auto;
    padding-left: 0;
  }
}

.seating-partners-below-buses {
  width: 100%;
  max-width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Partners: below both buses, not inside the coach */
.seating-partners-section {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(100%, 52rem);
  margin: 1.75rem auto 0.5rem;
  padding: 0 0.75rem;
  box-sizing: border-box;
}

.seating-partners-below-buses .seating-partners-section {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  left: 0;
}

@media (min-width: 1201px) {
  .seating-partners-below-buses .seating-partners-section {
    padding-left: 0;
    padding-right: 0;
    /* Nudge only this strip — `left` on position:relative does not shift the bus row */
    left: clamp(0.75rem, 2.2vw, 1.75rem);
  }
}

.seating-partners-card {
  background: linear-gradient(
    135deg,
    rgba(75, 0, 90, 0.88) 0%,
    rgba(42, 8, 58, 0.92) 100%
  );
  border: 1px solid rgba(255, 204, 255, 0.14);
  border-radius: 16px;
  padding: 1rem 1rem 1.1rem;
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.seating-partners-head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.65rem;
}

.seating-partners-kicker {
  flex-shrink: 0;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 215, 0, 0.88);
}

.seating-partners-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 215, 0, 0.4),
    rgba(255, 110, 199, 0.2) 50%,
    transparent 100%
  );
  opacity: 0.9;
}

.seating-partners-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 0.45rem 0.5rem;
}

.seating-partners-list li {
  margin: 0;
  padding: 0;
}

.seating-partner-link,
.seating-partner-static {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.32rem 0.55rem 0.36rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 204, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  text-decoration: none;
  color: inherit;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.15s ease,
    box-shadow 0.2s;
  max-width: 6.5rem;
}

.seating-partner-link:hover {
  background: rgba(153, 50, 204, 0.25);
  border-color: rgba(255, 204, 255, 0.32);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}

.seating-partner-link:focus-visible {
  outline: 2px solid rgba(255, 215, 0, 0.65);
  outline-offset: 2px;
}

.seating-partner-static {
  cursor: default;
  opacity: 0.95;
}

.seating-partner-name {
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: #f5f0ff;
  word-break: break-word;
}

.seating-partner-sub {
  font-size: 0.52rem;
  font-weight: 500;
  color: rgba(232, 212, 245, 0.58);
  margin-top: 0.15rem;
  text-align: center;
  line-height: 1.15;
  word-break: break-all;
}

@media (max-width: 900px) {
  .seating-partners-section {
    margin-top: 1.25rem;
    padding: 0 0.5rem;
  }

  .seating-partners-card {
    padding: 0.85rem 0.65rem 0.95rem;
  }

}

.bus-driver {
  width: 100%;
  height: 60px;
  background: #2e2e2e;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border: 2px solid #ffccff;
  font-weight: bold;
}

.bus-status {
  position: absolute;
  top: -30px;
  right: 0;
  background: #ffcc00;
  color: #000;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
}

.bus-top-row {
  display: grid;
  grid-template-columns: 48px 1fr 36px 36px;
  align-items: center;
  margin-bottom: 0.7rem;
  width: 100%;
  min-height: 48px;
}

.driver-seat {
  width: 40px;
  height: 40px;
  background: #222;
  border-radius: 10px 18px 18px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffccff;
  font-size: 1.3rem;
  color: #fff;
  margin-right: 0.3rem;
}

.stairs {
  width: 36px;
  height: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 1px;
}

.stair-step {
  width: 24px;
  height: 5px;
  background: #bdbdbd;
  border-radius: 2px;
  margin-bottom: 1px;
}

.entrance-door {
  width: 30px;
  height: 36px;
  background: #1de9b6;
  border-radius: 0 10px 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  font-size: 1.1rem;
  margin-left: 0.3rem;
}

.bus-seat.selected {
  box-shadow:
    0 0 0 4px #ffcc00,
    0 2px 8px #0004;
  background: #fffbe6;
  border-radius: 16px;
  z-index: 2;
}

.bus-seat.assigned-chaperone {
  box-shadow:
    0 0 0 4px #ca6019,
    0 2px 8px #0004;
  background: #fffbe6;
  border-radius: 16px;
  z-index: 2;
}

.bus-seat-number {
  position: absolute;
  bottom: 2px;
  right: 2px;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 6px;
  padding: 0 4px;
  text-shadow:
    0 1px 2px #000,
    0 0 2px #000;
  pointer-events: none;
  z-index: 2;
}

.bus-entrance {
  position: absolute;
  top: 12px;
  right: 10px;
  z-index: 10;
  width: 38px;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.bus-door {
  width: 32px;
  height: 48px;
  background: #e0e0e0;
  border-radius: 6px;
  border: 2px solid #bbb;
  position: relative;
  margin-bottom: 4px;
  box-shadow: 0 2px 8px #0002;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.bus-door-handle {
  width: 10px;
  height: 4px;
  background: #888;
  border-radius: 2px;
  position: absolute;
  right: 6px;
  top: 20px;
}

.bus-stairs {
  width: 32px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bus-stair {
  height: 7px;
  background: #bdbdbd;
  border-radius: 2px;
  margin-left: 0;
  margin-right: 0;
}

.bus-windows {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 10px;
  left: 20px;
  right: 20px;
  z-index: 3;
  pointer-events: none;
}
.bus-window {
  width: 24px;
  height: 16px;
  border-radius: 8px;
  background: linear-gradient(180deg, #e3f6fd 70%, #b3e5fc 100%);
  box-shadow: 0 2px 6px #0002;
  border: 2px solid #90caf9;
  position: relative;
}

.bus-window::after {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 4px;
  right: 4px;
  height: 3px;
  background: #fff8;
  border-radius: 2px;
}

.bus-wheel {
  position: absolute;
  bottom: -18px;
  width: 32px;
  height: 32px;
  background: #222;
  border: 5px solid #444;
  box-shadow: 0 4px 12px #000a;
  border-radius: 50%;
  z-index: 4;
}
.bus-wheel.left {
  left: 12px;
}
.bus-wheel.right {
  right: 12px;
}

.bus-wheel::after {
  content: "";
  display: block;
  position: absolute;
  left: 8px;
  top: 8px;
  width: 12px;
  height: 12px;
  background: #eee;
  border-radius: 50%;
  box-shadow: 0 0 4px #8888;
}

.bus-main-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  margin: 18px 0 8px 0;
}

.seat-legend-fixed {
  position: absolute;
  top: 108px;
  left: 18px;
  z-index: 999;
  border-radius: 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: white;
}

.seat-legend {
  margin-left: 18px;
  width: 340px;
  min-width: 120px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  height: 100%;
  background: rgba(30, 30, 60, 0.85);
  border-radius: 14px;
  padding: 8px 22px;
  box-shadow: 0 2px 8px #0003;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Left panel: show Bus 1 / Bus 2 / Both */
.seating-bus-filter {
  width: 100%;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 204, 255, 0.12);
}

.seating-bus-filter-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 215, 0, 0.85);
  margin-bottom: 6px;
  text-align: center;
}

.seating-bus-filter-buttons {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
}

.seating-bus-filter-btn {
  flex: 1;
  min-width: 4.5rem;
  padding: 0.45rem 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 999px;
  border: 1px solid rgba(255, 204, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
  color: #e8d4f5;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s,
    box-shadow 0.2s;
}

.seating-bus-filter-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 204, 255, 0.35);
}

.seating-bus-filter-btn.is-active {
  background: linear-gradient(145deg, rgb(120, 30, 140), #9932cc);
  border-color: rgba(255, 204, 255, 0.45);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.seating-bus-filter-btn:focus-visible {
  outline: 2px solid rgba(255, 215, 0, 0.7);
  outline-offset: 2px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.seat-legend > .legend-item {
  align-self: flex-start;
  width: 100%;
}

.legend-icon {
  font-size: 1em;
  margin-right: 3px;
}

.reserved-seats-list {
  background: #232b3a;
  color: #fff;
  border-radius: 12px;
  padding: 10px 16px;
  margin: 12px 0;
  font-size: 15px;
  box-shadow: 0 2px 8px #0003;
}

.reserved-seats-account {
  color: #fff;
  border-radius: 12px;
  padding: 10px 16px;
  margin: 12px 0;
  font-size: 15px;
  box-shadow: 0 2px 8px #0003;
}

.reserved-seat-item {
  display: flex;
  align-items: flex-start;
  gap: 0.25rem;
  margin-bottom: 2px;
  min-width: 0;
}

.reserved-seat-item .legend-icon {
  margin-top: 0.15em;
}

.reserved-seat-label {
  flex-shrink: 0;
  white-space: nowrap;
}

.reserved-seats-title {
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 1.08em;
}

.reserved-name {
  flex: 1 1 0;
  min-width: 0;
  color: #ffccff;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  text-align: left;
}

.reserved-name--expanded {
  overflow: visible;
  white-space: normal;
  word-break: break-word;
  cursor: pointer;
}

.reserved-name:focus-visible {
  outline: 2px solid rgba(255, 215, 0, 0.65);
  outline-offset: 2px;
  border-radius: 4px;
}

.ticket-box-fixed {
  position: absolute;
  top: 108px;
  right: 10px;
  z-index: 999;
  font-size: 0.85rem;
  font-weight: 500;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}

.seating-comments-card {
  display: flex;
  flex-direction: column;
  width: 340px;
  max-width: 340px;
  min-width: 220px;
  box-sizing: border-box;
  background: rgba(30, 30, 60, 0.92);
  border-radius: 14px;
  padding: 14px 16px 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 204, 255, 0.12);
  text-align: left;
}

.seating-comments-card__title {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffccff;
  letter-spacing: 0.02em;
}

.seating-comments-card__hint {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}

.seating-comments-card__hint strong {
  color: rgba(255, 224, 130, 0.95);
  font-weight: 700;
}

.seating-comments-card__textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  min-height: 5.5rem;
  padding: 10px 12px;
  margin: 0 0 0.5rem;
  font-size: 0.88rem;
  font-family: inherit;
  line-height: 1.45;
  color: #f5f0ff;
  background: rgba(12, 10, 22, 0.75);
  border: 1px solid rgba(255, 204, 255, 0.2);
  border-radius: 10px;
  resize: vertical;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.seating-comments-card__textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.32);
}

.seating-comments-card__textarea::placeholder {
  color: rgba(255, 255, 255, 0.32);
}

.seating-comments-card__textarea:focus {
  border-color: rgba(255, 214, 0, 0.45);
  box-shadow: 0 0 0 2px rgba(126, 87, 194, 0.35);
}

.seating-comments-card__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.seating-comments-card__count {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 204, 255, 0.45);
}

.seating-comments-card__submit {
  cursor: pointer;
  border: none;
  border-radius: 9px;
  padding: 0.55rem 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: inherit;
  color: #2a0d35;
  background: linear-gradient(135deg, #ffd700 0%, #e6ac00 100%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  transition:
    filter 0.2s ease,
    transform 0.15s ease;
}

.seating-comments-card__submit:hover:not(:disabled) {
  filter: brightness(1.06);
}

.seating-comments-card__submit:active:not(:disabled) {
  transform: translateY(1px);
}

.seating-comments-card__submit:disabled {
  opacity: 0.65;
  cursor: wait;
}

.seating-comments-card__submit--saved:disabled {
  opacity: 1;
  cursor: default;
  filter: none;
}

.seating-comments-card__submit--saved,
.seating-comments-card__submit--saved:disabled {
  background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
  color: #fff;
  border: 1px solid rgba(200, 230, 201, 0.35);
  box-shadow:
    0 2px 14px rgba(46, 125, 50, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  font-weight: 800;
  letter-spacing: 0.06em;
}

.seating-comments-saved-hint {
  margin: 0.55rem 0 0;
  padding: 0 0.25rem;
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(200, 230, 201, 0.92);
  text-align: center;
  line-height: 1.4;
}

.seating-comments-card__feedback {
  margin: 0.65rem 0 0;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.4;
}

.seating-comments-card__feedback--err {
  color: #ffab91;
}

.ticket-box {
  display: flex;
  flex-direction: column;
  width: 340px;
  max-width: 340px;
  min-width: 220px;
  box-sizing: border-box;
  background: rgba(30, 30, 60, 0.92);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 2px 8px #0003;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

.ticket-box--no-ticket-link {
  background: linear-gradient(
    160deg,
    rgba(38, 32, 58, 0.96) 0%,
    rgba(28, 22, 48, 0.98) 45%,
    rgba(22, 18, 40, 0.99) 100%
  );
  border: 1px solid rgba(255, 204, 255, 0.14);
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.ticket-panel__header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 12px;
}

.ticket-panel__header-icon {
  flex-shrink: 0;
  opacity: 0.95;
  filter: drop-shadow(0 0 8px rgba(255, 214, 0, 0.25));
}

.ticket-panel__title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #ffe082;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.ticket-iframe-wrapper--coming-soon {
  height: 232px;
  min-height: 232px;
}

.ticket-preview-locked-plate--soon {
  background:
    radial-gradient(
      ellipse 85% 70% at 50% 35%,
      rgba(94, 53, 177, 0.22) 0%,
      transparent 65%
    ),
    linear-gradient(165deg, #2e2c3d 0%, #1e1c28 48%, #16141c 100%);
  opacity: 1;
}

.ticket-coming-soon {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 1rem 1.25rem;
  box-sizing: border-box;
  text-align: center;
  pointer-events: none;
}

.ticket-coming-soon__icon {
  color: rgba(255, 224, 130, 0.55);
  margin-bottom: 0.65rem;
  filter: drop-shadow(0 2px 12px rgba(126, 87, 194, 0.35));
}

.ticket-coming-soon__title {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #fff5e6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

.ticket-coming-soon__body {
  margin: 0;
  max-width: 17.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.ticket-coming-soon__body strong {
  color: #ffe082;
  font-weight: 700;
}

.ticket-download-wrap {
  margin-top: 10px;
}

.ticket-download-hint {
  margin: 0.45rem 0 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 204, 255, 0.45);
}

.ticket-download-cta {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-top: 12px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 16px;
  border-radius: 8px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  line-height: 1.25;
  text-decoration: none;
  background-color: #ffd600;
  color: #1e1e2c;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  box-sizing: border-box;
}

.ticket-download-cta:hover:not(:disabled) {
  filter: brightness(1.05);
}

.ticket-download-cta--disabled,
.ticket-download-cta:disabled {
  background: rgba(36, 34, 52, 0.95);
  color: rgba(255, 255, 255, 0.32);
  border: 1px dashed rgba(255, 204, 255, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  cursor: not-allowed;
  filter: none;
}

.ticket-iframe-wrapper {
  position: relative;
  width: 100%;
  height: 320px;
  border-radius: 12px;
  overflow: hidden;
}

.ticket-iframe-wrapper--ticket-locked {
  background: #14141c;
}

.ticket-preview-locked-plate {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(155deg, #3a3a48 0%, #22222c 42%, #18181f 100%);
  opacity: 0.95;
}

.ticket-blur-fake--locked {
  cursor: default;
  pointer-events: none;
}

.ticket-preview-locked-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  margin: 0;
  padding: 0 0.75rem;
  max-width: 92%;
  box-sizing: border-box;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.85);
  pointer-events: none;
}

.ticket-preview-locked-caption-sub {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.4;
}

.ticket-iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.ticket-blur-fake {
  position: absolute;
  inset: 0;
  background: rgba(30, 30, 30, 0.3);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-radius: 12px;
  z-index: 10;
  cursor: pointer;
  transition: opacity 0.4s ease;
  pointer-events: auto;
  overflow: hidden;
  box-shadow:
    0 0 0 10px rgba(255, 255, 255, 0.2),
    0 0 30px 20px rgba(255, 255, 255, 0.08),
    inset 0 0 4px rgba(255, 255, 255, 0.12);
}

.ticket-blur-fake::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/asfalt-dark.png");
  background-repeat: repeat;
  opacity: 0.3;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.ticket-blur-fake.hide {
  opacity: 0;
  pointer-events: none;
}

.ticket-blur-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.2rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  padding: 0.5rem 1rem;
  border-radius: 10px;
  z-index: 20;
  pointer-events: auto;
  cursor: pointer;
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(140, 170, 255, 0.3);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(140, 170, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(140, 170, 255, 0);
  }
}

.ticket-ripple {
  position: absolute;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, rgba(255, 214, 0, 0.3), transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: ripple-disburse 0.8s ease-out forwards;
  pointer-events: none;
  z-index: 15;
}

@keyframes ripple-disburse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(15);
    opacity: 0;
  }
}

.ticket-blur-fake.fade-out {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.assigned-chaperone-note {
  opacity: 0.7;
  font-size: 0.8rem;
}

@media (max-width: 1200px) {
  .assigned-chaperone-note {
    font-size: 0.6rem;
  }

  .seating-page-root.checkout-unified-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .seating-page-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    flex: 0 1 auto;
    min-height: 0;
  }

  .seat-legend-fixed {
    position: static;
    margin-bottom: 10px;
    left: auto;
    top: auto;
    z-index: 1;
    display: flex;
    justify-content: center;
  }

  .bus-main-row {
    flex-direction: column;
    align-items: center;
    display: flex;
    gap: 10px;
    width: 100%;
  }

  .bus-structure {
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    padding-left: 0;
    /* 100vw is viewport-wide and ignores parent padding — causes horizontal scroll */
    max-width: 100%;
    box-sizing: border-box;
  }

  .seating-buses-and-partners {
    margin-left: 0;
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .seating-partners-below-buses {
    max-width: 100%;
    padding-left: 0;
  }

  .bus-layout {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }

  .seat-legend-fixed .seat-legend {
    width: 80%;
    min-width: 0;
    align-items: center;
    justify-content: center;
    padding: 8px 8px;
    font-size: 0.95em;
    margin-bottom: 8px;
    margin-left: 0;
  }

  .signup-more-box {
    padding: 1rem;
    max-width: 90%;
  }

  .signup-more-box h3 {
    font-size: 1.2rem;
  }

  .signup-more-box p {
    font-size: 0.9rem;
  }

  .whatsapp-invite-box {
    padding: 1rem;
    max-width: 90%;
  }

  .whatsapp-invite-box h3 {
    font-size: 1.25rem;
    line-height: 1.4;
    word-break: break-word;
  }

  .whatsapp-invite-box p {
    font-size: 0.95rem;
    line-height: 1.5;
    word-break: break-word;
  }

  .join-whatsapp-button {
    padding: 0.7rem 1.4rem;
    font-size: 0.95rem;
  }

  .ticket-box-fixed {
    position: static;
    top: auto;
    right: auto;
    z-index: auto;
    margin-top: 2rem;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
  }

  .ticket-box-fixed .seating-comments-card,
  .ticket-box-fixed .ticket-box {
    width: min(calc(100% - 1rem), 380px);
    max-width: none;
    min-width: 0;
    margin-left: 0;
    box-sizing: border-box;
  }
}

/* Change-seat modal (matches seating / checkout glass aesthetic) */
.seat-change-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.25rem;
  box-sizing: border-box;
  background: rgba(12, 6, 28, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: seat-change-overlay-in 0.25s ease-out;
}

@keyframes seat-change-overlay-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.seat-change-dialog {
  position: relative;
  width: 100%;
  max-width: 420px;
  padding: 1.75rem 1.5rem 1.5rem;
  border-radius: 20px;
  text-align: center;
  color: #fff;
  background: linear-gradient(
    145deg,
    rgba(75, 0, 90, 0.94) 0%,
    rgba(38, 18, 58, 0.97) 48%,
    rgba(28, 12, 44, 0.98) 100%
  );
  border: 1px solid rgba(255, 204, 255, 0.18);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 1px 0 rgba(255, 255, 255, 0.08) inset;
  animation: seat-change-dialog-in 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes seat-change-dialog-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.seat-change-dialog__glow {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 3px;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 214, 0, 0.85),
    rgba(255, 204, 255, 0.6),
    rgba(255, 214, 0, 0.85),
    transparent
  );
  opacity: 0.95;
}

.seat-change-dialog__kicker {
  margin: 0 0 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 204, 255, 0.55);
}

.seat-change-dialog__title {
  margin: 0 0 1.25rem;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #ffccff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.seat-change-swap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.65rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.seat-change-pill {
  flex: 1 1 120px;
  min-width: 108px;
  max-width: 160px;
  padding: 0.65rem 0.75rem 0.7rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.seat-change-pill--from {
  border-color: rgba(255, 152, 0, 0.25);
  background: linear-gradient(
    160deg,
    rgba(255, 152, 0, 0.12) 0%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.seat-change-pill--to {
  border-color: rgba(255, 214, 0, 0.35);
  background: linear-gradient(
    160deg,
    rgba(255, 214, 0, 0.14) 0%,
    rgba(94, 53, 177, 0.15) 100%
  );
}

.seat-change-pill__label {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.25rem;
}

.seat-change-pill__value {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffe082;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.seat-change-swap__arrow {
  flex-shrink: 0;
  color: rgba(255, 204, 255, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.15rem;
}

.seat-change-dialog__hint {
  margin: 0 0 1.1rem;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.68);
  padding: 0 0.25rem;
}

.seat-change-anon {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0 0 1.35rem;
  padding: 0.75rem 0.85rem;
  text-align: left;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 204, 255, 0.1);
  cursor: pointer;
  font-size: 0.84rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.85);
}

.seat-change-anon input {
  margin-top: 0.2rem;
  width: 1.05rem;
  height: 1.05rem;
  accent-color: #ffd700;
  flex-shrink: 0;
  cursor: pointer;
}

.seat-change-anon__text {
  flex: 1;
}

/* Persistent anonymous toggle on seating page (outside modal). */
.seating-anon-bar {
  margin: 10px 0 14px;
  align-self: stretch;
}

.seat-change-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.seat-change-btn {
  width: 100%;
  padding: 0.82rem 1.1rem;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    filter 0.2s ease,
    box-shadow 0.2s ease;
}

.seat-change-btn:active {
  transform: scale(0.99);
}

.seat-change-btn--primary {
  color: #2a0d35;
  background: linear-gradient(135deg, #ffd700 0%, #e6a800 100%);
  box-shadow:
    0 4px 18px rgba(255, 215, 0, 0.25),
    0 1px 0 rgba(255, 255, 255, 0.35) inset;
}

.seat-change-btn--primary:hover {
  filter: brightness(1.06);
  box-shadow:
    0 6px 22px rgba(255, 215, 0, 0.32),
    0 1px 0 rgba(255, 255, 255, 0.4) inset;
}

.seat-change-btn--ghost {
  color: rgba(255, 204, 255, 0.88);
  background: transparent;
  border: 1px solid rgba(255, 204, 255, 0.28);
  box-shadow: none;
}

.seat-change-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 204, 255, 0.42);
}

@media (min-width: 400px) {
  .seat-change-dialog {
    padding: 2rem 1.75rem 1.65rem;
  }

  .seat-change-dialog__title {
    font-size: 1.55rem;
  }
}

.reserved-pagination-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.pagination-info {
  font-size: 1.1rem;
  font-weight: 500;
  color: #ffccff;
}

.signup-more-box {
  margin-top: 1.5rem;
  padding: 1.35rem 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(94, 53, 177, 0.45) 0%,
    rgba(45, 12, 62, 0.75) 100%
  );
  border-radius: 12px;
  border: 1px solid rgba(255, 204, 255, 0.2);
  color: #fff;
  text-align: center;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  word-break: break-word;
}

.signup-more-box h3 {
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
  color: #ffccff;
  font-weight: 700;
}

.signup-more-box p {
  font-size: 0.95rem;
  margin: 0 0 1rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}

.signup-more-button {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  display: block;
  cursor: pointer;
  border: none;
  background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
  color: #2a0d35;
  font-weight: 800;
  font-size: 1rem;
  padding: 0.85rem 1.25rem;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.signup-more-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.signup-more-button:active {
  transform: translateY(0);
}

.whatsapp-invite-box {
  margin-top: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #1b4e44 0%, #093932 100%);
  border-radius: 12px;
  color: #fff;
  text-align: center;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  word-break: break-word;
}

.whatsapp-invite-box h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.whatsapp-invite-box p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #e0f7ea;
}

.join-whatsapp-button {
  background: #fff;
  color: #128c7e;
  font-weight: bold;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  display: inline-block;
  transform: scale(1);
}

.join-whatsapp-button:hover {
  background: #e0f2f1;
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.join-whatsapp-button:active {
  transform: scale(0.96);
}

/* --- Seat swap (request / approve / deny) --- */
.seating-swap-hint {
  width: 100%;
  max-width: min(100%, 52rem);
  margin: 0 auto 12px;
  padding: 0 0.75rem;
  font-size: 0.88rem;
  color: rgba(255, 204, 255, 0.82);
  text-align: center;
  line-height: 1.45;
  box-sizing: border-box;
}

.seating-swap-incoming {
  width: 100%;
  max-width: min(100%, 52rem);
  margin: 0 auto 16px;
  padding: 16px 18px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(30, 80, 120, 0.55),
    rgba(20, 50, 90, 0.65)
  );
  border: 1px solid rgba(100, 200, 255, 0.35);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-sizing: border-box;
}

.seating-swap-incoming__text {
  flex: 1;
  min-width: 200px;
  color: #e3f2fd;
  font-size: 0.95rem;
}

.seating-swap-incoming__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.seating-swap-btn {
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}

.seating-swap-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.seating-swap-btn--approve {
  background: #43a047;
  color: #fff;
}

.seating-swap-btn--deny {
  background: rgba(200, 60, 60, 0.9);
  color: #fff;
}

.seating-swap-outgoing-note {
  width: 100%;
  max-width: min(100%, 52rem);
  margin: 0 auto 16px;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.35);
  color: #ffe082;
  font-size: 0.92rem;
  box-sizing: border-box;
}

/* Swap request modal — copy & layout */
.seating-swap-dialog .seat-change-dialog__title {
  margin-bottom: 1rem;
}

.seating-swap-dialog__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(186, 104, 200, 0.95);
}

.seating-swap-dialog__title {
  font-size: 1.28rem;
  line-height: 1.25;
}

.seating-swap-dialog__copy {
  text-align: left;
  margin: 0 0 1rem;
  padding: 0.85rem 0.95rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 204, 255, 0.12);
}

.seating-swap-dialog__line {
  margin: 0 0 0.65rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.seating-swap-dialog__line:last-child {
  margin-bottom: 0;
}

.seating-swap-dialog__line--muted {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
}

.seating-swap-dialog__name {
  font-weight: 700;
  color: #ffe082;
}

.seating-swap-dialog__seat {
  color: #e1bee7;
  font-weight: 700;
}

.seating-swap-dialog__quota {
  margin: 0.75rem 0 0;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  color: rgba(255, 215, 160, 0.9);
}

.seating-swap-dialog__quota strong {
  color: #ffd54f;
  font-size: 1em;
}

.seating-swap-dialog__note {
  margin: 0.65rem 0 0;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  font-size: 0.8rem;
  line-height: 1.45;
  color: #ffe082;
  background: rgba(255, 152, 0, 0.12);
  border: 1px solid rgba(255, 193, 7, 0.28);
}

.seating-swap-dialog__actions {
  margin-top: 0.25rem;
}

.seating-swap-error {
  margin: 0 0 1rem;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  font-size: 0.86rem;
  line-height: 1.45;
  color: #ffcdd2;
  background: rgba(183, 28, 28, 0.35);
  border: 1px solid rgba(239, 83, 80, 0.45);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
/* Shown inside SignNow iframe on decline — brief beat before parent handoff */

.waiver-decline-bridge {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: #f0e8ff;
  background: radial-gradient(
      ellipse 120% 80% at 50% 20%,
      rgba(120, 70, 180, 0.45) 0%,
      transparent 55%
    ),
    linear-gradient(165deg, #1a0d2e 0%, #0f0818 45%, #160a28 100%);
}

.waiver-decline-bridge__card {
  max-width: 22rem;
  text-align: center;
  padding: 1.75rem 1.5rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  animation: waiverDeclineCardIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.waiver-decline-bridge__title {
  margin: 0 0 0.65rem;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #ffe566;
}

.waiver-decline-bridge__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(240, 232, 255, 0.88);
}

.waiver-decline-bridge__dots {
  display: flex;
  gap: 0.35rem;
  justify-content: center;
  margin-top: 1.25rem;
}

.waiver-decline-bridge__dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.55);
  animation: waiverDeclineDot 1s ease-in-out infinite;
}

.waiver-decline-bridge__dots span:nth-child(2) {
  animation-delay: 0.15s;
}

.waiver-decline-bridge__dots span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes waiverDeclineCardIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes waiverDeclineDot {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.85);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .waiver-decline-bridge__card {
    animation: none;
  }

  .waiver-decline-bridge__dots span {
    animation: none;
    opacity: 0.7;
  }
}
/* Extends six-flags Payment.css — shared checkout-unified-* and pay-* layers */

.signnow-form-panel {
  width: 100%;
  max-width: 960px;
  box-sizing: border-box;
}

.signnow-attendee-heading {
  text-align: center;
  margin: 0 0 1.25rem;
  width: 100%;
}

.signnow-loading-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem 1rem;
  min-height: 200px;
}

.signnow-loader {
  margin-bottom: 1.25rem;
}

.signnow-loading-caption {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: #f0d0ff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  text-align: center;
}

.signnow-notice--error {
  border-left-color: rgba(255, 107, 107, 0.75);
}

.signnow-notice--error .checkout-payment-notice-title {
  color: #ff8a8a;
}

.signnow-error-detail {
  margin: 0 !important;
  font-size: 0.9rem !important;
  line-height: 1.55 !important;
  color: #ffc9c9 !important;
}

.signnow-help-line {
  margin: 1.25rem 0 0;
  font-size: 0.95rem;
  text-align: center;
  color: #e8d4f5;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.signnow-help-link {
  color: #ffd700;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 215, 0, 0.45);
  transition:
    color 0.2s,
    border-color 0.2s;
}

.signnow-help-link:hover {
  color: #ffe566;
  border-bottom-color: rgba(255, 229, 102, 0.8);
}

.signnow-waiver-hint {
  margin-bottom: 1.25rem;
}

.checkout-stripe-box.signnow-iframe-shell {
  padding: 0;
  overflow: hidden;
  min-height: 0;
}

.signnow-iframe {
  display: block;
  width: 100%;
  height: min(70vh, 720px);
  min-height: 480px;
  border: none;
  border-radius: 12px;
  /* Dark chrome so fading parent never flashes white */
  background: #120818;
}

@media (max-width: 768px) {
  .signnow-form-panel {
    padding: 1.5rem 1rem;
  }

  .signnow-attendee-heading {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .signnow-iframe {
    min-height: 420px;
    height: 65vh;
    border-radius: 8px;
  }

  .signnow-loading-block {
    min-height: 160px;
    padding: 1.25rem 0.5rem 0.5rem;
  }

  .signnow-loading-caption {
    font-size: 1rem;
  }
}

.signnow-decline-exit {
  margin: 1rem 0 0;
  text-align: center;
}

.signnow-decline-exit__btn {
  background: transparent;
  border: none;
  padding: 0.35rem 0.5rem;
  font: inherit;
  font-size: 0.9rem;
  color: #c9b8d9;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.signnow-decline-exit__btn:hover {
  color: #e8d4f5;
}

.signnow-decline-exit__btn:disabled {
  opacity: 0.45;
  cursor: wait;
  pointer-events: none;
}

/* Static plate stays visible so we never reveal the white page behind */
.signnow-page-root {
  position: relative;
  min-height: min(70vh, 640px);
}

.signnow-page-root__plate {
  position: absolute;
  inset: -1rem;
  border-radius: 4px;
  z-index: 0;
  background: radial-gradient(
      circle at center,
      rgba(45, 0, 60, 0.98) 0%,
      rgba(75, 0, 90, 0.96) 40%,
      rgba(50, 0, 70, 0.98) 70%,
      rgba(18, 8, 28, 1) 100%
    ),
    linear-gradient(
      135deg,
      rgba(153, 50, 204, 0.35) 0%,
      rgba(255, 110, 199, 0.12) 50%,
      rgba(75, 0, 130, 0.35) 100%
    );
  pointer-events: none;
}

.signnow-page-root__content {
  position: relative;
  z-index: 1;
  transition:
    opacity 0.46s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.46s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.signnow-page-root__content--exiting {
  opacity: 0;
  transform: translateY(14px) scale(0.992);
  pointer-events: none;
}

.signnow-exiting-hint {
  margin: 0.75rem 0 0;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 500;
  color: #e8d4f5;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  animation: signnowExitingHintPulse 1.1s ease-in-out infinite;
}

@keyframes signnowExitingHintPulse {
  0%,
  100% {
    opacity: 0.75;
  }
  50% {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .signnow-page-root__content {
    transition-duration: 0.12s;
  }

  .signnow-page-root__content--exiting {
    transform: none;
  }

  .signnow-exiting-hint {
    animation: none;
    opacity: 1;
  }
}
/* Shared flow motion: trip home intro, seating (no low-opacity flash over white) */

.six-flags-home-enter,
.six-flags-seating-reveal {
  width: 100%;
}

.six-flags-home-enter--active,
.six-flags-seating-reveal--active {
  animation: sixFlagsFlowReveal 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
}

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

/*
 * Already RSVP’d: uses checkout-unified-container + pay-* layers (Payment.jsx).
 * This wrapper fades out on success like SignNow content — background stays put.
 */
.checkout-unified-container.six-flags-login-checkout {
  padding: 1.5rem 1rem 4rem;
}

.checkout-unified-container.six-flags-login-checkout .six-flags-login-root__content {
  position: relative;
  z-index: 1;
  flex: 1;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  transition:
    opacity 0.46s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.46s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.six-flags-login-root__content--exiting {
  opacity: 0;
  transform: translateY(14px) scale(0.992);
  pointer-events: none;
}

/* SignNowLayout title + form — same exit as login (Account IDs → seating) */
.checkout-unified-container > .six-flags-checkout-fade-surface {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-height: 0;
  transition:
    opacity 0.46s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.46s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.checkout-unified-container > .six-flags-checkout-fade-surface--exiting {
  opacity: 0;
  transform: translateY(14px) scale(0.992);
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .six-flags-home-enter--active,
  .six-flags-seating-reveal--active {
    animation: sixFlagsFlowRevealReduced 0.35s ease both;
  }

  @keyframes sixFlagsFlowRevealReduced {
    from {
      transform: translateY(8px);
    }
    to {
      transform: translateY(0);
    }
  }

  .checkout-unified-container.six-flags-login-checkout .six-flags-login-root__content {
    transition-duration: 0.12s;
  }

  .six-flags-login-root__content--exiting {
    transform: none;
  }

  .checkout-unified-container > .six-flags-checkout-fade-surface {
    transition-duration: 0.12s;
  }

  .checkout-unified-container > .six-flags-checkout-fade-surface--exiting {
    transform: none;
  }
}
/* Account IDs step — extends Payment.css + SignNowLayout */

.account-ids-intro {
  margin-bottom: 1.5rem;
}

.account-ids-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem 1rem;
  min-height: 180px;
}

.account-ids-loading-text {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: #f0d0ff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.account-ids-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

/* One row per guest: ticket tear + name + stub (no nested boxes) */
.account-ids-ticket {
  display: flex;
  align-items: stretch;
  min-height: 5.5rem;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(
    145deg,
    rgba(88, 28, 108, 0.55) 0%,
    rgba(45, 12, 62, 0.75) 100%
  );
  border: 1px solid rgba(255, 204, 255, 0.14);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.account-ids-ticket__tear {
  flex-shrink: 0;
  width: 10px;
  align-self: stretch;
  background: radial-gradient(
      circle at 0 50%,
      transparent 3px,
      rgba(255, 204, 255, 0.12) 3px,
      rgba(255, 204, 255, 0.12) 4px,
      transparent 4px
    )
    repeat-y;
  background-size: 10px 14px;
  background-position: 4px 0;
  border-right: 1px dashed rgba(255, 215, 0, 0.22);
  opacity: 0.9;
}

.account-ids-ticket__main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 1.1rem 1rem 0.85rem;
  min-width: 0;
}

.account-ids-ticket__eyebrow {
  margin: 0 0 0.2rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 215, 0, 0.75);
}

.account-ids-ticket__name {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
  word-break: break-word;
}

.account-ids-ticket__stub {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.85rem 1.15rem;
  min-width: 7.5rem;
  background: rgba(0, 0, 0, 0.22);
  border-left: 1px solid rgba(255, 204, 255, 0.1);
}

.account-ids-ticket__stub-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240, 208, 255, 0.65);
}

.account-ids-ticket__stub-code {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #ffe08a;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.25);
}

.account-ids-ticket__stub-missing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
}

.account-ids-ticket__stub-dash {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: rgba(255, 204, 255, 0.35);
}

.account-ids-ticket__stub-hint {
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 1.35;
  max-width: 9rem;
  color: rgba(232, 212, 245, 0.55);
}

.account-ids-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.account-ids-actions .checkout-submit-btn {
  width: 100%;
}

@media (min-width: 640px) {
  .account-ids-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .account-ids-ticket__stub {
    min-width: 8.5rem;
    padding-left: 1.35rem;
    padding-right: 1.35rem;
  }

  .account-ids-ticket__stub-code {
    font-size: 1.5rem;
  }
}

@media (max-width: 420px) {
  .account-ids-ticket {
    flex-wrap: wrap;
  }

  .account-ids-ticket__tear {
    width: 100%;
    height: 8px;
    border-right: none;
    border-bottom: 1px dashed rgba(255, 215, 0, 0.22);
    background: radial-gradient(
        circle at 50% 0,
        transparent 3px,
        rgba(255, 204, 255, 0.12) 3px,
        rgba(255, 204, 255, 0.12) 4px,
        transparent 4px
      )
      repeat-x;
    background-size: 14px 10px;
    background-position: 0 4px;
  }

  .account-ids-ticket__main {
    flex: 1 1 100%;
    padding: 0.85rem 1rem 0.5rem;
  }

  .account-ids-ticket__stub {
    flex: 1 1 100%;
    flex-direction: column;
    align-items: center;
    border-left: none;
    border-top: 1px solid rgba(255, 204, 255, 0.08);
    min-width: 0;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .account-ids-ticket__stub-hint {
    max-width: 16rem;
  }
}
.announcement-container-custom {
  padding: 4rem 1rem;
  background: radial-gradient(circle at center, rgba(60, 0, 60, 0.9) 0%, rgba(100, 0, 100, 0.9) 50%, rgba(60, 0, 60, 0.9) 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  text-align: center;
}

.announcement-panel-custom {
  background: rgba(80, 0, 80, 0.9);
  border-radius: 20px;
  padding: 3rem 2rem;
  width: 100%;
  max-width: 820px;
  border: 1px solid #c875ff;
  box-shadow: 0 0 8px rgba(180, 100, 255, 0.12);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  box-sizing: border-box;
}

.announcement-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.announcement-title-custom {
  font-size: 2.4rem;
  font-weight: 800;
  color: #ffe7fc;
  margin-bottom: 1.3rem;
  text-shadow: 0 0 6px #ffcaf5;
}

.announcement-intro-custom {
  font-size: 1.1rem;
  color: #e4c8fa;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.announcement-grid-custom {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.2rem;
}

.info-card-custom {
  background: #3b005c;
  padding: 1.5rem;
  flex: 1 1 180px;
  max-width: 220px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 16px;
  border: 1px solid #b266ff;
  box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.05);
}

.info-icon-custom {
  width: 52px;
  height: 52px;
  margin-bottom: 0.7rem;
  color: #ffd6fd;
}

.info-label-custom {
  font-size: 0.95rem;
  color: #cbb3f5;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.3rem;
}

.info-value-custom {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  word-break: break-word;
}

.announcement-section-custom {
  background: linear-gradient(135deg, #36004d, #4e0071);
  padding: 1.8rem 1.5rem;
  border-radius: 16px;
  border: 1px solid #b266ff;
  margin-bottom: 2rem;
  box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.05);
  text-align: left;
  color: #f1d7ff;
}

.announcement-section-custom h2 {
  color: #ffcaff;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.announcement-section-custom a {
  color: #ffccff;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.announcement-section-custom a:hover {
  color: #ffffff;
}

.announcement-list-custom {
  padding-left: 1.2rem;
  list-style: disc;
  margin-top: 0.5rem;
}

.announcement-list-custom li {
  margin-bottom: 0.6rem;
  line-height: 1.6;
  color: #f3e6ff;
}

.checkin-times-custom {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0 0.5rem;
}

.checkin-times-custom span {
  background: rgba(255, 204, 255, 0.2);
  border: 1px solid #ffb3ff;
  border-radius: 40px;
  padding: 0.5rem 1.2rem;
  font-size: 1rem;
  font-weight: 600;
  color: #ffd6ff;
  box-shadow: 0 0 6px rgba(255, 192, 255, 0.1);
}

.warning-text-custom {
  color: #ffc2c2;
  font-weight: 600;
  margin: 0.75rem 0;
  font-size: 0.95rem;
}

.announcement-button-custom {
  background: linear-gradient(135deg, #ffccff, #f29cff);
  color: #2b003f;
  padding: 1rem 2.4rem;
  font-size: 1.05rem;
  font-weight: bold;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  display: block;
  margin: 0 auto;
  margin-top: 2rem;
}

.announcement-button-custom:hover {
  background: #f4a4f4;
  transform: translateY(-2px);
}

.section-header-with-icon {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.section-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  fill: #ffd6fd;
}

@media (max-width: 768px) {
  .announcement-title-custom {
    font-size: 2rem;
    text-align: center;
  }

  .announcement-intro-custom {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .announcement-grid-custom {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .info-card-custom {
    padding: 1.2rem;
    width: 100%;
    max-width: 90%;
    box-sizing: border-box;
  }

  .checkin-times-custom {
    flex-direction: row !important;
    justify-content: flex-start;
    gap: 0.5rem;
  }

  .checkin-times-custom span {
    font-size: 0.95rem;
    padding: 0.45rem 1.1rem;
    white-space: nowrap;
  }

  .announcement-section-custom {
    padding: 1.2rem;
    font-size: 0.95rem;
    width: 100%;
    box-sizing: border-box;
  }

  .announcement-button-custom {
    font-size: 1rem;
    padding: 0.8rem 2rem;
    width: 100%;
    max-width: 320px;
  }

  .section-icon {
    width: 24px;
    height: 24px;
  }
}#birds {
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }