/* ========================================
   VIP Benefits Tables
   ======================================== */

.tier-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid;
}

.tier-header-vip {
    border-bottom-color: rgba(25, 238, 25, 0.3);
}

.tier-header-donate {
    border-bottom-color: rgba(255, 193, 7, 0.3);
}

.tier-header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    border: 1px solid;
}

.tier-header-icon-vip {
    background: linear-gradient(135deg, rgba(25, 238, 25, 0.2) 0%, rgba(25, 238, 25, 0.1) 100%);
    border-color: rgba(25, 238, 25, 0.3);
}

.tier-header-icon-donate {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2) 0%, rgba(255, 193, 7, 0.1) 100%);
    border-color: rgba(255, 193, 7, 0.3);
}

.benefits-table-wrapper {
    background: rgba(0, 0, 0, 0.2);
    -webkit-overflow-scrolling: touch;
}

.benefits-table {
    min-width: 700px;
}

.benefits-table-header {
    background: linear-gradient(135deg, rgba(13, 202, 240, 0.1) 0%, rgba(13, 202, 240, 0.05) 100%);
    border-bottom: 2px solid rgba(13, 202, 240, 0.3);
}

.benefits-table-row {
    transition: all 0.2s ease;
}

.benefits-table-row-border {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.benefit-name {
    color: rgba(255, 255, 255, 0.95);
}

.benefit-check-icon {
    font-size: 0.875rem;
}

.benefit-check-icon-vip {
    color: rgba(25, 238, 25, 0.5);
}

.benefit-check-icon-donate {
    color: rgba(255, 193, 7, 0.5);
}

.benefit-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid;
    transition: all 0.2s ease;
}

.benefit-status-available {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(34, 197, 94, 0.1) 100%);
    border-color: rgba(34, 197, 94, 0.4);
}

.benefit-status-unavailable {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
}

.tier-summary {
    margin-top: 0.75rem;
    padding: 0.75rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid;
}

.tier-summary-vip {
    background: rgba(25, 238, 25, 0.05);
    border-color: rgba(25, 238, 25, 0.2);
}

.tier-summary-donate {
    background: rgba(255, 193, 7, 0.05);
    border-color: rgba(255, 193, 7, 0.2);
}

.legend-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: 1px solid;
}

.legend-icon-success {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(34, 197, 94, 0.1) 100%);
    border-color: rgba(34, 197, 94, 0.4);
}

.legend-icon-unavailable {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
}
