.asnlv-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* section title + rating countdown */
.asnlv-section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

/* rating countdown (next to Now Performing) */
.asnlv-countdown {
    padding: 4px 10px;
    border-radius: 999px;
    background: #222;
    color: #fff;
    font-size: 13px;
    white-space: nowrap;
}

.asnlv-live-video {
    margin-bottom: 20px;
}

/* Responsive YT container */
.asnlv-player-inner {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 10px;
}
.asnlv-player-inner iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Pre-event header (2 columns: logo/meta + countdown) */
.asnlv-pre-event-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
    padding: 10px 16px;
    border-radius: 0 0 8px 8px;
    background: #28264d;
}

.asnlv-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0; /* prevent overflow */
    color:#fff;
}

.asnlv-event-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 6px;
}

.asnlv-event-meta {
    flex: 1;
    min-width: 0;
}

.asnlv-event-title {
    font-weight: 600;
    margin-bottom: 2px;
}

.asnlv-event-datetime {
    font-size: 13px;
    margin-bottom: 4px;
}

/* right side: Starts in + big digits */
.asnlv-header-right {
    text-align: right;
    white-space: nowrap;
}

.asnlv-count-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.asnlv-count-value {
    font-family: "SF Mono", "Roboto Mono", Menlo, Monaco, Consolas, "Liberation Mono", monospace;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #ffffff; /* golden-ish */
}

/* JS fills this with 003:23:52:45 etc */
.asnlv-event-countdown-time {
    display: inline-block;
}

/* Stack on mobile */
@media (max-width: 600px) {
    .asnlv-pre-event-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .asnlv-header-right {
        text-align: left;
    }
}


/* Coming soon / slider container */
.asnlv-comingsoon-inner {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
}

/* Slider */
.asnlv-team-slider {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.asnlv-team-slider .asnlv-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
}
.asnlv-team-slider .asnlv-slide.asnlv-slide-active {
    opacity: 1;
}
.asnlv-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay: main "Stay tuned for live" center, team name bottom center */
.asnlv-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.2));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* main text center */
    padding: 18px;
    text-align: center;
}
.asnlv-slide-main-text {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    text-shadow: 0 3px 8px rgba(0,0,0,0.8);
    margin-bottom: 40px; /* space above team name */
}
.asnlv-slide-team-text {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-shadow: 0 2px 6px rgba(0,0,0,0.8);
    text-transform: uppercase;
}

/* Placeholder */
.asnlv-comingsoon-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    text-align: center;
    padding: 20px;
}

/* Now / Next */
.asnlv-now-next {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}
@media (max-width: 768px) {
    .asnlv-now-next { grid-template-columns: 1fr; }
}
.asnlv-current-team,
.asnlv-next-team {
    background: #f7f7f7;
    padding: 15px;
    border-radius: 8px;
    
}

.asnlv-team-card {
    display: flex;
    gap: 12px;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.07);
}
.asnlv-team-card .asnlv-team-image img {
    width: 120px;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}
.asnlv-team-info {
    flex: 1;
}
.asnlv-team-name {
    font-weight: 600;
    margin-bottom: 6px;
}
.asnlv-tag {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 999px;
    background: #ffe6b3;
    font-size: 12px;
}
.asnlv-tag-closed {
    background: #ddd;
}

/* rating stars */
.asnlv-rating-label {
    font-size: 13px;
    margin-bottom: 4px;
}
.asnlv-rating-stars {
    display: inline-flex;
    gap: 4px;
}
.asnlv-star-btn {
    border: none;
    background: #eee;
    color: #f5a623;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
}
.asnlv-star-btn:hover {
    background: #ddd;
}
.asnlv-star-btn.asnlv-star-active {
    background: #f5a623;
    color: #fff;
}

/* Buttons */
.asnlv-btn {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-size: 14px;
}
.asnlv-btn-primary {
    background: #e60000;
    color: #fff;
}
.asnlv-btn-secondary {
    background: #ddd;
    color: #000;
}

/* Modal */
.asnlv-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.asnlv-modal {
    background: #fff;
    max-width: 400px;
    width: 90%;
    border-radius: 10px;
    padding: 20px;
}
.asnlv-field {
    margin-bottom: 10px;
}
.asnlv-field label {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
}
.asnlv-field input[type="text"],
.asnlv-field input[type="tel"] {
    width: 100%;
    padding: 7px 9px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 14px;
}
.asnlv-field-checkbox label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}
.asnlv-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 10px;
}
.asnlv-msg {
    margin-top: 8px;
    font-size: 13px;
}
.asnlv-msg-error {
    color: #b30000;
}
.asnlv-msg-success {
    color: #0b7a0b;
}

/* Simple toast for rating messages */
.asnlv-toast {
    position: fixed;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.85);
    color: #fff;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    z-index: 9999;
}
