/* Profile Enhancements CSS */
.vip-status {
    margin: 15px 0;
    padding: 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.1));
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.vip-status h4 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vip-level {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.vip-0 {
    background: linear-gradient(45deg, #666, #888);
    color: white;
}

.vip-1 {
    background: linear-gradient(45deg, #4CAF50, #66BB6A);
    color: white;
}

.vip-2 {
    background: linear-gradient(45deg, #2196F3, #42A5F5);
    color: white;
}

.vip-3 {
    background: linear-gradient(45deg, #FF9800, #FFB74D);
    color: white;
}

.vip-expire {
    margin-top: 8px;
    font-size: 0.9em;
    color: #666;
    font-style: italic;
}

.status-bars {
    margin: 15px 0;
    padding: 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.1));
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.status-bars h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.status-bar-container {
    margin: 12px 0;
}

.status-bar-container label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9em;
    font-weight: bold;
    color: #555;
}

.status-bar {
    width: 100%;
    height: 24px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
}

.status-bar-fill {
    height: 100%;
    transition: width 0.5s ease-in-out;
    border-radius: 12px;
    position: relative;
}

.status-bar-fill.animate {
    animation: fillAnimation 1s ease-in-out;
}

@keyframes fillAnimation {
    from {
        width: 0% !important;
    }
}

.life-bar .status-bar-fill {
    background: linear-gradient(45deg, #f44336, #e57373);
    box-shadow: 0 0 10px rgba(244, 67, 54, 0.5);
}

.mana-bar .status-bar-fill {
    background: linear-gradient(45deg, #2196F3, #64B5F6);
    box-shadow: 0 0 10px rgba(33, 150, 243, 0.5);
}

.stamina-bar .status-bar-fill {
    background: linear-gradient(45deg, #dfa100, #ffcc33);
    box-shadow: 0 0 10px rgba(223, 161, 0, 0.5);
}

.shield-bar .status-bar-fill {
    background: linear-gradient(45deg, #FF9800, #FFB74D);
    box-shadow: 0 0 10px rgba(255, 152, 0, 0.5);
}

.battlepass-info {
    margin: 15px 0;
    padding: 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.1));
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.battlepass-info h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.battlepass-info table {
    width: 100%;
}

.battlepass-info td {
    padding: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.battlepass-info td:first-child {
    font-weight: bold;
    color: #555;
    width: 40%;
}

@media (max-width: 768px) {

    .vip-status,
    .status-bars,
    .battlepass-info {
        margin: 10px 0;
        padding: 10px;
    }

    .status-bar {
        height: 20px;
    }

    .vip-level {
        padding: 6px 12px;
        font-size: 1em;
    }
}