.customer-goal-row {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 18px;
}

.top-customer,
.community-goal {
    background: linear-gradient(180deg, rgba(22, 30, 44, 0.92) 0%, rgba(14, 21, 32, 0.92) 100%);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 18px 20px;
    box-shadow: var(--shadow-card), inset 0 1px 0 rgba(191, 212, 255, 0.06);
    backdrop-filter: blur(6px);
}

.top-title,
.goal-title {
    text-align: center;
    color: var(--primary);
    margin: 0 0 14px;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.top-title i,
.goal-title i { color: var(--accent); font-size: 13px; }

.top-player {
    display: flex;
    align-items: center;
    gap: 14px;
    height: 80px;
    overflow: hidden;
}

.top-skin {
    height: 110px;
    margin-bottom: -32px;
    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.45));
}

.top-info {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.top-info strong {
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
}

.top-info span {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
}

.goal-percent {
    text-align: center;
    font-size: 13px;
    margin-bottom: 10px;
    color: var(--text-muted);
    font-weight: 600;
}

.goal-bar {
    width: 100%;
    height: 14px;
    background: rgba(15, 22, 32, 0.7);
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.goal-progress {
    height: 100%;
    border-radius: 999px;
    width: 0;
    background: repeating-linear-gradient(
        45deg,
        var(--primary),
        var(--primary) 12px,
        var(--accent) 12px,
        var(--accent) 24px
    );
    background-size: 40px 40px;
    box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.4);
    animation: fillGoal 1.8s ease forwards, stripeMove 2s linear infinite;
}

.goal-note {
    margin: 10px 0 0;
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
}

@media (max-width: 1024px) {
    .customer-goal-row { display: none; }
}
