: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(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;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  text-align: center;
}

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

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

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

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

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

.sixflags-content-box {
  background: rgba(80, 0, 80, 0.85);
  padding: 3rem 2rem;
  border-radius: 12px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.5);
  max-width: 800px;
  width: 100%;
  color: #fff;
}

.sixflags-heading {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.sixflags-tagline {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  font-weight: 500;
}

.sixflags-section-title {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  text-decoration: underline;
  text-underline-offset: 6px;
}

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

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

.sixflags-event-item {
  background: rgba(100, 0, 100, 0.8);
  padding: 1rem 1.2rem;
  border-radius: 12px;
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.3);
  width: 220px;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
}

.sixflags-event-item:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.4);
}

.event-icon {
  font-size: 2rem;
}

.event-info h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #ffccff;
}

.event-info p {
  margin: 0.3rem 0 0;
  font-size: 1rem;
}

.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: rgba(100, 0, 100, 0.8);
  padding: 1.2rem;
  border-radius: 15px;
  width: 150px;
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.sixflags-include-badge:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.4);
}

.badge-icon {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
}

.badge-text {
  margin: 0;
  font-size: 1rem;
  font-weight: bold;
  color: #ffccff;
  text-align: center;
}

.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(80, 0, 80), #9932cc);
  color: #fff;
  padding: 1rem 2.8rem;
  border: none;
  border-radius: 25px;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0px 6px 18px rgba(0,0,0,0.4);
  transition: background 0.3s, transform 0.3s;
}

.sixflags-next-button:hover {
  background: linear-gradient(145deg, #9932cc, #8a2be2);
  transform: translateY(-4px);
}

.sixflags-secondary-button {
  background: transparent;
  border: 2px solid #ffccff;
  color: #ffccff;
  padding: 1rem 2.8rem;
  border-radius: 25px;
  font-size: 1.2rem; 
  font-weight: bold; 
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.4); 
  margin-top: 3rem; 
  transition: all 0.3s ease;
}

.sixflags-secondary-button:hover {
  background-color: #ffccff;
  color: #4b004b;
  transform: translateY(-4px);
}


.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); }
}

@media (max-width: 767px) {
  .sixflags-container {
    padding: 2rem 1rem;
    align-items: center;
  }

  .sixflags-content-box {
    padding: 2rem 1.2rem;
    border-radius: 10px;
  }

  .sixflags-heading {
    font-size: 2rem;
  }

  .sixflags-tagline {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }

  .sixflags-section-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .sixflags-event-grid {
    flex-direction: column;
    align-items: center;
  }

  .sixflags-event-item {
    width: 100%;
    max-width: 100%;
  }

  .sixflags-includes-badge-grid {
    flex-direction: column;
    gap: 1rem;
  }

  .sixflags-include-badge {
    width: 100%;
    max-width: 300px;
  }

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

  .sixflags-next-button,
  .sixflags-secondary-button {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 0;
  }
  .sixflags-event-grid {
    width: 100%;
    overflow-x: hidden;
    padding: 0 0.5rem;
    box-sizing: border-box;
  }
  
  .sixflags-event-item {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .sixflags-includes-badge-grid {
    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-form-container {
  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;
}

.sixflags-form-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

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

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

.counter-button {
  background: linear-gradient(145deg, #9932cc, #8a2be2);
  color: #fff;
  border: none;
  padding: 0.4rem 0.7rem;
  font-size: 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4);
  transition: background 0.3s ease;
}

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

.add-attendee-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: #ffccff;
}

.attendee-number {
  font-size: 2rem;
  font-weight: bold;
}

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

.attendee-form {
  background: rgba(80, 0, 80, 0.85);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.4);
}

.attendee-form h3 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: #ffccff;
}

.attendee-form input,
.attendee-form select {
  width: 100%;
  padding: 0.9rem 1rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
}

.attendee-form input::-moz-placeholder {
  color: #ddd;
}

.attendee-form input::placeholder {
  color: #ddd;
}

.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: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
  border: none;
  -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;
}

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

.navigation-buttons {
  margin-top: -2rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.sixflags-back-button {
  margin-top: 3rem;
  background: linear-gradient(145deg, rgb(80, 0, 80), #9932cc);
  color: #fff;
  padding: 1rem 2.8rem;
  border: none;
  border-radius: 25px;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.4);
  transition: background 0.3s, transform 0.3s;
}

.sixflags-back-button:hover {
  background: linear-gradient(145deg, #9932cc, #8a2be2);
  transform: translateY(-4px);
}

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

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

.tooltip-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-left: 6px;
  width: 18px;
  height: 18px;
  background-color: #9932cc;
  color: white;
  border-radius: 50%;
  font-size: 0.9rem;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.tooltip-icon::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #9932cc;
  color: white;
  padding: 0.5rem;
  border-radius: 8px;
  white-space: nowrap;
  font-size: 0.8rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 10;
}

.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;
}

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

.already-rsvped {
  border: 2px dashed #ffa500;
  background-color: rgba(255, 165, 0, 0.1);
  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-color: #ffa500;
  color: #000;
  font-weight: bold;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.already-waitlisted {
  border: 2px dashed #00bcd4;
  background-color: rgba(0, 188, 212, 0.1);
  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-color: #00bcd4;
  color: #000;
  font-weight: bold;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.duplicate-warning {
  color: #ffa500;
  background-color: rgba(255, 165, 0, 0.2);
  border-left: 4px solid #ffa500;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-align: left;
}

.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, 255, 255, 0.2);
  color: #ffccff;
  box-shadow: 0 0 10px rgba(255, 204, 255, 0.2);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  transition: all 0.3s ease;
  z-index: 10;
}

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

.counter-button.disabled-button {
  background: #aaa;
  cursor: not-allowed;
  box-shadow: none;
  opacity: 0.6;
}

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

.form-locked {
  margin: 4rem auto;
  max-width: 600px;
  background: rgba(255, 255, 255, 0.03);
  border: 2px dashed rgba(255, 100, 100, 0.6);
  padding: 3rem;
  border-radius: 12px;
  color: #ff9999;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 0 20px rgba(255, 100, 100, 0.15);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}

.contact-help-note {
  font-size: 0.95rem;
  color: #ffccff;
  opacity: 0.85;
  text-align: center;
  font-weight: 500;
}

.contact-help-note a {
  color: #98ff98;
  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: #ffccff;
  opacity: 0.85;
  text-align: center;
  font-weight: 500;
}

.contact-help-note-waitlist a {
  color: #98ff98;
  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.1);
  border: 2px solid rgba(255, 0, 64, 0.4);
  color: #ff8080;
  padding: 1rem 2.5rem;
  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 0 12px rgba(255, 0, 64, 0.25);
}

.form-closed-button:hover {
  background: rgba(255, 0, 64, 0.15);
  color: #fff;
  transform: translateY(-2px);
}

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

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

@media (max-width: 768px) {
  .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%;
  }

  .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 {
    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: 1rem;
    padding: 0.9rem 1.5rem;
    text-align: center;
  }

  .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;
  }
  .styled-select {
    padding-right: 2rem;
    background-clip: padding-box;
  }
  .sixflags-form-container {
    overflow-x: hidden;
  }

  .contact-help-note {
    font-size: 0.75rem;
  }

  .contact-help-note-waitlist {
    font-size: 0.75rem;
  }
}.bus-container {
  background: radial-gradient(
    circle at center,
    rgba(60, 0, 60, 0.9),
    rgba(100, 0, 100, 0.9)
  );
  padding: 2rem 1rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  font-family: "Segoe UI", sans-serif;
  box-sizing: border-box;
}

.bus-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #ffccff;
  text-align: center;
  @media (max-width: 900px) {
    font-size: 1.5rem;
  }
}

.bus-structure {
  display: flex;
  flex-direction: row;
  gap: 3.5rem;
  justify-content: center;
  align-items: flex-start;
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
  padding-left: 60px;
}

.bus-layout {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  width: 250px;
  background: linear-gradient(180deg, #222 60%, #181818 100%);
  border: 5px solid #1976d2;
  border-radius: 32px 32px 40px 40px;
  box-shadow: 0 8px 32px #0006;
  position: relative;
  min-height: 700px;
  align-items: center;
  margin: 0 auto;
  overflow: hidden;
}

.bus-aisle-bg {
  position: absolute;
  left: 50%;
  top: 75px;
  transform: translateX(-50%);
  width: 32px;
  height: 780px;
  background: linear-gradient(180deg, #3a3a4a 80%, #5e6e7e 100%);
  border-radius: 22px;
  z-index: 1;
  box-shadow: 0 0 24px #000a;
  border: 2px solid #b3e5fc;
}

.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);
}

.bus-seat.taken {
  cursor: not-allowed;
}

.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;
}

.bus-toilet-row {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.7rem;
}

.toilet {
  width: 100%;
  height: 48px;
  background-color: #2e2e2e;
  border-radius: 0 0 18px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.1);
  text-align: center;
  border-top: none;
}

.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: 200px;
  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;
  flex-direction: column;
  align-items: flex-end;
  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;
}

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

.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: center;
  gap: 7px;
  margin-bottom: 2px;
}

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

.reserved-name {
  color: #ffccff;
  font-weight: 600;
}

.ticket-box-fixed {
  position: absolute;
  top: 200px;
  right: 10px;
  z-index: 999;
  font-size: 0.85rem;
  font-weight: 500;
  color: white;
}

.ticket-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;
  min-width: 220px;
  max-width: 340px;
}

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

.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: 900px) {
  .assigned-chaperone-note {
    font-size: 0.6rem;
  }
  .signnow-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    justify-items: center;
    align-items: start;
  }
  .seat-legend-fixed {
    position: static;
    margin-bottom: 10px;
    left: 0;
    top: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
  }
  .bus-main-row {
    flex-direction: column;
    align-items: center;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 10px;
  }
  .bus-structure {
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    padding-left: 0;
    max-width: 100vw;
  }
  .bus-layout {
    min-width: 0;
    max-width: 98vw;
  }
  .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;
  }
  .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;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    width: 100%;
  }
}

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  z-index: 3000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup-card {
  background: radial-gradient(circle, #2a003d 0%, #1e0033 100%);
  padding: 2.5rem 2rem;
  border-radius: 18px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
  color: #fff;
  text-align: center;
  max-width: 380px;
  width: 100%;
  font-family: "Segoe UI", sans-serif;
}

.popup-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #ffccff;
}

.popup-card p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  color: #eee;
}

.anonymous-checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.95rem;
  margin-bottom: 1.8rem;
}

.popup-buttons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}

.confirm-button,
.cancel-button {
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.confirm-button {
  background: linear-gradient(145deg, #43a047, #2e7d32);
  color: #fff;
}

.confirm-button:hover {
  background: linear-gradient(145deg, #2e7d32, #43a047);
}

.cancel-button {
  background: linear-gradient(145deg, #b71c1c, #d32f2f);
  color: #fff;
}

.cancel-button:hover {
  background: linear-gradient(145deg, #d32f2f, #b71c1c);
}

.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;
}

.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);
}.signnow-container {
  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;
}

.signnow-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #ffccff;
}

.signnow-iframe {
  width: 100%;
  max-width: 900px;
  height: 650px;
  border: none;
  border-radius: 15px;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.5);
  background-color: #fff;
}

.signnow-loading {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffccff;
  text-align: center;
  margin-top: 4rem;
}

.signnow-loading-text {
  font-size: 1.2rem;
  color: #ffccff;
  margin-top: 1rem;
}

.signnow-loading-spinner {
  width: 60px;
  height: 60px;
  border: 6px solid rgba(255, 255, 255, 0.2);
  border-top: 6px solid #ffccff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-top: 2rem;
}

.signnow-subtitle {
  font-size: 1.3rem;
  font-weight: 500;
  color: #e6d1ff;
  margin-bottom: 1.5rem;
  text-align: center;
}

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

.checkout-unified-container {
  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;
  font-family: "Segoe UI", sans-serif;
}

.checkout-unified-title {
  font-size: 2.8rem;
  font-weight: bold;
  color: #ffccff;
  margin-bottom: 2rem;
  text-align: center;
}

.checkout-unified-form {
  width: 100%;
  max-width: 960px;
  background: rgba(60, 0, 60, 0.85);
  padding: 2.5rem;
  border-radius: 18px;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.5);
}

.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, 255, 255, 0.2);
  }
}

.checkout-ticket-summary {
  flex: 1;
  background: rgba(80, 0, 80, 0.85);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.checkout-section-header {
  font-size: 1.6rem;
  font-weight: bold;
  color: #ffccff;
}

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

.counter-button {
  background: linear-gradient(145deg, #9932cc, #8a2be2);
  color: #fff;
  border: none;
  padding: 0.4rem 0.9rem;
  font-size: 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4);
  transition: background 0.3s ease;
}

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

.attendee-number {
  font-size: 2rem;
  font-weight: bold;
  color: #ffccff;
}

.add-attendee-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: #ffccff;
}

.checkout-ticket-info {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 10px;
  font-size: 1rem;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

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

.checkout-input-group input {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 8px;
  padding: 0.9rem 1rem;
  color: #fff;
  font-size: 1rem;
}

.checkout-input-group input:focus {
  outline: 2px solid #8a2be2;
}

.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-color: #9932cc;
  color: white;
  border-radius: 50%;
  font-size: 0.9rem;
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.tooltip-icon-pay::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #9932cc;
  color: white;
  padding: 0.5rem;
  border-radius: 8px;
  white-space: nowrap;
  font-size: 0.8rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 10;
}

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

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

.checkout-stripe-box {
  background-color: white;
  border-radius: 8px;
  padding: 1rem;
}

.checkout-agreement {
  margin-top: 1.2rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  color: #ffccff;
  gap: 0.75rem;
  line-height: 1.4;
}

.checkout-agreement input[type="checkbox"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid #8a2be2;
  position: relative;
  z-index: 1;          
  cursor: pointer;
  flex-shrink: 0;
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
  margin-top: 0;
}

.checkout-agreement input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkout-submit-btn {
  padding: 1rem 2rem;
  font-size: 1.2rem;
  font-weight: bold;
  background: linear-gradient(145deg, #9932cc, #8a2be2);
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  width: 100%;
}

.checkout-submit-btn:hover {
  background: linear-gradient(145deg, #8a2be2, #9932cc);
  transform: translateY(-3px);
}

.checkout-error-msg {
  color: #ff4c4c;
  font-size: 1rem;
  text-align: center;
}

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

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

@media (max-width: 767px) {
  .checkout-ticket-summary,
  .checkout-payment-box {
    padding: 0;
    border: none;
  }
}

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;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  border: 2px solid transparent;
  transition: border 0.2s;
}

.checkout-input-group input[type="number"]:focus {
  border: 2px solid #8a2be2;
}

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

.payment-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 0, 30, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
}

.payment-loader {
  border: 6px solid #ddd;
  border-top: 6px solid #ffccff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}

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

.checkmark-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #4caf50;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

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

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

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

  .checkout-unified-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #ffccff;
  }

  .checkout-unified-form {
    padding: 1.5rem 1rem;
    background: rgba(60, 0, 60, 0.85);
    border-radius: 14px;
    box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.3);
    width: 100%;
    box-sizing: border-box;
  }

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

  .checkout-ticket-summary,
  .checkout-payment-box {
    padding: 1rem;
    border: none;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
    width: 100%;
    box-sizing: border-box;
  }

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

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

  .add-attendee-text {
    font-size: 1rem;
    font-weight: 500;
    color: #ffccff;
    text-align: center;
  }

  .attendee-number {
    font-size: 1.4rem;
    font-weight: bold;
    color: #fff;
  }

  .counter-button {
    font-size: 1rem;
    padding: 0.4rem 0.9rem;
    border-radius: 8px;
    background: linear-gradient(145deg, #9932cc, #8a2be2);
    color: #fff;
    border: none;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.3);
  }

  .checkout-ticket-info {
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem;
    border-radius: 8px;
    line-height: 1.4;
  }

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

  .checkout-input-group input {
    width: 100%;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
  }

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

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

  .checkout-submit-btn {
    width: 100%;
    padding: 0.9rem 1.2rem;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 30px;
    background: linear-gradient(145deg, #9932cc, #8a2be2);
    color: #fff;
    border: none;
    text-align: center;
  }

  .checkout-agreement {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    font-size: 0.85rem;
    color: #ffccff;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    line-height: 1.4;
  }

  .checkout-agreement input[type="checkbox"] {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    margin: 0;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #8a2be2;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
  }

  .checkout-agreement input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 5px;
    width: 4px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }

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

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

  .checkout-error-msg {
    font-size: 0.9rem;
    text-align: center;
    color: #ff4c4c;
  }

  .payment-overlay {
    font-size: 1rem;
    padding: 1rem;
    text-align: center;
  }

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

  .checkmark {
    font-size: 2.2rem;
  }
}
.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: 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: left;
    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;
  }
}.silkroad-container {
  position: relative;
  padding: 4rem 1rem;
  background: radial-gradient(
      circle at center,
      rgba(60, 0, 60, 0.9) 0%,
      rgba(100, 0, 100, 0.9) 50%,
      rgba(139, 69, 19, 0.9) 80%,
      rgba(60, 0, 60, 0.9) 100%
    ),
    linear-gradient(
      135deg,
      rgba(34, 139, 34, 0.3) 0%,
      rgba(255, 215, 0, 0.2) 50%,
      rgba(160, 82, 45, 0.3) 100%
    );
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  text-align: center;
}

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

.silkroad-background-animation::before,
.silkroad-background-animation::after,
.silkroad-background-animation .leaf-1,
.silkroad-background-animation .leaf-2,
.silkroad-background-animation .leaf-3,
.silkroad-background-animation .leaf-4,
.silkroad-background-animation .leaf-5,
.silkroad-background-animation .leaf-6,
.silkroad-background-animation .leaf-7,
.silkroad-background-animation .leaf-8,
.silkroad-background-animation .leaf-9,
.silkroad-background-animation .leaf-10 {
  content: "🍂";
  position: absolute;
  width: 200px;
  height: 200px;
  font-size: 120px;
  opacity: 0.6;
  animation: float 6s infinite;
}

.silkroad-background-animation::before {
  top: 5%;
  left: 5%;
  animation-delay: 0s;
  content: "🔥";
  font-size: 100px;
  opacity: 0.7;
}

.silkroad-background-animation::after {
  bottom: 10%;
  right: 5%;
  animation-delay: 3s;
  content: "🌳";
  font-size: 110px;
  opacity: 0.6;
}

.silkroad-background-animation .leaf-1 {
  top: 8%;
  right: 8%;
  animation-delay: 1s;
  font-size: 100px;
  content: "🍖";
}

.silkroad-background-animation .leaf-2 {
  bottom: 20%;
  left: 8%;
  animation-delay: 2s;
  font-size: 80px;
  content: "🥘";
}

.silkroad-background-animation .leaf-3 {
  top: 30%;
  left: 5%;
  animation-delay: 4s;
  font-size: 90px;
  content: "🏐";
}

.silkroad-background-animation .leaf-4 {
  top: 25%;
  right: 15%;
  animation-delay: 5s;
  font-size: 110px;
  content: "🎵";
}

.silkroad-background-animation .leaf-5 {
  top: 60%;
  right: 8%;
  animation-delay: 1.5s;
  font-size: 95px;
  content: "🍂";
}

.silkroad-background-animation .leaf-6 {
  bottom: 35%;
  left: 25%;
  animation-delay: 3.5s;
  font-size: 85px;
  content: "🌿";
}

.silkroad-background-animation .leaf-7 {
  top: 45%;
  left: 15%;
  animation-delay: 0.5s;
  font-size: 105px;
  content: "☀️";
}

.silkroad-background-animation .leaf-8 {
  bottom: 8%;
  right: 25%;
  animation-delay: 2.5s;
  font-size: 75px;
  content: "🍃";
}

.silkroad-background-animation .leaf-9 {
  top: 75%;
  left: 35%;
  animation-delay: 4.5s;
  font-size: 115px;
  content: "🎪";
}

.silkroad-background-animation .leaf-10 {
  top: 15%;
  right: 35%;
  animation-delay: 1.8s;
  font-size: 88px;
  content: "🌟";
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
  100% {
    transform: translateY(0) rotate(360deg);
  }
}

.silkroad-content-box {
  background: linear-gradient(
    135deg,
    rgba(80, 0, 80, 0.9) 0%,
    rgba(139, 69, 19, 0.9) 100%
  );
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.6),
    0px 0px 0px 2px rgba(255, 215, 0, 0.3),
    inset 0px 1px 0px rgba(255, 255, 255, 0.1);
  max-width: 800px;
  width: 100%;
  color: #fff;
  border: 1px solid rgba(255, 215, 0, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.silkroad-heading {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
  background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
}

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

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

.silkroad-event-details {
  margin-bottom: 2.5rem;
}

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

.silkroad-event-item {
  background: linear-gradient(
    135deg,
    rgba(160, 82, 45, 0.9) 0%,
    rgba(139, 69, 19, 0.9) 100%
  );
  padding: 1.2rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.4),
    0px 0px 0px 1px rgba(255, 215, 0, 0.2);
  width: 220px;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  text-align: left;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.silkroad-event-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.5),
    0px 0px 0px 2px rgba(255, 215, 0, 0.4);
  background: linear-gradient(
    135deg,
    rgba(160, 82, 45, 1) 0%,
    rgba(139, 69, 19, 1) 100%
  );
}

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

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

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

.silkroad-includes-section {
  margin-top: 3rem;
}

/* Countdown within Event Card Styles */
.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;
  color: #ffed4e;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1;
  background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
  -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: #ffd700;
  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 Text Styles */
.pricing-text {
  margin: 0;
  font-size: 1rem;
  color: #ffed4e;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
  line-height: 1.4;
}

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

.price-highlight.discount {
  background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Location Details Styles */
.location-details {
  text-align: left;
}

.location-main {
  color: #ffd700;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
}

.location-address {
  color: #ffed4e;
  font-size: 1rem;
  margin-bottom: 0.2rem;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
}

.location-city {
  color: #ffed4e;
  font-size: 1rem;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
}

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

.silkroad-include-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(
    135deg,
    rgba(160, 82, 45, 0.9) 0%,
    rgba(139, 69, 19, 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, 215, 0, 0.2);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.silkroad-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, 215, 0, 0.4);
  background: linear-gradient(
    135deg,
    rgba(160, 82, 45, 1) 0%,
    rgba(139, 69, 19, 1) 100%
  );
}

.badge-icon {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 215, 0, 0.3) 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.2);
  border: 2px solid rgba(255, 215, 0, 0.3);
}

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

.silkroad-intro-button-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.silkroad-intro-next-button {
  margin-top: 3rem;
  background: linear-gradient(145deg, rgb(160, 82, 45), #d2691e);
  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, 215, 0, 0.3);
  transition: all 0.3s ease;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
}

.silkroad-intro-next-button:hover {
  background: linear-gradient(145deg, #d2691e, #cd853f);
  transform: translateY(-6px);
  box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.6),
    0px 0px 0px 3px rgba(255, 215, 0, 0.5);
}

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

.silkroad-intro-secondary-button:hover {
  background: linear-gradient(145deg, #ffd700, #ffed4e);
  color: #8b4513;
  transform: translateY(-6px);
  box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.5),
    0px 0px 0px 2px rgba(255, 215, 0, 0.4);
  text-shadow: none;
}

.silkroad-loading-spinner {
  width: 180px;
  height: 180px;
  border: 8px solid rgba(255, 215, 0, 0.2);
  border-top: 8px solid #ffd700;
  border-radius: 50%;
  animation: spin2 1.2s linear infinite;
  margin: 2rem auto;
}

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

@media (max-width: 767px) {
  .silkroad-container {
    padding: 2rem 1rem;
    align-items: center;
  }

  .silkroad-content-box {
    padding: 2rem 1.2rem;
    border-radius: 10px;
  }

  .silkroad-heading {
    font-size: 2rem;
  }

  .silkroad-tagline {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }

  .silkroad-section-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  /* Mobile countdown adjustments */
  .countdown-grid {
    gap: 0.5rem;
  }

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

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

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

  /* Mobile pricing adjustments */
  .pricing-text {
    font-size: 0.9rem;
  }

  .silkroad-event-grid {
    flex-direction: column;
    align-items: center;
  }

  .silkroad-event-item {
    width: 100%;
    max-width: 100%;
  }

  .silkroad-includes-badge-grid {
    flex-direction: column;
    gap: 1rem;
  }

  .silkroad-include-badge {
    width: 100%;
    max-width: 300px;
  }

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

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

  .silkroad-event-grid {
    width: 100%;
    overflow-x: hidden;
    padding: 0 0.5rem;
    box-sizing: border-box;
  }

  .silkroad-event-item {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .silkroad-includes-badge-grid {
    width: 100%;
    padding: 0 0.5rem;
    box-sizing: border-box;
    justify-content: center;
  }

  .silkroad-include-badge {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}
.silkroad-form-container {
  position: relative;
  padding: 4rem 1rem;
  background: radial-gradient(
      circle at center,
      rgba(60, 0, 60, 0.9) 0%,
      rgba(100, 0, 100, 0.9) 50%,
      rgba(139, 69, 19, 0.9) 80%,
      rgba(60, 0, 60, 0.9) 100%
    ),
    linear-gradient(
      135deg,
      rgba(34, 139, 34, 0.3) 0%,
      rgba(255, 215, 0, 0.2) 50%,
      rgba(160, 82, 45, 0.3) 100%
    );
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.silkroad-form-container::before,
.silkroad-form-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.silkroad-form-container::before {
  background-image: radial-gradient(
      circle at 20% 20%,
      rgba(255, 215, 0, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(139, 69, 19, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 60%,
      rgba(34, 139, 34, 0.1) 0%,
      transparent 50%
    );
  animation: backgroundFloat 8s ease-in-out infinite;
}

.silkroad-form-container::after {
  background-image: radial-gradient(
      circle at 60% 30%,
      rgba(160, 82, 45, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 30% 70%,
      rgba(255, 215, 0, 0.1) 0%,
      transparent 50%
    );
  animation: backgroundFloat 8s ease-in-out infinite reverse;
}

@keyframes backgroundFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(180deg);
  }
}

.silkroad-form-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
  background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
}

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

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

.counter-button {
  background: linear-gradient(145deg, #9932cc, #8a2be2);
  color: #fff;
  border: none;
  padding: 0.4rem 0.7rem;
  font-size: 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4);
  transition: background 0.3s ease;
}

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

.add-attendee-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: #ffccff;
}

.attendee-number {
  font-size: 2rem;
  font-weight: bold;
}

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

.attendee-form {
  background: linear-gradient(
    135deg,
    rgba(80, 0, 80, 0.9) 0%,
    rgba(139, 69, 19, 0.9) 100%
  );
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.6),
    0px 0px 0px 2px rgba(255, 215, 0, 0.3),
    inset 0px 1px 0px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

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

.attendee-form input,
.attendee-form select {
  width: 100%;
  padding: 0.9rem 1rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
}

.attendee-form input::-moz-placeholder {
  color: #ddd;
}

.attendee-form input::placeholder {
  color: #ddd;
}

.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: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
  border: none;
  -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;
}

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

.navigation-buttons {
  margin-top: -2rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.silkroad-back-button {
  margin-top: 3rem;
  background: linear-gradient(145deg, rgb(160, 82, 45), #d2691e);
  color: #fff;
  padding: 1rem 2.8rem;
  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, 215, 0, 0.3);
  transition: all 0.3s ease;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
}

.silkroad-back-button:hover {
  background: linear-gradient(145deg, #d2691e, #cd853f);
  transform: translateY(-6px);
  box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.6),
    0px 0px 0px 3px rgba(255, 215, 0, 0.5);
}

.silkroad-next-button {
  margin-top: 3rem;
  background: linear-gradient(145deg, rgb(160, 82, 45), #d2691e);
  color: #fff;
  padding: 1rem 2.8rem;
  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, 215, 0, 0.3);
  transition: all 0.3s ease;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
}

.silkroad-next-button:hover {
  background: linear-gradient(145deg, #d2691e, #cd853f);
  transform: translateY(-6px);
  box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.6),
    0px 0px 0px 3px rgba(255, 215, 0, 0.5);
}

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

.silkroad-secondary-button:hover {
  background: linear-gradient(145deg, #ffd700, #ffed4e);
  color: #8b4513;
  transform: translateY(-6px);
  box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.5),
    0px 0px 0px 2px rgba(255, 215, 0, 0.4);
  text-shadow: none;
}

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

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

.tooltip-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-left: 6px;
  width: 18px;
  height: 18px;
  background-color: #9932cc;
  color: white;
  border-radius: 50%;
  font-size: 0.9rem;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.tooltip-icon::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #9932cc;
  color: white;
  padding: 0.5rem;
  border-radius: 8px;
  white-space: nowrap;
  font-size: 0.8rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 10;
}

.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;
}

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

.already-rsvped {
  border: 2px dashed #ffa500;
  background-color: rgba(255, 165, 0, 0.1);
  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-color: #ffa500;
  color: #000;
  font-weight: bold;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.already-waitlisted {
  border: 2px dashed #00bcd4;
  background-color: rgba(0, 188, 212, 0.1);
  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-color: #00bcd4;
  color: #000;
  font-weight: bold;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.duplicate-warning {
  color: #ffa500;
  background-color: rgba(255, 165, 0, 0.2);
  border-left: 4px solid #ffa500;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-align: left;
}

.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, 255, 255, 0.2);
  color: #ffccff;
  box-shadow: 0 0 10px rgba(255, 204, 255, 0.2);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  transition: all 0.3s ease;
  z-index: 10;
}

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

.counter-button.disabled-button {
  background: #aaa;
  cursor: not-allowed;
  box-shadow: none;
  opacity: 0.6;
}

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

.form-locked {
  margin: 4rem auto;
  max-width: 600px;
  background: rgba(255, 255, 255, 0.03);
  border: 2px dashed rgba(255, 100, 100, 0.6);
  padding: 3rem;
  border-radius: 12px;
  color: #ff9999;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 0 20px rgba(255, 100, 100, 0.15);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}

.contact-help-note {
  font-size: 0.95rem;
  color: #ffccff;
  opacity: 0.85;
  text-align: center;
  font-weight: 500;
}

.contact-help-note a {
  color: #98ff98;
  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: #ffccff;
  opacity: 0.85;
  text-align: center;
  font-weight: 500;
}

.contact-help-note-waitlist a {
  color: #98ff98;
  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.1);
  border: 2px solid rgba(255, 0, 64, 0.4);
  color: #ff8080;
  padding: 1rem 2.5rem;
  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 0 12px rgba(255, 0, 64, 0.25);
}

.form-closed-button:hover {
  background: rgba(255, 0, 64, 0.15);
  color: #fff;
  transform: translateY(-2px);
}

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

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

@media (max-width: 768px) {
  .silkroad-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%;
  }

  .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 {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-100%);
  }

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

  .silkroad-back-button,
  .silkroad-next-button,
  .silkroad-secondary-button {
    flex: 1;
    font-size: 1rem;
    padding: 0.9rem 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;
  }
  .styled-select {
    padding-right: 2rem;
    background-clip: padding-box;
  }
  .silkroad-form-container {
    overflow-x: hidden;
  }

  .contact-help-note {
    font-size: 0.75rem;
  }

  .contact-help-note-waitlist {
    font-size: 0.75rem;
  }
}
.silkroad-seating-container {
  position: relative;
  padding: 2rem 1rem;
  background: radial-gradient(
      circle at center,
      rgba(60, 0, 60, 0.9) 0%,
      rgba(100, 0, 100, 0.9) 50%,
      rgba(139, 69, 19, 0.9) 80%,
      rgba(60, 0, 60, 0.9) 100%
    ),
    linear-gradient(
      135deg,
      rgba(34, 139, 34, 0.3) 0%,
      rgba(255, 215, 0, 0.2) 50%,
      rgba(160, 82, 45, 0.3) 100%
    );
  min-height: 100vh;
  color: #fff;
  font-family: "Segoe UI", sans-serif;
  box-sizing: border-box;
}

.silkroad-seating-title {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 2rem;
  text-align: center;
  background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
}

.silkroad-main-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.2rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

@media (max-width: 900px) {
  .silkroad-seating-title {
    font-size: 2rem;
  }
}

/* Attendees List in Legend */
.attendees-list {
  background: rgba(160, 82, 45, 0.3);
  border-radius: 12px;
  padding: 10px 16px;
  margin: 12px 0;
  font-size: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.2);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  position: relative;
  overflow: hidden;
}

.attendees-list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 215, 0, 0.5),
    transparent
  );
}

.attendees-title {
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 1.08em;
  color: #ffd700;
}

.payment-legend {
  display: flex;
  gap: 1rem;
  margin-bottom: 8px;
  font-size: 0.75rem;
  opacity: 0.8;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: #ffed4e;
}

.legend-icon {
  font-size: 0.7rem;
}

.legend-icon.paid-icon {
  color: #22c55e;
}

.legend-icon.pending-icon {
  color: #f59e0b;
}

.attendees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 0.3rem;
  max-height: 150px;
  overflow-y: auto;
}

.attendee-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.3rem 0.5rem;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
  gap: 0.1rem;
  min-height: 2rem;
  white-space: nowrap;
  overflow: hidden;
}

.attendee-item.expanded {
  align-items: flex-start;
  min-height: auto;
  white-space: normal;
  overflow: visible;
}

.attendee-item.paid {
  background: rgba(34, 197, 94, 0.2);
  border-color: rgba(34, 197, 94, 0.4);
  box-shadow: 0 2px 4px rgba(34, 197, 94, 0.1);
}

.attendee-item.paid:hover {
  background: rgba(34, 197, 94, 0.3);
  border-color: rgba(34, 197, 94, 0.6);
  box-shadow: 0 4px 8px rgba(34, 197, 94, 0.2);
  transform: translateY(-1px);
}

.attendee-item.unpaid {
  background: rgba(251, 191, 36, 0.2);
  border-color: rgba(251, 191, 36, 0.4);
  box-shadow: 0 2px 4px rgba(251, 191, 36, 0.1);
}

.attendee-item.unpaid:hover {
  background: rgba(251, 191, 36, 0.3);
  border-color: rgba(251, 191, 36, 0.6);
  box-shadow: 0 4px 8px rgba(251, 191, 36, 0.2);
  transform: translateY(-1px);
}

.payment-status {
  font-size: 0.8rem;
  opacity: 0.8;
  flex-shrink: 0;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.status-icon {
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.status-icon.paid-icon {
  color: #22c55e;
  text-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
}

.status-icon.pending-icon {
  color: #f59e0b;
  text-shadow: 0 0 8px rgba(245, 158, 11, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

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

.attendee-name {
  color: #ffed4e;
  font-size: 0.8rem;
  font-weight: 500;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  transition: all 0.3s ease;
  position: relative;
}

.attendee-name.expanded {
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  word-break: break-word;
  line-height: 1.2;
}

.expand-hint {
  color: rgba(255, 237, 78, 0.6);
  font-size: 0.7rem;
  margin-left: 2px;
  font-weight: bold;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%,
  50% {
    opacity: 0.6;
  }
  51%,
  100% {
    opacity: 1;
  }
}

.attendee-name:hover {
  color: #fff;
  text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5);
}

.you-star {
  color: #ffd700;
  font-size: 0.8rem;
  margin-left: 4px;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
  animation: twinkle 2s ease-in-out infinite;
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

/* Contribution Legend */
.contribution-legend-fixed {
  position: static;
  margin-bottom: 2rem;
  border-radius: 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: white;
  display: flex;
  justify-content: center;
}

.contribution-legend {
  margin-right: 0;
  width: 480px;
  min-width: 200px;
  flex-shrink: 0;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  min-height: -moz-fit-content;
  min-height: fit-content;
  background: linear-gradient(
    135deg,
    rgba(80, 0, 80, 0.95) 0%,
    rgba(139, 69, 19, 0.95) 100%
  );
  border-radius: 16px;
  padding: 20px 28px;
  box-shadow: 0px 25px 50px rgba(0, 0, 0, 0.7),
    0px 0px 0px 3px rgba(255, 215, 0, 0.4),
    inset 0px 2px 0px rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 215, 0, 0.3);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  font-size: 0.9rem;
  font-weight: 500;
}

.contribution-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.contribution-header h3 {
  font-size: 1.4rem;
  color: #ffd700;
  margin-bottom: 0.8rem;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.6);
  font-weight: 700;
}

.contribution-header p {
  font-size: 1rem;
  color: #ffed4e;
  margin: 0;
  line-height: 1.4;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.4);
}

.optional-note {
  font-size: 0.9rem !important;
  color: #a0d8ef !important;
  margin-top: 0.5rem !important;
  font-style: italic;
  opacity: 0.9;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
}

.common-items-section {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(160, 82, 45, 0.2);
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.common-items-section h4 {
  font-size: 1.1rem;
  color: #ffd700;
  margin-bottom: 0.8rem;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.6);
  font-weight: 600;
  text-align: center;
}

.common-items-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.common-item {
  display: flex;
  align-items: center;
}

.contribution-checkbox {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  padding: 0.3rem;
  border-radius: 6px;
  transition: background-color 0.2s ease;
  width: 100%;
  font-size: 0.8rem;
}

.contribution-checkbox:hover {
  background: rgba(255, 255, 255, 0.1);
}

.contribution-checkbox input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 14px;
  height: 14px;
  border: 2px solid #ffd700;
  border-radius: 3px;
  position: relative;
  background: transparent;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.contribution-checkbox input[type="checkbox"]:checked + .checkmark {
  background: #ffd700;
}

.contribution-checkbox input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #8b4513;
  font-weight: bold;
  font-size: 8px;
}

.item-icon {
  font-size: 1rem;
  margin-right: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}

.item-text {
  color: #ffed4e;
  font-size: 0.75rem;
  font-weight: 500;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.custom-contribution-section {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(160, 82, 45, 0.2);
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.custom-contribution-section h4 {
  font-size: 1.1rem;
  color: #ffd700;
  margin-bottom: 0.8rem;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.6);
  font-weight: 600;
  text-align: center;
}

.contribution-input-group {
  display: flex;
  gap: 0.8rem;
  align-items: stretch;
  margin-bottom: 1rem;
}

.contribution-input {
  flex: 1;
  padding: 0.8rem;
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.9rem;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.contribution-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

.contribution-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

.contribution-input:focus {
  outline: none;
  border-color: #ffd700;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
  background: rgba(255, 255, 255, 0.15);
}

.contribution-submit-btn {
  padding: 0.8rem 1.2rem;
  background: linear-gradient(145deg, #ff6b35, #e55a2b);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  min-width: 100px;
}

.contribution-submit-btn:hover:not(:disabled) {
  background: linear-gradient(145deg, #e55a2b, #ff6b35);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.contribution-submit-btn:disabled {
  background: #666;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  opacity: 0.6;
}

.pending-custom-contributions {
  margin-top: 0.8rem;
  padding: 0.8rem;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.pending-custom-contributions h5 {
  font-size: 0.9rem;
  color: #ffd700;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.pending-items-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.pending-item-tag {
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.2) 0%,
    rgba(255, 215, 0, 0.3) 100%
  );
  color: #ffed4e;
  padding: 0.2rem 0.5rem;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 500;
  border: 1px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.contributions-display {
  margin-bottom: 1rem;
  padding: 1rem;
  background: rgba(160, 82, 45, 0.2);
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.contributions-display h4 {
  font-size: 1.1rem;
  color: #ffd700;
  margin-bottom: 0.8rem;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.6);
  font-weight: 600;
  text-align: center;
}

.contributions-list {
  max-height: 150px;
  overflow-y: auto;
  background: rgba(160, 82, 45, 0.3);
  border-radius: 8px;
  padding: 0.5rem;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.no-contributions {
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  text-align: center;
  padding: 1rem;
}

.contribution-item-display {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
}

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

.contributor-name {
  color: #ffed4e;
  font-weight: 600;
  flex-shrink: 0;
}

.contribution-item {
  color: #ffd700;
  text-align: right;
  flex: 1;
  margin-left: 0.5rem;
}

.contribution-actions {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(160, 82, 45, 0.2);
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  text-align: center;
}

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

.contribution-confirm-btn {
  background: linear-gradient(145deg, #43a047, #2e7d32);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  min-width: 180px;
}

.contribution-confirm-btn:hover:not(:disabled) {
  background: linear-gradient(145deg, #2e7d32, #43a047);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.contribution-confirm-btn:disabled {
  background: #666;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  opacity: 0.6;
}

.contribution-reset-btn {
  background: linear-gradient(145deg, #b71c1c, #d32f2f);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  min-width: 180px;
}

.contribution-reset-btn:hover:not(:disabled) {
  background: linear-gradient(145deg, #d32f2f, #b71c1c);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.contribution-reset-btn:disabled {
  background: #666;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  opacity: 0.6;
}

.contribution-confirm-list {
  background: linear-gradient(
    135deg,
    rgba(80, 0, 80, 0.3) 0%,
    rgba(139, 69, 19, 0.3) 100%
  );
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border: 2px solid rgba(255, 215, 0, 0.4);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.contribution-confirm-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.2s ease;
}

.contribution-confirm-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

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

.contribution-confirm-icon {
  color: #43a047;
  font-weight: bold;
  font-size: 1.4rem;
  width: 24px;
  text-align: center;
  background: rgba(67, 160, 71, 0.2);
  border-radius: 50%;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(67, 160, 71, 0.4);
}

.contribution-confirm-name {
  color: #ffed4e;
  font-weight: 600;
  font-size: 1.1rem;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
}

.contribution-person-display {
  background: linear-gradient(
    135deg,
    rgba(80, 0, 80, 0.1) 0%,
    rgba(139, 69, 19, 0.1) 100%
  );
  border-radius: 12px;
  padding: 0.8rem;
  margin-bottom: 0.6rem;
  border: 1px solid rgba(255, 215, 0, 0.15);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contribution-person-display:hover {
  background: linear-gradient(
    135deg,
    rgba(80, 0, 80, 0.2) 0%,
    rgba(139, 69, 19, 0.2) 100%
  );
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contribution-person-display:last-child {
  margin-bottom: 0;
}

.contributor-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contributor-name {
  color: #ffd700;
  font-weight: 600;
  font-size: 1rem;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
}

.contribution-count {
  color: #ffed4e;
  font-size: 0.8rem;
  font-weight: 500;
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.15) 0%,
    rgba(255, 215, 0, 0.25) 100%
  );
  padding: 0.25rem 0.5rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.contribution-items-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.contribution-item-tag {
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.15) 0%,
    rgba(255, 215, 0, 0.25) 100%
  );
  color: #ffed4e;
  padding: 0.25rem 0.6rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.contribution-item-tag:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.25) 0%,
    rgba(255, 215, 0, 0.35) 100%
  );
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Small Contribution Box - Legacy */
.contribution-box {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background: rgba(160, 82, 45, 0.9);
  border-radius: 12px;
  padding: 1rem;
  border: 1px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 3;
  max-width: 200px;
}

.contribution-box h4 {
  color: #ffd700;
  margin-bottom: 0.8rem;
  font-size: 1rem;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.contribution-items {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.contribution-item {
  display: flex;
  align-items: center;
}

.contribution-checkbox {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  padding: 0.3rem;
  border-radius: 6px;
  transition: background-color 0.2s ease;
  width: 100%;
}

.contribution-checkbox:hover {
  background: rgba(255, 255, 255, 0.1);
}

.contribution-checkbox input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 16px;
  height: 16px;
  border: 2px solid #ffd700;
  border-radius: 3px;
  position: relative;
  background: transparent;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.contribution-checkbox input[type="checkbox"]:checked + .checkmark {
  background: #ffd700;
}

.contribution-checkbox input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #8b4513;
  font-weight: bold;
  font-size: 10px;
}

.item-text {
  color: #ffed4e;
  font-size: 0.85rem;
  font-weight: 500;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

/* User Info Section */
.user-info-section {
  background: rgba(30, 30, 60, 0.85);
  color: #fff;
  border-radius: 12px;
  padding: 16px 20px;
  margin: 12px 0 0 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.user-info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 600;
}

.user-info-item:last-child {
  margin-bottom: 0;
}

.user-info-label {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.user-info-value {
  color: #ffd700;
  font-weight: 700;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
}

.anonymous-section {
  justify-content: flex-start !important;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.anonymous-checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s ease;
}

.anonymous-checkbox-label:hover {
  color: #ffd700;
}

.anonymous-checkbox-input {
  width: 16px;
  height: 16px;
  accent-color: #ffd700;
  cursor: pointer;
}

.anonymous-checkbox-text {
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

/* Event Stats */
.event-stats {
  background: rgba(160, 82, 45, 0.3);
  color: #fff;
  border-radius: 12px;
  padding: 10px 16px;
  margin: 12px 0;
  font-size: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.stats-title {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 1.08em;
  color: #ffd700;
  text-align: center;
}

.stat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
  font-size: 0.9rem;
}

.stat-label {
  color: #ffed4e;
  opacity: 0.8;
}

.stat-value {
  color: #ffd700;
  font-weight: 600;
}

/* Activity Info Modal */
.activity-info-card {
  max-width: 400px;
}

.activity-description {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  color: #eee;
}

.activity-details {
  margin-bottom: 1.5rem;
}

.detail-item {
  margin-bottom: 0.8rem;
  color: #eee;
}

.detail-item strong {
  color: #ffd700;
}

.bus-structure {
  display: flex;
  flex-direction: row;
  gap: 3.5rem;
  justify-content: center;
  align-items: flex-start;
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
  padding-left: 60px;
}

.bus-layout {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  width: 250px;
  background: linear-gradient(180deg, #222 60%, #181818 100%);
  border: 5px solid #1976d2;
  border-radius: 32px 32px 40px 40px;
  box-shadow: 0 8px 32px #0006;
  position: relative;
  min-height: 700px;
  align-items: center;
  margin: 0 auto;
  overflow: hidden;
}

.bus-aisle-bg {
  position: absolute;
  left: 50%;
  top: 75px;
  transform: translateX(-50%);
  width: 32px;
  height: 780px;
  background: linear-gradient(180deg, #3a3a4a 80%, #5e6e7e 100%);
  border-radius: 22px;
  z-index: 1;
  box-shadow: 0 0 24px #000a;
  border: 2px solid #b3e5fc;
}

.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);
}

.bus-seat.taken {
  cursor: not-allowed;
}

.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;
}

.bus-toilet-row {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.7rem;
}

.toilet {
  width: 100%;
  height: 48px;
  background-color: #2e2e2e;
  border-radius: 0 0 18px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.1);
  text-align: center;
  border-top: none;
}

.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;
}

.silkroad-legend-fixed {
  position: static;
  margin-bottom: 2rem;
  border-radius: 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: white;
  display: flex;
  justify-content: center;
}

.silkroad-legend {
  margin-left: 0;
  width: 340px;
  min-width: 120px;
  flex-shrink: 0;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  min-height: -moz-fit-content;
  min-height: fit-content;
  background: linear-gradient(
    135deg,
    rgba(80, 0, 80, 0.9) 0%,
    rgba(139, 69, 19, 0.9) 100%
  );
  border-radius: 14px;
  padding: 8px 22px;
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.6),
    0px 0px 0px 2px rgba(255, 215, 0, 0.3),
    inset 0px 1px 0px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  font-size: 0.8rem;
  font-weight: 500;
}

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

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

.reserved-spots-list {
  background: rgba(160, 82, 45, 0.3);
  color: #fff;
  border-radius: 12px;
  padding: 10px 16px;
  margin: 12px 0;
  font-size: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.reserved-spot-item {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 2px;
}

.reserved-spots-title {
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 1.08em;
  color: #ffd700;
}

.reserved-name {
  color: #ffccff;
  font-weight: 600;
}

.ticket-box-fixed {
  position: absolute;
  top: 200px;
  right: 10px;
  z-index: 999;
  font-size: 0.85rem;
  font-weight: 500;
  color: white;
}

.ticket-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;
  min-width: 220px;
  max-width: 340px;
}

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

.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: 900px) {
  .silkroad-seating-container {
    padding: 2rem 1rem;
  }

  .silkroad-main-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

  .silkroad-legend {
    width: 90%;
    min-width: 0;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    font-size: 0.95em;
    margin-bottom: 8px;
    margin-left: 0;
  }

  .attendees-list {
    padding: 0.8rem;
  }

  .attendees-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.2rem;
    max-height: 120px;
  }

  .attendee-item {
    padding: 0.2rem 0.3rem;
    font-size: 0.7rem;
    min-height: 1.8rem;
  }

  .payment-status {
    font-size: 0.6rem;
  }

  .status-icon {
    font-size: 0.7rem;
  }

  .payment-legend {
    gap: 0.8rem;
    font-size: 0.65rem;
  }

  .attendee-name {
    font-size: 0.7rem;
  }

  .attendee-name.expanded {
    font-size: 0.65rem;
    line-height: 1.1;
  }

  .expand-hint {
    font-size: 0.6rem;
  }

  .you-star {
    font-size: 0.7rem;
  }

  .contribution-legend-fixed {
    position: static;
    margin-bottom: 10px;
    right: 0;
    top: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
  }

  .contribution-legend {
    width: 90%;
    min-width: 0;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    font-size: 0.95em;
    margin-bottom: 8px;
    margin-right: 0;
  }

  .common-items-grid {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .contribution-checkbox {
    padding: 0.2rem;
    gap: 0.3rem;
  }

  .checkmark {
    width: 12px;
    height: 12px;
  }

  .item-text {
    font-size: 0.7rem;
  }

  .contribution-input-group {
    flex-direction: column;
    gap: 0.8rem;
  }

  .contribution-input {
    font-size: 1rem;
    padding: 0.8rem;
  }

  .contribution-submit-btn {
    font-size: 1rem;
    padding: 0.8rem 1rem;
    width: 100%;
  }

  .contribution-buttons {
    flex-direction: column;
    gap: 0.8rem;
  }

  .contribution-confirm-btn,
  .contribution-reset-btn {
    width: 100%;
    min-width: auto;
  }

  .contributor-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .contribution-count {
    align-self: flex-end;
  }

  .contribution-items-list {
    gap: 0.4rem;
  }

  .contribution-item-tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
  }

  .popup-card {
    max-width: 70%;
    padding: 0.5rem 0.4rem;
    margin: 0.1rem;
    max-height: 45vh;
    overflow-y: auto;
  }

  .popup-card h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
  }

  .popup-card p {
    font-size: 0.75rem;
    margin-bottom: 0.3rem;
  }

  .contribution-confirm-list {
    padding: 0.4rem;
    margin: 0.3rem 0;
  }

  .contribution-confirm-item {
    padding: 0.15rem 0;
    gap: 0.25rem;
  }

  .contribution-confirm-icon {
    width: 14px;
    height: 14px;
    font-size: 0.9rem;
  }

  .contribution-confirm-name {
    font-size: 0.8rem;
  }

  .popup-buttons {
    flex-direction: row;
    gap: 0.5rem;
    margin-top: 0.4rem;
  }

  .confirm-button,
  .cancel-button {
    flex: 1;
    min-width: auto;
    padding: 0.4rem 0.6rem;
    font-size: 0.8rem;
  }

  .popup-overlay {
    padding: 0.3rem;
    align-items: flex-start;
    padding-top: 4rem;
  }

  .contributions-list {
    max-height: 120px;
  }

  .contribution-item-display {
    font-size: 0.7rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }

  .contribution-item {
    text-align: left;
    margin-left: 0;
  }

  .contribution-box {
    position: static;
    transform: none;
    max-width: 100%;
    margin: 1rem 0;
    right: auto;
    top: auto;
  }

  .contribution-checkbox {
    padding: 0.2rem;
    gap: 0.4rem;
  }

  .checkmark {
    width: 14px;
    height: 14px;
  }

  .item-text {
    font-size: 0.8rem;
  }
  .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;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    width: 100%;
  }
}

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  z-index: 3000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  box-sizing: border-box;
}

.popup-card {
  background: linear-gradient(
    135deg,
    rgba(80, 0, 80, 0.95) 0%,
    rgba(139, 69, 19, 0.95) 100%
  );
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 0 3px rgba(255, 215, 0, 0.4);
  color: #fff;
  text-align: center;
  max-width: 450px;
  width: 100%;
  font-family: "Segoe UI", sans-serif;
  border: 2px solid rgba(255, 215, 0, 0.3);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
}

.popup-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 215, 0, 0.1) 50%,
    transparent 70%
  );
  pointer-events: none;
}

.popup-card h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #ffd700;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.6);
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.popup-card p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  color: #ffed4e;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 1;
}

.anonymous-checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.95rem;
  margin-bottom: 1.8rem;
}

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

.confirm-button,
.cancel-button {
  padding: 1rem 2rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  min-width: 160px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.confirm-button {
  background: linear-gradient(145deg, #43a047, #2e7d32);
  color: #fff;
  border: 2px solid rgba(67, 160, 71, 0.3);
}

.confirm-button:hover {
  background: linear-gradient(145deg, #2e7d32, #43a047);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(67, 160, 71, 0.4);
}

.cancel-button {
  background: linear-gradient(145deg, #b71c1c, #d32f2f);
  color: #fff;
  border: 2px solid rgba(183, 28, 28, 0.3);
}

.cancel-button:hover {
  background: linear-gradient(145deg, #d32f2f, #b71c1c);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(183, 28, 28, 0.4);
}

.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;
}

.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);
}

.save-confirmation {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 4000;
  animation: slideInRight 0.3s ease-out;
}

.save-confirmation-content {
  background: linear-gradient(135deg, #43a047, #2e7d32);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(67, 160, 71, 0.4);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.save-confirmation-icon {
  font-size: 1.2rem;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.save-confirmation-text {
  font-size: 0.95rem;
  font-weight: 600;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.silkroad-payment-container {
  position: relative;
  padding: 4rem 1rem;
  background: radial-gradient(
      circle at center,
      rgba(60, 0, 60, 0.9) 0%,
      rgba(100, 0, 100, 0.9) 50%,
      rgba(139, 69, 19, 0.9) 80%,
      rgba(60, 0, 60, 0.9) 100%
    ),
    linear-gradient(
      135deg,
      rgba(34, 139, 34, 0.3) 0%,
      rgba(255, 215, 0, 0.2) 50%,
      rgba(160, 82, 45, 0.3) 100%
    );
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  font-family: "Segoe UI", sans-serif;
  overflow: hidden;
}

.silkroad-payment-title {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 2rem;
  text-align: center;
  background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
}

.checkout-unified-form {
  width: 100%;
  max-width: 960px;
  background: linear-gradient(
    135deg,
    rgba(80, 0, 80, 0.9) 0%,
    rgba(139, 69, 19, 0.9) 100%
  );
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.6),
    0px 0px 0px 2px rgba(255, 215, 0, 0.3),
    inset 0px 1px 0px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.silkroad-payment-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

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

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

  .silkroad-payment-box {
    padding-left: 2rem;
    border-left: 1px solid rgba(255, 215, 0, 0.3);
  }
}

.silkroad-ticket-summary {
  flex: 1;
  background: linear-gradient(
    135deg,
    rgba(160, 82, 45, 0.9) 0%,
    rgba(139, 69, 19, 0.9) 100%
  );
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.6),
    0px 0px 0px 2px rgba(255, 215, 0, 0.3),
    inset 0px 1px 0px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.pricing-breakdown {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  margin-bottom: 1.5rem;
}

.pricing-breakdown p {
  margin: 0.5rem 0;
  color: #ffed4e;
  font-size: 1rem;
}

.discount-note {
  color: #ffd700 !important;
  font-size: 1.1rem !important;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
}

.silkroad-donation-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.silkroad-donation-group label {
  color: #ffd700;
  font-weight: 500;
  font-size: 1rem;
}

.silkroad-donation-group input {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 10px;
  padding: 0.9rem 1rem;
  color: #fff;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.silkroad-donation-group input:focus {
  outline: none;
  border-color: #ffd700;
  box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

.tooltip-icon-silkroad {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-left: 6px;
  width: 18px;
  height: 18px;
  background-color: #ffd700;
  color: #8b4513;
  border-radius: 50%;
  font-size: 0.9rem;
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.tooltip-icon-silkroad::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #ffd700;
  color: #8b4513;
  padding: 0.5rem;
  border-radius: 8px;
  white-space: nowrap;
  font-size: 0.8rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 10;
}

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

.silkroad-payment-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.silkroad-agreement {
  margin-top: 1.2rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  color: #ffed4e;
  gap: 0.75rem;
  line-height: 1.4;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.silkroad-agreement input[type="checkbox"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid #ffd700;
  position: relative;
  z-index: 1;
  cursor: pointer;
  flex-shrink: 0;
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
  margin-top: 0;
}

.silkroad-agreement input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

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

.silkroad-checkbox-error {
  border-color: #ff4c4c !important;
}

.silkroad-error-msg {
  color: #ff4c4c;
  font-size: 1rem;
  text-align: center;
}

.silkroad-submit-btn {
  padding: 1rem 2rem;
  font-size: 1.2rem;
  font-weight: bold;
  background: linear-gradient(145deg, rgb(160, 82, 45), #d2691e);
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.5),
    0px 0px 0px 2px rgba(255, 215, 0, 0.3);
}

.silkroad-submit-btn:hover {
  background: linear-gradient(145deg, #d2691e, #cd853f);
  transform: translateY(-6px);
  box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.6),
    0px 0px 0px 3px rgba(255, 215, 0, 0.5);
}

.silkroad-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

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

.counter-button {
  background: linear-gradient(145deg, #9932cc, #8a2be2);
  color: #fff;
  border: none;
  padding: 0.4rem 0.9rem;
  font-size: 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4);
  transition: background 0.3s ease;
}

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

.attendee-number {
  font-size: 2rem;
  font-weight: bold;
  color: #ffccff;
}

.add-attendee-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: #ffccff;
}

.checkout-ticket-info {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 10px;
  font-size: 1rem;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

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

.checkout-input-group input {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 8px;
  padding: 0.9rem 1rem;
  color: #fff;
  font-size: 1rem;
}

.checkout-input-group input:focus {
  outline: 2px solid #8a2be2;
}

.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-color: #9932cc;
  color: white;
  border-radius: 50%;
  font-size: 0.9rem;
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.tooltip-icon-pay::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #9932cc;
  color: white;
  padding: 0.5rem;
  border-radius: 8px;
  white-space: nowrap;
  font-size: 0.8rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 10;
}

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

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

.checkout-stripe-box {
  background-color: white;
  border-radius: 8px;
  padding: 1rem;
}

.checkout-agreement {
  margin-top: 1.2rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  color: #ffccff;
  gap: 0.75rem;
  line-height: 1.4;
}

.checkout-agreement input[type="checkbox"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid #8a2be2;
  position: relative;
  z-index: 1;
  cursor: pointer;
  flex-shrink: 0;
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
  margin-top: 0;
}

.checkout-agreement input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkout-submit-btn {
  padding: 1rem 2rem;
  font-size: 1.2rem;
  font-weight: bold;
  background: linear-gradient(145deg, #9932cc, #8a2be2);
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  width: 100%;
}

.checkout-submit-btn:hover {
  background: linear-gradient(145deg, #8a2be2, #9932cc);
  transform: translateY(-3px);
}

.checkout-error-msg {
  color: #ff4c4c;
  font-size: 1rem;
  text-align: center;
}

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

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

@media (max-width: 767px) {
  .checkout-ticket-summary,
  .checkout-payment-box {
    padding: 0;
    border: none;
  }
}

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;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  border: 2px solid transparent;
  transition: border 0.2s;
}

.checkout-input-group input[type="number"]:focus {
  border: 2px solid #8a2be2;
}

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

.payment-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(
      circle at center,
      rgba(60, 0, 60, 0.95) 0%,
      rgba(100, 0, 100, 0.95) 50%,
      rgba(139, 69, 19, 0.95) 80%,
      rgba(60, 0, 60, 0.95) 100%
    ),
    linear-gradient(
      135deg,
      rgba(34, 139, 34, 0.4) 0%,
      rgba(255, 215, 0, 0.3) 50%,
      rgba(160, 82, 45, 0.4) 100%
    );
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
}

.payment-loader {
  position: relative;
  width: 100px;
  height: 100px;
  margin-bottom: 2rem;
}

.payment-loader::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 4px solid rgba(255, 215, 0, 0.2);
  border-top: 4px solid #ffd700;
  border-radius: 50%;
  animation: silkroad-spin 1.2s linear infinite;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.4),
    inset 0 0 25px rgba(255, 215, 0, 0.1);
}

.payment-loader::after {
  content: "🍂";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  animation: silkroad-bounce 1.5s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
}

@keyframes silkroad-spin {
  0% {
    transform: rotate(0deg);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.4),
      inset 0 0 25px rgba(255, 215, 0, 0.1);
  }
  50% {
    box-shadow: 0 0 35px rgba(255, 215, 0, 0.6),
      inset 0 0 35px rgba(255, 215, 0, 0.2);
  }
  100% {
    transform: rotate(360deg);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.4),
      inset 0 0 25px rgba(255, 215, 0, 0.1);
  }
}

@keyframes silkroad-bounce {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.checkmark-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #43a047, #2e7d32);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 30px rgba(67, 160, 71, 0.4), 0 0 0 4px rgba(255, 215, 0, 0.3),
    inset 0 0 20px rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 215, 0, 0.2);
  position: relative;
}

.payment-success-checkmark {
  font-size: 3.2rem;
  color: white;
  font-weight: bold;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
  animation: silkroad-pop 0.5s ease-out;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  outline: none;
}

@keyframes silkroad-pop {
  0% {
    transform: scale(0) rotate(-180deg);
    opacity: 0;
  }
  50% {
    transform: scale(1.2) rotate(0deg);
    opacity: 0.8;
  }
  80% {
    transform: scale(0.9) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .silkroad-payment-container {
    padding: 2rem 1rem;
    overflow-x: hidden;
  }

  .silkroad-payment-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .checkout-unified-form {
    padding: 1.5rem 1rem;
    background: linear-gradient(
      135deg,
      rgba(80, 0, 80, 0.9) 0%,
      rgba(139, 69, 19, 0.9) 100%
    );
    border-radius: 20px;
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.6),
      0px 0px 0px 2px rgba(255, 215, 0, 0.3),
      inset 0px 1px 0px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    width: 100%;
    box-sizing: border-box;
  }

  .silkroad-payment-section {
    flex-direction: column;
    gap: 1.5rem;
  }

  .silkroad-ticket-summary,
  .silkroad-payment-box {
    padding: 1.5rem;
    border: none;
    background: linear-gradient(
      135deg,
      rgba(160, 82, 45, 0.9) 0%,
      rgba(139, 69, 19, 0.9) 100%
    );
    border-radius: 20px;
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.6),
      0px 0px 0px 2px rgba(255, 215, 0, 0.3),
      inset 0px 1px 0px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    width: 100%;
    box-sizing: border-box;
  }

  .silkroad-section-header {
    font-size: 1.25rem;
    text-align: center;
    color: #ffd700;
    margin-bottom: 1rem;
  }

  .pricing-breakdown {
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
  }

  .pricing-breakdown p {
    font-size: 0.9rem;
    margin: 0.4rem 0;
  }

  .discount-note {
    font-size: 1rem !important;
  }

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

  .add-attendee-text {
    font-size: 1rem;
    font-weight: 500;
    color: #ffccff;
    text-align: center;
  }

  .attendee-number {
    font-size: 1.4rem;
    font-weight: bold;
    color: #fff;
  }

  .counter-button {
    font-size: 1rem;
    padding: 0.4rem 0.9rem;
    border-radius: 8px;
    background: linear-gradient(145deg, #9932cc, #8a2be2);
    color: #fff;
    border: none;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.3);
  }

  .checkout-ticket-info {
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem;
    border-radius: 8px;
    line-height: 1.4;
  }

  .silkroad-donation-group {
    margin-top: 1rem;
  }

  .silkroad-donation-group input {
    width: 100%;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    color: #fff;
  }

  .silkroad-donation-group label {
    color: #ffd700;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

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

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

  .silkroad-submit-btn {
    width: 100%;
    padding: 0.9rem 1.2rem;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 30px;
    background: linear-gradient(145deg, rgb(160, 82, 45), #d2691e);
    color: #fff;
    border: none;
    text-align: center;
  }

  .silkroad-agreement {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    font-size: 0.85rem;
    color: #ffed4e;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    line-height: 1.4;
  }

  .silkroad-agreement input[type="checkbox"] {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    margin: 10;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #ffd700;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
  }

  .silkroad-agreement input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 5px;
    width: 4px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }

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

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

  .silkroad-error-msg {
    font-size: 0.9rem;
    text-align: center;
    color: #ff4c4c;
  }

  .payment-overlay {
    font-size: 1rem;
    padding: 1rem;
    text-align: center;
  }

  .payment-loader {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
  }

  .payment-loader::after {
    font-size: 1.5rem;
  }

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

  .payment-success-checkmark {
    font-size: 2.5rem;
  }
}
.silkroad-account-container {
  position: relative;
  padding: 4rem 1rem;
  background: radial-gradient(
      circle at center,
      rgba(60, 0, 60, 0.9) 0%,
      rgba(100, 0, 100, 0.9) 50%,
      rgba(139, 69, 19, 0.9) 80%,
      rgba(60, 0, 60, 0.9) 100%
    ),
    linear-gradient(
      135deg,
      rgba(34, 139, 34, 0.3) 0%,
      rgba(255, 215, 0, 0.2) 50%,
      rgba(160, 82, 45, 0.3) 100%
    );
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  text-align: center;
}

.silkroad-account-content-box {
  background: linear-gradient(
    135deg,
    rgba(80, 0, 80, 0.9) 0%,
    rgba(139, 69, 19, 0.9) 100%
  );
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.6),
    0px 0px 0px 2px rgba(255, 215, 0, 0.3),
    inset 0px 1px 0px rgba(255, 255, 255, 0.1);
  max-width: 800px;
  width: 100%;
  color: #fff;
  border: 1px solid rgba(255, 215, 0, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.silkroad-account-heading {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
  background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.silkroad-account-cards {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.silkroad-account-card {
  background: linear-gradient(
    135deg,
    rgba(160, 82, 45, 0.9) 0%,
    rgba(139, 69, 19, 0.9) 100%
  );
  padding: 1.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.4),
    0px 0px 0px 1px rgba(255, 215, 0, 0.2);
  text-align: left;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.silkroad-account-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.5),
    0px 0px 0px 2px rgba(255, 215, 0, 0.4);
  background: linear-gradient(
    135deg,
    rgba(160, 82, 45, 1) 0%,
    rgba(139, 69, 19, 1) 100%
  );
}

.account-name {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  color: #ffd700;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
}

.account-id {
  font-size: 1rem;
  color: #ffed4e;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
}

.silkroad-account-button {
  background: linear-gradient(145deg, rgb(160, 82, 45), #d2691e);
  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, 215, 0, 0.3);
  transition: all 0.3s ease;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
}

.silkroad-account-button:hover {
  background: linear-gradient(145deg, #d2691e, #cd853f);
  transform: translateY(-6px);
  box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.6),
    0px 0px 0px 3px rgba(255, 215, 0, 0.5);
}

.silkroad-loading-spinner {
  width: 180px;
  height: 180px;
  border: 8px solid rgba(255, 215, 0, 0.2);
  border-top: 8px solid #ffd700;
  border-radius: 50%;
  animation: spin2 1.2s linear infinite;
  margin: 2rem auto;
}

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

@media (max-width: 767px) {
  .silkroad-account-container {
    padding: 2rem 1rem;
    align-items: center;
  }

  .silkroad-account-content-box {
    padding: 2rem 1.2rem;
    border-radius: 10px;
  }

  .silkroad-account-heading {
    font-size: 2rem;
  }

  .silkroad-account-tagline {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }

  .silkroad-account-cards {
    gap: 1rem;
  }

  .silkroad-account-card {
    padding: 1.2rem 1.5rem;
  }

  .account-name {
    font-size: 1.1rem;
  }

  .account-id {
    font-size: 0.9rem;
  }

  .silkroad-account-button {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
  }
}

.silkroad-error-message {
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
}

.silkroad-error-message p {
  color: #fca5a5;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.silkroad-retry-button {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 12px rgba(220, 38, 38, 0.3);
}

.silkroad-retry-button:hover {
  background: linear-gradient(135deg, #b91c1c, #991b1b);
  transform: translateY(-1px);
  box-shadow: 0px 6px 16px rgba(220, 38, 38, 0.4);
}
#birds {
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }