.status-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 10px 30px rgba(15, 37, 55, 0.06);
    border: 1px solid #e1eaf0;
    position: relative;
}

.card-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    position: relative;
}

.avatar-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a2a6c, #2759c2);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 15px rgba(39, 89, 194, 0.3);
    overflow: hidden;
}

.avatar-box svg {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

.user-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-grow: 1;
}

.user-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
}

.level-badge {
    align-self: flex-start;
    background-color: #e6f7ed;
    color: #26af5f;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid #bbf7d0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.coin-counter {
    background: #1e293b;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(30, 41, 59, 0.2);
}

.coin-icon {
    width: 18px;
    height: 18px;
    background: #facc15;
    border-radius: 50%;
    display: inline-block;
    border: 2px solid #fef08a;
    box-shadow: 0 0 6px #facc15;
}

.progress-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
}

.next-level {
    color: #475569;
}

.progress-track {
    width: 100%;
    background-color: #f1f5f9;
    height: 10px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.progress-fill {
    width: 25%;
   
    height: 100%;
    background: linear-gradient(90deg, #facc15, #eab308);
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(234, 179, 8, 0.4);
}


.cta-container {
    position: relative;
    width: 100%;
    margin-top: 20px;
}

.action-btn {
    width: 100%;
    background: linear-gradient(180deg, #ffe033 0%, #f5b000 100%);
    color: #331b00;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 20px;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(245, 176, 0, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 176, 0, 0.5);
}

.action-btn:active {
    transform: translateY(1px);
}

.btn-icon {
    width: 22px;
    height: 22px;
    background: #331b00;
    color: #ffe033;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    font-size: 12px;
}

.ad-tag {
    position: absolute;
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    color: #94a3b8;
    font-weight: 500;
}

@media (max-width: 520px) {
    .ad-tag {
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        display: block;
        text-align: right;
        margin-top: 4px;
    }

    .user-title {
        font-size: 13px;
    }

    .activity-main-container .level-badge {
        color: #000;
        font-size: 10px;
        padding: 8px 12px;
        border-radius: 12px;
        display: inline-block;
        margin-top: 8px;
        border: 1px solid #00BE4F;
        color: #00BE4F;
    }

    .coin-counter {
    background: #1e293b;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 4px 12px rgba(30, 41, 59, 0.2);
}
}