.tutorial-guide-overlay {
    position: fixed;
    inset: 0;
    z-index: 10004;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.4);
}

.tutorial-guide-panel {
    width: 490px;
    max-width: 100%;
    max-height: 100%;
    padding: 28px 26px 26px 26px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: auto;
    background: var(--color-soft-white);
    border: 1px solid var(--color-gray-50);
    border-radius: 16px;
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.16);
}

.tutorial-guide-panel:focus {
    outline: none;
}

.tutorial-guide-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.tutorial-guide-title {
    margin: 0;
    min-width: 0;
    font-family: var(--font-base);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--color-soft-black);
}

.tutorial-guide-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tutorial-guide-description {
    margin: 0;
    font-family: var(--font-base);
    font-size: 10px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--color-gray-600);
}

.tutorial-guide-close {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    margin-top: 2px;
}

.tutorial-guide-close svg path {
    transition: fill 0.2s ease;
}

.tutorial-guide-close:hover svg path {
    fill: var(--color-gray-600);
}

.tutorial-guide-close:focus-visible,
.tutorial-guide-action-button:focus-visible {
    outline: 2px solid var(--color-pink-purple-mid);
    outline-offset: 3px;
}

.tutorial-guide-preview {
    width: 100%;
    height: 330px;
    align-self: center;
    overflow: hidden;
    border-radius: 8px;
    background: var(--color-gray-50);
    border: 1px solid var(--color-gray-100);
}

.tutorial-guide-preview img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
}

.tutorial-guide-action-button {
    width: 100%;
    min-height: 44px;
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    background: var(--color-grad-pink-purple);
    color: var(--color-soft-white);
    font-family: var(--font-base);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
    cursor: pointer;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.tutorial-guide-action-button:hover {
    background: var(--color-grad-pink-purple-hover);
    box-shadow: 0 8px 20px rgba(233, 120, 170, 0.3);
}
