.fg-minimal {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    background: #000;
    border-radius: 24px;
    padding: 0;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

/* Hero Card - FG Value */
.fg-minimal-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 28px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
}
.fg-minimal-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--fg-color) 50%, transparent 100%);
    opacity: 0.6;
}
.fg-minimal-period {
    font-size: 18px;
    font-weight: 700;
    color: rgba(255,255,255,1);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 16px;
}
.fg-minimal-value-circle {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    border-radius: 50%;
    border: 3px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.05) 0%, transparent 70%);
}
.fg-minimal-value {
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
}
.fg-minimal-label {
    font-size: 14px;
    font-weight: 800;
    text-align: center;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}
.fg-minimal-delta {
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    color: rgba(255,255,255,0.5);
}

/* Progress Bar */
.fg-minimal-progress {
    padding: 0 24px 20px;
    background: #0a0a0a;
}
.fg-progress-track {
    height: 4px;
    background: rgba(255,255,255,0.08);
    border-radius: 100px;
    position: relative;
    overflow: hidden;
}
.fg-progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--fg-color);
    border-radius: 100px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.fg-progress-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
    font-size: 16px;
    color: rgba(255,255,255,1);
    font-weight: 600;
}

/* Macro Cards */
.fg-minimal-macro {
    padding: 16px 20px 24px;
    background: #000;
}
.fg-minimal-macro-title {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    padding-left: 4px;
}
.fg-macro-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    margin-bottom: 6px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 12px;
    transition: all 0.3s ease;
}
.fg-macro-item:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(59,130,246,0.2);
    transform: translateX(4px);
}
.fg-macro-name {
    font-size: 18px;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.fg-macro-right {
    display: flex;
    align-items: center;
    gap: 10px;
}
.fg-macro-value {
    font-size: 20px;
    font-weight: 800;
    min-width: 36px;
    text-align: right;
}
.fg-macro-delta {
    font-size: 10px;
    font-weight: 700;
    min-width: 32px;
    text-align: right;
}
.delta-up { color: #28a745; }
.delta-down { color: #dc3545; }
.delta-flat { color: #ffc107; }

@media (max-width: 480px) {
    .fg-minimal { max-width: 100%; }
}
