.igt-progress {
    --igt-progress-accent: #d6ae57;
    background: linear-gradient(145deg, #15202a, #0f151b);
    border: 1px solid rgba(214, 174, 87, 0.3);
    border-radius: 1rem;
    color: #f5f1e8;
    padding: 1.15rem;
}

.igt-progress__summary {
    align-items: baseline;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.igt-progress__summary strong {
    color: #f5f1e8;
    font-size: 1rem;
}

.igt-progress__summary span {
    color: var(--igt-progress-accent);
    font-weight: 700;
}

.igt-progress__track {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    height: 0.65rem;
    margin: 0.7rem 0 0.9rem;
    overflow: hidden;
}

.igt-progress__track span {
    background: linear-gradient(90deg, var(--igt-progress-accent), #f1cf7a);
    border-radius: inherit;
    display: block;
    height: 100%;
    min-width: 0;
    transition: width 240ms ease;
    width: 0;
}

.igt-progress__current,
.igt-progress__privacy {
    margin: 0.7rem 0;
}

.igt-progress__setup {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 0.9rem;
    padding-top: 0.8rem;
}

.igt-progress__setup summary {
    color: #f1cf7a;
    cursor: pointer;
    font-weight: 700;
}

.igt-progress__setup form {
    margin-top: 0.75rem;
}

.igt-progress__setup label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
}

.igt-progress__setup-row {
    display: flex;
    gap: 0.5rem;
}

.igt-progress__setup input {
    background: #f7f3ea;
    border: 1px solid #beb8ac;
    border-radius: 0.55rem;
    color: #26313a;
    font: inherit;
    min-width: 0;
    padding: 0.6rem;
    width: 7rem;
}

.igt-progress__current {
    color: #f5f1e8;
    font-weight: 600;
}

.igt-progress__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.igt-progress__button {
    align-items: center;
    border: 1px solid var(--igt-progress-accent);
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    font-weight: 700;
    justify-content: center;
    line-height: 1.2;
    padding: 0.65rem 0.9rem;
    text-decoration: none;
}

.igt-progress__button--primary {
    background: var(--igt-progress-accent);
    color: #0f151b;
}

.igt-progress__button--secondary {
    background: transparent;
    color: #f5f1e8;
}

.igt-progress__button:hover,
.igt-progress__button:focus-visible {
    filter: brightness(1.12);
    transform: translateY(-1px);
}

.igt-progress__privacy {
    color: #beb8ac;
    font-size: 0.82rem;
    line-height: 1.45;
}

@media (max-width: 480px) {
    .igt-progress__summary {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.2rem;
    }

    .igt-progress__button {
        width: 100%;
    }

    .igt-progress__setup-row {
        align-items: stretch;
        flex-direction: column;
    }

    .igt-progress__setup input {
        width: 100%;
    }
}
