.get-started-dialog {
    padding: 24px;
    border: none;
    max-width: none;
    max-height: none;
    background: transparent;
    overflow: visible;
}

.get-started-dialog[open] {
    position: fixed;
    inset: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.get-started-dialog::backdrop {
    background: var(--color-bg-backdrop);
    backdrop-filter: blur(2px);
}

.get-started-dialog .stepper {
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.get-started-dialog__close {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: var(--color-text-primary);
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.get-started-dialog__close:hover {
    background-color: var(--color-border-soft-20);
}

@media (max-width: 430px) {
    .get-started-dialog .stepper {
        max-height: 95vh;
    }
}
