body.has-bg-image {
    background-color: var(--color-bg) !important;
    background-position: top center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
}

#app {
    gap: 40px !important;
    padding-top: 36px;
    padding-bottom: 48px;
}

#root {
    display: flex;
    flex-direction: column;
    gap: 36px;
    flex: 1;
}

.card-border {
    background: linear-gradient(135deg, var(--color-accent), rgba(255,255,255,0.15));
    padding: 1.5px;
    border-radius: 16px;
}

.card-border.card-banner {
    padding: 1px;
}

.card-banner .card-inner {
    padding: 0;
}

.card-inner {
    background: var(--color-primary);
    border-radius: 14px;
    overflow: hidden;
    padding: 16px;
}

.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    aspect-ratio: 2/1;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
}

.carousel-slide img,
.carousel-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 14px 0;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    padding: 0;
}

.carousel-dot.active {
    background: var(--color-accent);
    transform: scale(1.4);
    box-shadow: 0 0 8px var(--color-accent);
}

.btn-accent {
    background: linear-gradient(135deg, var(--color-accent), #e69500);
    color: #000;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-accent:hover {
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.5);
    transform: translateY(-2px);
}

.btn-accent:active {
    transform: translateY(0);
}

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

.countdown-digit {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(180deg, var(--color-accent), #e69500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.countdown-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.5;
    margin-top: 8px;
}

.section-title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 12px;
}

#app input[type="text"] {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.w-table {
    border-collapse: separate;
    border-spacing: 0;
}

.w-table th {
    background: rgba(0, 0, 0, 0.3);
    padding: 14px 16px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-bottom: 2px solid var(--color-accent);
    text-align: left;
}

.w-table td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.85rem;
}

.w-table tr:hover td {
    background: rgba(251, 191, 36, 0.05);
}

.ticket-card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(251, 191, 36, 0.25);
    font-family: 'Courier New', monospace;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 6px;
    padding: 18px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    color: var(--color-text);
}

.ticket-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 0 24px rgba(251, 191, 36, 0.2);
    transform: scale(1.02);
}

.shimmer {
    background: linear-gradient(90deg,
        rgba(255,255,255,0.03) 25%,
        rgba(255,255,255,0.08) 50%,
        rgba(255,255,255,0.03) 75%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

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

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

.fade-in { animation: fadeInUp 0.6s ease forwards; }
.fade-delay-1 { animation-delay: 0.1s; opacity: 0; }
.fade-delay-2 { animation-delay: 0.2s; opacity: 0; }
.fade-delay-3 { animation-delay: 0.3s; opacity: 0; }
.fade-delay-4 { animation-delay: 0.4s; opacity: 0; }

.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    animation: popupFadeIn 0.3s ease;
}

.popup-overlay.closing {
    animation: popupFadeOut 0.25s ease forwards;
}

.popup-container {
    position: relative;
    max-width: 500px;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 1.5px solid var(--color-accent);
    box-shadow: 0 0 40px rgba(251, 191, 36, 0.25);
    animation: popupScaleIn 0.3s ease;
}

.popup-container img {
    width: 100%;
    height: auto;
    display: block;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    padding: 0;
    line-height: 1;
}

.popup-close:hover {
    background: var(--color-accent);
    color: #000;
    transform: scale(1.1);
}

@keyframes popupFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes popupFadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes popupScaleIn {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.text-accent { color: var(--color-accent); }
.bg-surface { background-color: var(--color-bg); }
.text-txt { color: var(--color-text); }
