/* ============================================
   SNG WRESTLING BASH - COMPONENTS
   Buttons, cards, modals, UI elements
   ============================================ */

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 14px 28px;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-size: var(--text-base);
    letter-spacing: 3px;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    text-decoration: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: width 0.5s ease, height 0.5s ease;
    transform: translate(-50%, -50%);
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

.btn-fire {
    background: linear-gradient(135deg, var(--color-fire-red), var(--color-fire-orange));
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(255, 51, 51, 0.3);
}

.btn-fire:hover {
    background: linear-gradient(135deg, #ff4444, #ff7711);
    box-shadow: 0 6px 25px rgba(255, 51, 51, 0.5);
    transform: translateY(-2px);
}

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

.btn-gold {
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
    color: #1a1100;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-gold:hover {
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
}

.btn-google {
    background: var(--color-bg-card);
    color: var(--color-white);
    border: 1px solid var(--color-gray-dark);
}

.btn-google:hover {
    background: var(--color-bg-card-hover);
    border-color: var(--color-gray);
}

.btn-google svg {
    flex-shrink: 0;
}

.btn-mega {
    padding: 18px 40px;
    font-size: var(--text-xl);
    letter-spacing: 4px;
    border-radius: var(--radius-lg);
}

.btn-full {
    width: 100%;
}

.btn-small {
    padding: var(--space-sm) var(--space-md);
    font-size: var(--text-sm);
    letter-spacing: 2px;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-fire-red);
    color: var(--color-fire-red);
}

.btn-outline:hover {
    background: var(--color-fire-red);
    color: var(--color-white);
}

.btn-vote {
    padding: 16px 32px;
    font-size: 1.2rem;
    border-radius: var(--radius-lg);
    position: relative;
}

.btn-vote.voted {
    background: var(--color-success);
    color: #003300;
    pointer-events: none;
}

.btn-vote:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Button sparks */
.btn-sparks {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    pointer-events: none;
}

/* ============================================
   WRESTLER CARDS
   ============================================ */
.wrestler-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-gray-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-medium);
    position: relative;
}

.wrestler-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    transition: border-color var(--transition-medium);
    z-index: 1;
    pointer-events: none;
}

.wrestler-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-fire);
}

.wrestler-card:hover::before {
    border-color: var(--color-fire-orange);
}

.wrestler-card-photo {
    width: 100%;
    height: 0;
    padding-bottom: 133.33%; /* 4/3 aspect ratio fallback */
    aspect-ratio: 3/4;
    object-fit: cover;
    background: var(--color-gray-dark);
    position: relative;
}

@supports (aspect-ratio: 3/4) {
    .wrestler-card-photo {
        height: auto;
        padding-bottom: 0;
    }
}

.wrestler-card-photo-placeholder {
    width: 100%;
    height: 0;
    padding-bottom: 133.33%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--color-gray-dark), #222);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--color-gray);
}

.wrestler-card-info {
    padding: var(--space-md);
    position: relative;
}

.wrestler-card-name {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    letter-spacing: 2px;
    color: var(--color-white);
    margin-bottom: var(--space-xs);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wrestler-card-real-name {
    font-size: var(--text-xs);
    color: var(--color-gray);
    letter-spacing: 1px;
    margin-bottom: var(--space-sm);
}

.wrestler-card-overall {
    position: absolute;
    top: -20px;
    right: 12px;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #1a1100;
    border: 2px solid var(--color-gold);
    box-shadow: var(--shadow-gold);
}

.wrestler-card-gender {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 28px;
    height: 28px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    z-index: 2;
}

.wrestler-card-stats-mini {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.stat-mini {
    font-size: 0.65rem;
    letter-spacing: 1px;
    padding: 2px 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    color: var(--color-gray-light);
}

/* SNG VIP Card */
.sng-vip-card {
    border: 2px solid var(--color-gold) !important;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3), 0 0 40px rgba(255, 215, 0, 0.1);
}
.sng-vip-card:hover {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5), 0 0 60px rgba(255, 215, 0, 0.2);
}
.sng-vip-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-gold), var(--color-fire-orange));
    color: #000;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    letter-spacing: 2px;
    padding: 3px 12px;
    border-radius: 0 0 8px 8px;
    z-index: 3;
    font-weight: bold;
}

/* Referee Card in Roster */
.referee-card {
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
}
.referee-badge-top {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.6rem;
    letter-spacing: 2px;
    padding: 3px 12px;
    border-radius: 0 0 8px 8px;
    z-index: 3;
}
#referee-grid {
    margin-bottom: var(--space-2xl);
}

/* Audio Play Button on Roster Cards */
.roster-audio-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 215, 0, 0.9);
    color: #000;
    font-size: 0.9rem;
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.roster-audio-btn:hover {
    transform: scale(1.15);
    background: var(--color-gold);
}
.roster-audio-btn.playing {
    background: var(--color-fire-orange);
    color: #fff;
    animation: audioPulse 1s infinite;
}
@keyframes audioPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,102,0,0.5); }
    50% { box-shadow: 0 0 0 8px rgba(255,102,0,0); }
}

/* Audio Upload in Profile */
.audio-upload-wrap {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}
.audio-file-name {
    font-size: var(--text-sm);
    color: var(--color-gray);
    font-style: italic;
}
.audio-preview {
    margin-top: var(--space-sm);
}
.audio-preview audio {
    border-radius: 8px;
}

/* ============================================
   ROSTER GRID
   ============================================ */
.roster-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    padding: 0 0 var(--space-xl);
}

.roster-grid.empty-state {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.empty-message {
    text-align: center;
    color: var(--color-gray);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 3px;
}

@media (min-width: 600px) {
    .roster-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-lg);
    }
}

@media (min-width: 900px) {
    .roster-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-lg);
    }
}

/* ============================================
   ROSTER FILTERS
   ============================================ */
.roster-filters {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background: var(--color-bg-card);
    border: 2px solid var(--color-gray-dark);
    border-radius: 100px;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    letter-spacing: 3px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover {
    border-color: var(--color-gray);
}

.filter-btn.active {
    background: var(--color-fire-red);
    border-color: var(--color-fire-red);
    color: var(--color-white);
}

/* ============================================
   MODAL
   ============================================ */
.modal {
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: 5000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.modal-backdrop {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 500px;
    max-height: 85vh;
    overflow-y: auto;
    background: var(--color-bg-card);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    animation: modalSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

@keyframes modalSlideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--color-white);
    font-size: 1.5rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: var(--transition-fast);
}

.modal-close:hover {
    background: rgba(255, 51, 51, 0.3);
}

.modal-wrestler-header {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: linear-gradient(180deg, rgba(139, 0, 0, 0.3), transparent);
}

.modal-wrestler-photo {
    width: 100px;
    height: 130px;
    border-radius: 12px;
    object-fit: cover;
    border: 3px solid var(--color-gold);
    flex-shrink: 0;
}

.modal-wrestler-info {
    flex: 1;
    min-width: 0;
}

.modal-wrestler-info h2 {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    letter-spacing: 2px;
}

.modal-subtext {
    color: var(--color-gray);
    font-size: var(--text-sm);
    margin-top: var(--space-xs);
}

.modal-overall {
    display: inline-block;
    margin-top: var(--space-sm);
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
    color: #1a1100;
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    padding: var(--space-xs) 12px;
    border-radius: 100px;
}

.modal-stats {
    padding: 0 var(--space-lg) var(--space-md);
}

.modal-stat-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-stat-label {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    letter-spacing: 2px;
    color: var(--color-gray-light);
    width: 100px;
    flex-shrink: 0;
}

.modal-stat-bar {
    flex: 1;
    height: 8px;
    background: var(--color-gray-dark);
    border-radius: 4px;
    overflow: hidden;
}

.modal-stat-bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-stat-value {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--color-gold);
    width: 30px;
    text-align: right;
}

.modal-details {
    padding: 0 var(--space-lg) var(--space-lg);
}

.modal-detail-item {
    margin-bottom: var(--space-md);
}

.modal-detail-label {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    letter-spacing: 2px;
    color: var(--color-gold);
    margin-bottom: var(--space-xs);
}

.modal-detail-text {
    color: var(--color-gray-light);
    font-size: var(--text-sm);
}

/* ============================================
   PROFILE
   ============================================ */
.profile-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    padding-bottom: var(--space-2xl);
}

.profile-photo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.profile-photo-frame {
    position: relative;
    width: 180px;
    height: 240px;
    border-radius: 16px;
    overflow: hidden;
    border: 4px solid var(--color-gold);
    box-shadow: var(--shadow-gold);
    cursor: pointer;
}

.profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--color-gray-dark);
}

.profile-photo-overlay {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.profile-photo-frame:hover .profile-photo-overlay {
    opacity: 1;
}

.photo-upload-label {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    letter-spacing: 2px;
    cursor: pointer;
    text-align: center;
}

.profile-overall {
    text-align: center;
}

.overall-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-gold);
    line-height: 1;
}

.overall-label {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    letter-spacing: 4px;
    color: var(--color-gray);
}

.stats-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    letter-spacing: 3px;
    margin-bottom: var(--space-lg);
    margin-top: var(--space-sm);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.stat-slider-group label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.stat-label {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    letter-spacing: 2px;
    color: var(--color-gray-light);
}

.stat-icon {
    font-size: 1rem;
}

.stat-value {
    margin-left: auto;
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-size: var(--text-base);
}

.stat-slider {
    width: 100%;
    appearance: none;
    height: 6px;
    background: var(--color-gray-dark);
    border-radius: 3px;
    outline: none;
    margin-bottom: var(--space-xs);
}

.stat-slider::-webkit-slider-thumb {
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-fire-orange), var(--color-fire-red));
    cursor: pointer;
    border: 2px solid var(--color-white);
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.4);
}

.stat-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-fire-orange), var(--color-fire-red));
    cursor: pointer;
    border: 2px solid var(--color-white);
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.4);
}

.stat-bar {
    height: 4px;
    background: var(--color-gray-dark);
    border-radius: 2px;
    overflow: hidden;
}

.stat-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-fire-red), var(--color-fire-orange), var(--color-gold));
    border-radius: 2px;
    transition: width var(--transition-fast);
}

@media (min-width: 600px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 900px) {
    .profile-layout {
        grid-template-columns: 250px 1fr;
    }

    .modal-content {
        border-radius: var(--radius-lg);
        max-height: 80vh;
    }

    .modal {
        align-items: center;
    }
}

/* ============================================
   AUTH
   ============================================ */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
}

.auth-entrance {
    position: relative;
    width: 100%;
    max-width: 420px;
}

.auth-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-gray-dark);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-lg);
    position: relative;
}

.auth-title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    text-align: center;
    margin-bottom: var(--space-lg);
    letter-spacing: 4px;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin: var(--space-lg) 0;
    color: var(--color-gray);
    font-size: var(--text-xs);
    letter-spacing: 2px;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--color-gray-dark);
}

.auth-switch {
    text-align: center;
    color: var(--color-gray);
    font-size: var(--text-sm);
    margin-top: var(--space-lg);
}

.auth-switch a {
    color: var(--color-fire-orange);
    font-weight: 600;
}

.auth-error {
    background: rgba(255, 51, 51, 0.1);
    border: 1px solid var(--color-danger);
    border-radius: var(--radius);
    padding: var(--space-md);
    margin-top: var(--space-md);
    color: var(--color-danger);
    font-size: var(--text-sm);
    text-align: center;
}

/* ============================================
   MATCH / VOTING
   ============================================ */
.match-arena {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at center, #1a0500 0%, #0a0a0a 70%);
}

.match-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.match-round-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    letter-spacing: 6px;
    color: var(--color-gold);
}

.vs-container {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    width: 100%;
    max-width: 800px;
    flex-wrap: wrap;
    justify-content: center;
}

.vs-wrestler {
    flex: 1;
    min-width: 140px;
    max-width: 250px;
    text-align: center;
}

.vs-wrestler-photo-wrap {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 12px;
    border: 3px solid var(--color-gray-dark);
    transition: var(--transition-medium);
}

.vs-wrestler-left .vs-wrestler-photo-wrap {
    border-color: var(--color-fire-red);
}

.vs-wrestler-right .vs-wrestler-photo-wrap {
    border-color: var(--color-blue);
}

.vs-wrestler-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--color-gray-dark);
}

.vs-wrestler-name {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    letter-spacing: 2px;
    margin-bottom: var(--space-sm);
}

.vs-wrestler-stats {
    margin-bottom: var(--space-md);
    font-size: var(--text-xs);
    color: var(--color-gray);
}

.vs-middle {
    text-align: center;
    flex-shrink: 0;
}

.vs-timer {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: var(--color-fire-orange);
    margin-top: var(--space-sm);
}

/* ============================================
   VOTES REMAINING
   ============================================ */
.votes-remaining-container {
    text-align: center;
    margin-top: var(--space-md);
    padding: var(--space-sm) var(--space-lg);
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid var(--color-gold);
    border-radius: var(--radius);
    font-family: var(--font-heading);
    letter-spacing: 3px;
    font-size: var(--text-base);
}

.votes-remaining-label {
    color: var(--color-gray-light);
}

.votes-remaining-value {
    color: var(--color-gold);
    font-size: 1.1rem;
    margin-left: 6px;
}

/* ============================================
   OWN MATCH NOTICE
   ============================================ */
.own-match-notice {
    text-align: center;
    margin-top: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    border: 2px dashed var(--color-fire-red);
    border-radius: var(--radius);
    color: var(--color-fire-red);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    letter-spacing: 2px;
    background: rgba(255, 51, 51, 0.05);
}

/* ============================================
   REFEREE PANEL
   ============================================ */
.referee-panel {
    width: 100%;
    max-width: 500px;
    margin-top: var(--space-lg);
    padding: var(--space-lg);
    background: rgba(139, 0, 0, 0.1);
    border: 2px solid var(--color-fire-red);
    border-radius: var(--radius-lg);
    text-align: center;
}

.referee-panel-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    letter-spacing: 3px;
    color: var(--color-gold);
    margin-bottom: var(--space-md);
}

.referee-panel-blocked {
    padding: var(--space-md);
    background: rgba(255, 51, 51, 0.15);
    border: 1px solid var(--color-fire-red);
    border-radius: var(--radius);
    color: var(--color-fire-red);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    letter-spacing: 2px;
    margin-bottom: var(--space-md);
}

.referee-pick-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-referee-pick {
    flex: 1;
    min-width: 140px;
    padding: 16px 20px;
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 2px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition-fast);
    color: var(--color-white);
}

.btn-referee-pick-1 {
    background: linear-gradient(135deg, var(--color-fire-red), #cc0000);
}

.btn-referee-pick-2 {
    background: linear-gradient(135deg, var(--color-blue), #3366cc);
}

.btn-referee-pick:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(255, 102, 0, 0.4);
}

.btn-referee-pick:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.referee-decision-made {
    padding: var(--space-md);
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--color-success);
    border-radius: var(--radius);
    color: var(--color-success);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    letter-spacing: 2px;
    margin-top: var(--space-md);
}

/* ============================================
   REFEREE APPROVAL WIDGET
   ============================================ */
.referee-approval-widget {
    width: 100%;
    max-width: 500px;
    margin-top: var(--space-lg);
    padding: var(--space-md) var(--space-lg);
    background: var(--color-bg-card);
    border: 1px solid var(--color-gray-dark);
    border-radius: var(--radius);
}

.approval-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-sm);
}

.approval-label {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    letter-spacing: 2px;
    color: var(--color-gray-light);
}

.approval-percent {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-success);
    letter-spacing: 1px;
}

.approval-bar {
    height: 8px;
    background: var(--color-gray-dark);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: var(--space-md);
}

.approval-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-success), #00cc66);
    border-radius: 4px;
    transition: width 0.5s ease, background 0.5s ease;
}

.approval-bar-fill.low {
    background: linear-gradient(90deg, var(--color-fire-red), var(--color-fire-orange));
}

.approval-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
}

.btn-approve,
.btn-disapprove {
    padding: 10px 24px;
    font-size: 1.3rem;
    border: 2px solid var(--color-gray-dark);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition-fast);
    background: var(--color-bg-card);
}

.btn-approve:hover {
    border-color: var(--color-success);
    background: rgba(0, 255, 136, 0.1);
}

.btn-disapprove:hover {
    border-color: var(--color-fire-red);
    background: rgba(255, 51, 51, 0.1);
}

.btn-approve.selected {
    border-color: var(--color-success);
    background: rgba(0, 255, 136, 0.15);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.2);
}

.btn-disapprove.selected {
    border-color: var(--color-fire-red);
    background: rgba(255, 51, 51, 0.15);
    box-shadow: 0 0 10px rgba(255, 51, 51, 0.2);
}

.approval-voted-notice {
    text-align: center;
    padding: var(--space-sm);
    color: var(--color-success);
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    letter-spacing: 2px;
}

/* Vote Results */
.vote-results {
    width: 100%;
    max-width: 500px;
    margin-top: var(--space-lg);
}

.vote-bar-container {
    display: flex;
    height: 16px;
    background: var(--color-gray-dark);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: var(--space-sm);
}

.vote-bar-fill {
    height: 100%;
    transition: width 0.5s ease;
}

.vote-bar-1 {
    background: linear-gradient(90deg, var(--color-fire-red), var(--color-fire-orange));
}

.vote-bar-2 {
    background: linear-gradient(90deg, var(--color-blue), #5599ff);
}

.vote-counts {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 2px;
}

.vote-counts span:nth-child(2) {
    color: var(--color-gray);
    font-size: 0.75rem;
}

/* ============================================
   LIVE FEED
   ============================================ */
.live-ticker {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: rgba(255, 51, 51, 0.1);
    border: 1px solid var(--color-fire-red);
    border-radius: var(--radius);
    margin-bottom: var(--space-lg);
}

.live-pulse {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-fire-red);
    animation: livePulse 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.live-feed {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.live-event {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--color-bg-card);
    border-radius: var(--radius);
    border-left: 3px solid var(--color-fire-red);
    animation: liveEventIn 0.5s ease;
}

@keyframes liveEventIn {
    from { transform: translateX(-20px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.live-event-time {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    color: var(--color-gray);
    letter-spacing: 1px;
    flex-shrink: 0;
    width: 50px;
}

.live-event-content {
    flex: 1;
}

.live-event-title {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    letter-spacing: 1px;
    margin-bottom: var(--space-xs);
}

.live-event-desc {
    font-size: var(--text-sm);
    color: var(--color-gray-light);
}

/* ============================================
   ADMIN
   ============================================ */
.admin-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    padding-bottom: var(--space-2xl);
}

.admin-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-gray-dark);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

.admin-card h3 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    letter-spacing: 3px;
    margin-bottom: var(--space-md);
    color: var(--color-gold);
}

.admin-section {
    margin-bottom: var(--space-md);
}

.admin-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-top: var(--space-lg);
}

.admin-match-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius);
    margin-bottom: var(--space-sm);
    flex-wrap: wrap;
}

.admin-match-wrestlers {
    flex: 1;
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    letter-spacing: 1px;
    min-width: 150px;
}

.admin-match-status {
    font-size: var(--text-xs);
    letter-spacing: 1px;
    padding: var(--space-xs) 10px;
    border-radius: 100px;
    font-family: var(--font-heading);
}

.status-pending {
    background: rgba(136, 136, 136, 0.2);
    color: var(--color-gray);
}

.status-voting {
    background: rgba(255, 102, 0, 0.2);
    color: var(--color-fire-orange);
}

.status-completed {
    background: rgba(0, 255, 136, 0.2);
    color: var(--color-success);
}

.admin-participant-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-participant-photo {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--color-gray-dark);
}

.admin-participant-name {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    letter-spacing: 1px;
    flex: 1;
}

@media (min-width: 900px) {
    .admin-grid {
        grid-template-columns: 1fr 1fr;
    }

    .admin-card:first-child {
        grid-column: 1 / -1;
    }
}

/* ============================================
   TOURNAMENT STATUS
   ============================================ */
.tournament-status {
    text-align: center;
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
    background: var(--color-bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--color-gray-dark);
}

.tournament-status-text {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    letter-spacing: 3px;
    color: var(--color-gray);
}

.tournament-status.active .tournament-status-text {
    color: var(--color-success);
}

/* ============================================
   HERO RING (CSS decorative)
   ============================================ */
.hero-ring {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%) perspective(600px) rotateX(60deg);
    width: 80%;
    max-width: 500px;
    height: 200px;
    opacity: 0.15;
    pointer-events: none;
}

.ring-mat {
    position: absolute;
    top: 20px; right: 20px; bottom: 20px; left: 20px;
    background: linear-gradient(135deg, #1a1a1a, #222);
    border: 2px solid #333;
}

.ring-post {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--color-gray);
    border-radius: 2px;
}

.ring-post-tl { top: 0; left: 0; }
.ring-post-tr { top: 0; right: 0; }
.ring-post-bl { bottom: 0; left: 0; }
.ring-post-br { bottom: 0; right: 0; }

.ring-ropes {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
}

.rope {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-fire-red);
}

.rope-top { top: 0; }
.rope-mid { top: 50%; }
.rope-bot { bottom: 0; }

/* ============================================
   MASTIKA SHOT OVERLAY
   ============================================ */
.mastika-overlay {
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    backdrop-filter: blur(4px);
}

.mastika-overlay.mastika-entering {
    animation: mastikaFadeIn 0.6s ease;
}

.mastika-overlay.mastika-exiting {
    animation: mastikaFadeOut 0.6s ease forwards;
}

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

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

.mastika-particles-canvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 1;
}

.mastika-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: mastikaSlam 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes mastikaSlam {
    0%   { transform: scale(3) rotate(10deg); opacity: 0; }
    50%  { transform: scale(0.9) rotate(-2deg); }
    100% { transform: scale(1) rotate(0); opacity: 1; }
}

.mastika-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 6vw, 3.5rem);
    letter-spacing: 6px;
    margin-bottom: 16px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}

.mastika-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 4vw, 2rem);
    letter-spacing: 4px;
    color: var(--color-gold);
    margin-top: 20px;
    animation: mastikaSubPulse 1.5s ease-in-out infinite;
}

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

.mastika-desc {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    color: var(--color-gray-light);
    letter-spacing: 2px;
    margin-top: 8px;
    text-transform: uppercase;
}

.mastika-shot-img {
    width: clamp(200px, 50vw, 350px);
    height: auto;
    border-radius: 16px;
    margin: 16px auto;
    display: block;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.4), 0 0 80px rgba(255, 102, 0, 0.2);
    animation: mastikaGlassFloat 3s ease-in-out infinite;
}

/* ---- Frosted Shot Glass (Pure CSS) ---- */
.mastika-glass-wrap {
    display: flex;
    justify-content: center;
    margin: 24px 0 16px;
    animation: mastikaGlassFloat 3s ease-in-out infinite;
}

@keyframes mastikaGlassFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

.mastika-glass {
    position: relative;
    filter: drop-shadow(0 0 25px rgba(200, 230, 255, 0.4))
            drop-shadow(0 0 50px rgba(255, 215, 0, 0.2));
}

/* Shot glass body - small, wide, no stem */
.mastika-glass-body {
    width: 70px;
    height: 90px;
    background: linear-gradient(
        135deg,
        rgba(200, 220, 255, 0.12),
        rgba(255, 255, 255, 0.06),
        rgba(200, 220, 255, 0.1),
        rgba(255, 255, 255, 0.04)
    );
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    border-bottom-width: 3px;
    border-bottom-color: rgba(255, 255, 255, 0.3);
    border-radius: 2px 2px 6px 6px;
    position: relative;
    overflow: hidden;
    box-shadow:
        inset 0 0 20px rgba(200, 230, 255, 0.08),
        inset -3px 0 10px rgba(255, 255, 255, 0.04),
        inset 3px 0 10px rgba(255, 255, 255, 0.02),
        0 4px 15px rgba(0, 0, 0, 0.3),
        0 0 10px rgba(200, 230, 255, 0.12);
}

/* Frost texture on glass */
.mastika-frost {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(255, 255, 255, 0.06), transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(255, 255, 255, 0.04), transparent 40%),
        radial-gradient(ellipse at 40% 80%, rgba(200, 230, 255, 0.05), transparent 40%);
    pointer-events: none;
}

/* Glass highlight shimmer */
.mastika-glass-body::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(
        110deg,
        transparent 30%,
        rgba(255, 255, 255, 0.06) 42%,
        rgba(255, 255, 255, 0.12) 50%,
        rgba(255, 255, 255, 0.06) 58%,
        transparent 70%
    );
    animation: mastikaShimmer 4s ease-in-out infinite;
}

@keyframes mastikaShimmer {
    0%, 100% { transform: translateX(-120%); }
    50%      { transform: translateX(120%); }
}

/* Glass rim highlight */
.mastika-glass-body::after {
    content: '';
    position: absolute;
    top: 0; left: 2px; right: 2px;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.35),
        rgba(255, 255, 255, 0.15),
        rgba(255, 255, 255, 0.35),
        transparent
    );
    border-radius: 1px;
}

/* Liquid inside */
.mastika-liquid {
    position: absolute;
    bottom: 3px;
    left: 3px;
    right: 3px;
    height: 60%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.02),
        rgba(220, 235, 255, 0.06),
        rgba(200, 225, 255, 0.10),
        rgba(210, 230, 255, 0.08)
    );
    border-radius: 0 0 4px 4px;
    overflow: hidden;
}

/* Liquid surface meniscus */
.mastika-liquid::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.18),
        rgba(255, 255, 255, 0.08),
        rgba(255, 255, 255, 0.18),
        transparent
    );
    animation: mastikaLiquidWave 2.5s ease-in-out infinite alternate;
}

@keyframes mastikaLiquidWave {
    0%   { transform: translateX(-4px); }
    100% { transform: translateX(4px); }
}

/* Floating crystals */
.mastika-crystal {
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation: mastikaCrystalFloat 5s ease-in-out infinite;
    box-shadow: 0 0 3px rgba(255, 255, 255, 0.3);
}

.mastika-crystal:nth-child(1) {
    width: 5px; height: 5px;
    left: 15%; bottom: 25%;
    animation-delay: 0s;
}

.mastika-crystal:nth-child(2) {
    width: 3px; height: 3px;
    left: 55%; bottom: 10%;
    animation-delay: 1s;
}

.mastika-crystal:nth-child(3) {
    width: 4px; height: 4px;
    left: 35%; bottom: 45%;
    animation-delay: 2s;
}

.mastika-crystal:nth-child(4) {
    width: 2px; height: 2px;
    left: 65%; bottom: 35%;
    animation-delay: 0.7s;
}

.mastika-crystal:nth-child(5) {
    width: 3px; height: 3px;
    left: 25%; bottom: 60%;
    animation-delay: 1.5s;
}

@keyframes mastikaCrystalFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
    25%      { transform: translateY(-6px) rotate(45deg); opacity: 0.7; }
    50%      { transform: translateY(-3px) rotate(90deg); opacity: 0.5; }
    75%      { transform: translateY(-9px) rotate(135deg); opacity: 0.8; }
}

/* ---- SNG Mastika Button ---- */
.mastika-sng-btn {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 20px auto;
    padding: 18px 32px;
    font-size: 1.4rem;
    font-family: var(--font-heading);
    letter-spacing: 4px;
    background: linear-gradient(135deg, #b8860b, #ffd700, #daa520);
    color: #1a1100;
    border: 2px solid var(--color-gold);
    border-radius: var(--radius-lg);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: mastikaBtnPulse 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4),
                0 0 40px rgba(255, 215, 0, 0.2);
    transition: all 0.2s ease;
}

.mastika-sng-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6),
                0 0 60px rgba(255, 215, 0, 0.3);
}

.mastika-sng-btn:active {
    transform: translateY(0) scale(0.98);
}

@keyframes mastikaBtnPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.4),
                    0 0 40px rgba(255, 215, 0, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.6),
                    0 0 60px rgba(255, 215, 0, 0.3),
                    0 0 80px rgba(255, 215, 0, 0.1);
    }
}

/* ---- Resume Button ---- */
.mastika-resume-btn {
    margin-top: 32px;
    padding: 16px 40px;
    font-size: 1.2rem;
    font-family: var(--font-heading);
    letter-spacing: 3px;
    background: linear-gradient(135deg, #b8860b, #ffd700, #daa520);
    color: #1a1100;
    border: 2px solid var(--color-gold);
    border-radius: var(--radius-lg);
    cursor: pointer;
    animation: mastikaResumePulse 1.5s ease-in-out infinite;
}

@keyframes mastikaResumePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 15px rgba(255, 215, 0, 0.3); }
    50%      { transform: scale(1.05); box-shadow: 0 0 30px rgba(255, 215, 0, 0.5); }
}

/* ============================================
   STAT POOL INDICATOR
   ============================================ */
.stat-pool-indicator {
    background: var(--color-bg-card);
    border: 1px solid var(--color-gray-dark);
    border-radius: var(--radius);
    padding: var(--space-md);
    margin-bottom: var(--space-lg);
}

.stat-pool-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-sm);
}

.stat-pool-label {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    letter-spacing: 3px;
    color: var(--color-gold);
}

.stat-pool-values {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 1px;
    color: var(--color-white);
}

.stat-pool-max {
    color: var(--color-gray);
}

.stat-pool-bar {
    height: 6px;
    background: var(--color-gray-dark);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 6px;
}

.stat-pool-bar-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--color-success), #00cc66);
    transition: width 0.2s ease, background 0.3s ease;
}

.stat-pool-remaining {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    letter-spacing: 2px;
    color: var(--color-gray);
    display: block;
    text-align: right;
}

/* ============================================
   PHOTO OPTIONS (Camera + Upload)
   ============================================ */
.photo-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.photo-option-btn {
    font-size: 0.7rem !important;
    padding: 8px 14px !important;
    letter-spacing: 1px !important;
    min-width: 130px;
    text-align: center;
}

.btn-gold {
    background: linear-gradient(135deg, var(--color-gold), #b8960f);
    color: #111;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.btn-gold:hover {
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.5);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.75rem;
}

/* ============================================
   CAMERA MODAL
   ============================================ */
.camera-modal-content {
    max-width: 420px;
    width: 90vw;
    padding: 24px;
    background: var(--color-bg-card);
    border: 2px solid var(--color-gray-dark);
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 2;
}

.camera-modal-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 16px;
}

.camera-preview-wrap {
    width: 100%;
    aspect-ratio: 1;
    background: #000;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 16px;
    position: relative;
}

.camera-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scaleX(-1);
}

.camera-preview-wrap canvas {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.camera-controls {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.camera-controls .btn {
    font-size: 0.85rem;
    padding: 10px 20px;
    letter-spacing: 2px;
}

/* ============================================
   AVATAR CONTAINER & ANIMATIONS
   ============================================ */
.avatar-container {
    width: 100%;
    max-width: 240px;
    margin: 16px auto 0;
    position: relative;
}

.avatar-container svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

/* Idle breathing animation */
.avatar-body-group {
    animation: avatarBreathe 3s ease-in-out infinite;
    transform-origin: 150px 260px;
}

@keyframes avatarBreathe {
    0%, 100% { transform: scaleY(1) translateY(0); }
    50% { transform: scaleY(1.01) translateY(-1px); }
}

/* Arms subtle sway */
.avatar-arm-left {
    animation: avatarArmSwayL 4s ease-in-out infinite;
    transform-origin: 58px 180px;
}
.avatar-arm-right {
    animation: avatarArmSwayR 4s ease-in-out infinite 0.5s;
    transform-origin: 242px 180px;
}

@keyframes avatarArmSwayL {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(1.5deg); }
}
@keyframes avatarArmSwayR {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(-1.5deg); }
}

/* Morph transitions */
#avatar-torso,
#avatar-trunks,
#avatar-arm-left,
#avatar-arm-right,
#avatar-leg-left,
#avatar-leg-right {
    transition: transform 0.4s ease;
}

/* Sparkle animation for high charisma */
.avatar-sparkle.active {
    animation: avatarSparkle 1.8s ease-in-out infinite;
}

.av-sparkle-1.active { animation-delay: 0s; }
.av-sparkle-2.active { animation-delay: 0.3s; }
.av-sparkle-3.active { animation-delay: 0.6s; }
.av-sparkle-4.active { animation-delay: 0.9s; }
.av-sparkle-5.active { animation-delay: 1.2s; }
.av-sparkle-6.active { animation-delay: 1.5s; }

@keyframes avatarSparkle {
    0%, 100% { opacity: 0; transform: scale(0.3); }
    50% { opacity: 0.9; transform: scale(1.2); }
}

/* Head photo 3D effect */
.avatar-head-img-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    transform: perspective(200px) rotateX(5deg);
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.6));
}

.avatar-head-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Cape sway animation */
.avatar-cape-left,
.avatar-cape-right {
    animation: avatarCapeSway 5s ease-in-out infinite;
    transform-origin: top center;
}

.avatar-cape-right {
    animation-delay: 0.5s;
}

@keyframes avatarCapeSway {
    0%, 100% { transform: skewX(0deg); }
    25% { transform: skewX(-2deg); }
    75% { transform: skewX(2deg); }
}

/* Responsive */
@media (min-width: 900px) {
    .avatar-container {
        max-width: 220px;
    }
}

/* ============================================
   LIVE MATCH BANNER
   ============================================ */
.live-match-banner {
    background: linear-gradient(180deg, #0d0d0d 0%, #111 50%, #0a0a0a 100%);
    border-bottom: 3px solid var(--color-fire-red);
    padding: 16px;
    padding-top: calc(var(--nav-height, 60px) + 16px);
    position: relative;
    overflow: hidden;
}

.live-timer-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 16px;
    background: rgba(255, 51, 51, 0.1);
    border: 1px solid rgba(255, 51, 51, 0.3);
    border-radius: var(--radius, 8px);
    margin-bottom: 16px;
}

.live-pulse-dot {
    width: 10px;
    height: 10px;
    background: var(--color-fire-red);
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255, 51, 51, 0.6); }
    50% { opacity: 0.6; box-shadow: 0 0 0 8px rgba(255, 51, 51, 0); }
}

.live-timer-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: var(--color-fire-red);
}

.live-timer-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-fire-orange);
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(255, 102, 0, 0.4);
}

/* VS Container */
.live-vs-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 12px 0;
}

.live-vs-wrestler {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.live-vs-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-gold);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.live-vs-name {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-align: center;
    color: var(--color-white);
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.live-vs-votes {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.live-vs-middle {
    padding: 0 8px;
}

.live-vs-text {
    font-size: 1.4rem;
    letter-spacing: 4px;
}

/* Vote Bar */
.live-vote-bar-wrap {
    display: flex;
    height: 8px;
    background: var(--color-gray-dark, #333);
    border-radius: 4px;
    overflow: hidden;
    margin: 8px 0 16px;
}

.live-vote-bar-1 {
    background: linear-gradient(90deg, var(--color-fire-red), var(--color-fire-orange));
    transition: width 0.4s ease;
}

.live-vote-bar-2 {
    background: linear-gradient(90deg, #3366ff, #00ccff);
    transition: width 0.4s ease;
}

/* Vote Actions */
.live-vote-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
}

.btn-live-vote {
    flex: 1;
    padding: 14px 8px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 1px;
    border: none;
    border-radius: var(--radius, 8px);
    cursor: pointer;
    color: white;
    transition: all 0.2s;
    max-width: 160px;
}

.btn-live-vote-1 {
    background: linear-gradient(135deg, var(--color-fire-red), var(--color-fire-orange));
}

.btn-live-vote-2 {
    background: linear-gradient(135deg, #3366ff, #00ccff);
}

.btn-live-vote:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-live-vote:not(:disabled):active {
    transform: scale(0.95);
}

.live-votes-remaining {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--color-gold);
    letter-spacing: 2px;
    min-width: 40px;
    text-align: center;
}

.live-own-match {
    text-align: center;
    padding: 16px;
    color: var(--color-fire-orange);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 2px;
    background: rgba(255, 102, 0, 0.08);
    border-radius: var(--radius, 8px);
    border: 1px solid rgba(255, 102, 0, 0.2);
}

/* Cheer Bar */
.live-cheer-bar {
    display: flex;
    gap: 8px;
    justify-content: center;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 8px;
}

.cheer-btn {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
    background: var(--color-bg-card, #1a1a1a);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cheer-btn:active {
    transform: scale(0.9);
    background: var(--color-fire-orange);
    border-color: var(--color-fire-orange);
}

.cheer-btn.on-cooldown {
    opacity: 0.3;
    pointer-events: none;
}

.cheer-btn-fire {
    border-color: rgba(255, 102, 0, 0.3);
}

/* Floating Cheer Emoji */
.cheer-float-emoji {
    position: absolute;
    font-size: 2rem;
    pointer-events: none;
    animation: cheerFloat 1.5s ease-out forwards;
    z-index: 10;
}

@keyframes cheerFloat {
    0% { transform: translateY(0) scale(1); opacity: 1; }
    100% { transform: translateY(-200px) scale(1.5); opacity: 0; }
}

/* Mastika button on live screen */
.btn-mastika-live {
    display: block;
    width: 100%;
    padding: 14px;
    margin-top: 8px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border: 2px solid #a855f7;
    border-radius: var(--radius, 8px);
    color: white;
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-mastika-live:active {
    transform: scale(0.97);
}

/* Referee Dashboard */
.live-referee-dashboard {
    background: rgba(255, 215, 0, 0.04);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--radius, 8px);
    padding: 16px;
    margin-top: 12px;
}

.referee-live-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.referee-live-stat span {
    color: var(--color-gray-light, #aaa);
}

.referee-live-stat strong {
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.referee-live-actions {
    display: flex;
    gap: 10px;
}

.btn-referee-pick {
    flex: 1;
    padding: 12px 8px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--color-gold);
    border-radius: var(--radius, 8px);
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-referee-pick:hover {
    background: rgba(255, 215, 0, 0.2);
}

.btn-referee-pick:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Approval Widget */
.live-approval {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 8px;
    font-size: 0.8rem;
    color: var(--color-gray-light, #aaa);
}

.live-approval-btns {
    display: inline-flex;
    gap: 6px;
}

.btn-approve-live, .btn-disapprove-live {
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    background: var(--color-bg-card, #1a1a1a);
    color: white;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s;
}

.btn-approve-live:active { background: #22c55e; }
.btn-disapprove-live:active { background: var(--color-fire-red); }

/* Winner Overlay */
.live-winner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    animation: fadeIn 0.3s ease;
}

.live-winner-content {
    text-align: center;
}

.live-winner-title {
    font-size: 1.8rem;
    letter-spacing: 4px;
    margin-bottom: 16px;
}

.live-winner-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-gold);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    margin-bottom: 12px;
}

.live-winner-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-gold);
    letter-spacing: 3px;
}

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

/* ============================================
   GLOBAL MATCH TIMER BAR
   ============================================ */
.global-match-bar {
    position: fixed;
    top: var(--nav-height, 60px);
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(90deg, rgba(139, 0, 0, 0.95), rgba(255, 51, 51, 0.95));
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(255, 51, 51, 0.4);
    backdrop-filter: blur(8px);
}

.global-match-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 16px;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    font-size: 0.75rem;
    color: white;
}

.global-match-pulse {
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
}

.global-match-label {
    color: var(--color-gold);
    font-weight: bold;
}

.global-match-wrestlers {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.global-match-timer {
    font-size: 1rem;
    color: var(--color-gold);
    font-weight: bold;
    letter-spacing: 3px;
}

body.has-global-bar #page-live .live-match-banner {
    padding-top: calc(var(--nav-height, 60px) + 44px);
}

body.has-global-bar .page:not(#page-live) {
    padding-top: 44px;
}

/* ============================================
   ARENA HUB - Home per role
   ============================================ */
#arena-role-content {
    padding: var(--space-xl) 0 var(--space-lg);
}

.arena-welcome {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.arena-welcome-title {
    font-family: 'Russo One', sans-serif;
    font-size: var(--text-3xl);
    margin-bottom: var(--space-sm);
    letter-spacing: 1px;
}

.arena-welcome-sub {
    color: var(--color-text-secondary, #aaa);
    font-size: var(--text-base);
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
}

.arena-quick-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    max-width: 500px;
    margin: 0 auto;
}

.arena-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: var(--space-lg) var(--space-md);
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.arena-card:active {
    transform: scale(0.96);
}

.arena-card:hover {
    border-color: rgba(255,255,255,0.25);
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
}

.arena-card-fire {
    border-color: rgba(255,51,51,0.4);
    background: linear-gradient(135deg, rgba(255,51,51,0.15), rgba(255,102,0,0.05));
}

.arena-card-fire:hover {
    border-color: rgba(255,51,51,0.6);
    background: linear-gradient(135deg, rgba(255,51,51,0.25), rgba(255,102,0,0.1));
}

.arena-card-gold {
    border-color: rgba(255,215,0,0.4);
    background: linear-gradient(135deg, rgba(255,215,0,0.12), rgba(255,165,0,0.05));
}

.arena-card-gold:hover {
    border-color: rgba(255,215,0,0.6);
    background: linear-gradient(135deg, rgba(255,215,0,0.2), rgba(255,165,0,0.1));
}

.arena-card-big {
    grid-column: 1 / -1;
}

.arena-card-icon {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-sm);
}

.arena-card-title {
    font-family: 'Russo One', sans-serif;
    font-size: var(--text-base);
    color: #fff;
    margin-bottom: var(--space-xs);
    letter-spacing: 1px;
}

.arena-card-desc {
    font-size: var(--text-xs);
    color: var(--color-text-secondary, #aaa);
    font-family: 'Oswald', sans-serif;
}

/* Admin stats row */
.arena-stats-row {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-lg);
}

.arena-stat {
    text-align: center;
}

.arena-stat-num {
    display: block;
    font-family: 'Russo One', sans-serif;
    font-size: var(--text-3xl);
}

.arena-stat-label {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: var(--text-xs);
    color: var(--color-text-secondary, #aaa);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ============================================
   FLOATING LIVE FAB BUTTON
   ============================================ */
.live-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9990;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff1a1a, #ff6600);
    border: 3px solid var(--color-gold, #ffd700);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 4px 20px rgba(255, 51, 51, 0.6),
        0 0 40px rgba(255, 102, 0, 0.3),
        inset 0 -2px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.live-fab:hover {
    transform: scale(1.1);
    box-shadow:
        0 6px 30px rgba(255, 51, 51, 0.8),
        0 0 60px rgba(255, 102, 0, 0.5),
        inset 0 -2px 6px rgba(0, 0, 0, 0.3);
}

.live-fab:active {
    transform: scale(0.95);
}

.live-fab-icon {
    font-size: 1.6rem;
    line-height: 1;
    filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.8));
}

.live-fab-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 3px;
    color: #fff;
    margin-top: -2px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

/* Pulsing rings */
.live-fab-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(255, 51, 51, 0.5);
    animation: fabPulseRing 2s ease-out infinite;
}
.live-fab-ring-2 {
    animation-delay: 1s;
}

@keyframes fabPulseRing {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* Active match glow */
.live-fab.has-active-match {
    animation: fabGlow 1.5s ease-in-out infinite alternate;
}

.live-fab.has-active-match .live-fab-ring {
    border-color: rgba(255, 215, 0, 0.7);
}

@keyframes fabGlow {
    0% { box-shadow: 0 4px 20px rgba(255, 51, 51, 0.6), 0 0 40px rgba(255, 102, 0, 0.3), inset 0 -2px 6px rgba(0, 0, 0, 0.3); }
    100% { box-shadow: 0 4px 30px rgba(255, 215, 0, 0.8), 0 0 60px rgba(255, 51, 51, 0.5), inset 0 -2px 6px rgba(0, 0, 0, 0.3); }
}

/* ============================================
   LIVE OVERLAY PANEL
   ============================================ */
.live-overlay-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9991;
    backdrop-filter: blur(4px);
    animation: fadeIn 0.2s ease-out;
}

.live-overlay-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9992;
    max-height: 85vh;
    background: linear-gradient(180deg, #1a0a0a 0%, #0d0d0d 100%);
    border-top: 3px solid var(--color-fire-red, #ff3333);
    border-radius: 20px 20px 0 0;
    overflow-y: auto;
    animation: slideUpPanel 0.3s ease-out;
    box-shadow: 0 -8px 40px rgba(255, 51, 51, 0.3);
}

@keyframes slideUpPanel {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.live-overlay-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px 12px;
    border-bottom: 1px solid rgba(255, 51, 51, 0.2);
    position: sticky;
    top: 0;
    background: linear-gradient(180deg, #1a0a0a 0%, #0d0d0d 100%);
    z-index: 1;
}

.live-overlay-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 3px;
}

.live-overlay-close {
    background: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.5rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.live-overlay-close:hover {
    border-color: var(--color-fire-red);
    background: rgba(255, 51, 51, 0.15);
}

.live-overlay-body {
    padding: 16px 20px 32px;
}

/* Idle state inside overlay */
.live-overlay-idle {
    text-align: center;
    padding: 32px 16px;
}

.live-overlay-idle-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 16px;
    opacity: 0.6;
    animation: idleBounce 2s ease-in-out infinite;
}

@keyframes idleBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.live-overlay-idle h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 3px;
    color: var(--color-gold, #ffd700);
    margin-bottom: 8px;
}

.live-overlay-idle p {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 24px;
}

/* Preview controls in idle state */
.live-overlay-preview {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
    margin-top: 16px;
}

.live-overlay-preview-title {
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 16px;
}

/* Dummy VS display for preview */
.live-preview-vs {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 16px;
    opacity: 0.4;
}

.live-preview-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #333, #222);
    border: 2px solid #444;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #555;
}

.live-preview-vs-text {
    font-family: 'Russo One', sans-serif;
    font-size: 1.2rem;
    color: #555;
}

/* Dummy buttons for preview */
.live-preview-buttons {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.live-preview-btn {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    border: none;
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 1px;
    cursor: not-allowed;
    opacity: 0.35;
    color: #888;
}

.live-preview-btn-1 {
    background: linear-gradient(135deg, #4a1a1a, #331111);
    border: 1px solid #552222;
}

.live-preview-btn-2 {
    background: linear-gradient(135deg, #1a1a4a, #111133);
    border: 1px solid #222255;
}

.live-preview-bar {
    height: 6px;
    border-radius: 3px;
    background: #222;
    overflow: hidden;
    margin-bottom: 16px;
    opacity: 0.4;
}

.live-preview-bar-fill {
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, #552222, #222255);
}

.live-preview-cheers {
    display: flex;
    justify-content: center;
    gap: 8px;
    opacity: 0.3;
}

.live-preview-cheer {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #222;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: not-allowed;
}

/* Active match inside overlay — reuses live page elements */
.live-overlay-active .live-match-banner-clone {
    background: none;
    padding: 0;
    border: none;
}

/* Referee section in overlay */
.live-overlay-referee {
    margin-top: 12px;
    padding: 12px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 8px;
}

/* Approval in overlay */
.live-overlay-approval {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    font-size: 0.85rem;
}
