.guide-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    z-index: 1001;
    padding: 1.5rem 0.75rem 0.75rem;
    backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.guide-content {
    background: #FFF9FC;
    border-radius: 20px;
    padding: 1.25rem 1.5rem;
    max-width: 320px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15),
                0 -8px 30px rgba(0, 0, 0, 0.1);
    transform: scale(0.95);
    opacity: 0;
    transition: all 0.3s ease;
    margin-top: 1rem;
    position: relative;
}

.guide-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, 
        rgba(0, 0, 0, 0.05),
        rgba(0, 0, 0, 0.12) 20%,
        rgba(0, 0, 0, 0.12) 80%,
        rgba(0, 0, 0, 0.05)
    );
}

.guide-content h3 {
    margin: 0 0 0.75rem 0;
    font-size: 0.8em;
    text-align: center;
    font-weight: 600;
    color: #666666;
}

.guide-icon {
    margin-bottom: 0.75rem;
    text-align: center;
}

.guide-icon .icon-wrapper {
    background: #FFF0F7;
    padding: 0.6rem;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.guide-icon .icon-wrapper img {
    display: block;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
}

.guide-icon p {
    margin: 0;
    font-size: 0.9rem;
    color: #444444;
    line-height: 1.3;
}

.guide-steps {
    background: #FFF0F7;
    border-radius: 16px;
    padding: 0.75rem 1rem;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(255, 107, 156, 0.1);
}

.guide-steps ol {
    margin: 0;
    padding-left: 1.25rem;
    font-size: 0.8rem;
    line-height: 1.3;
    color: #444444;
}

.guide-steps li {
    margin-bottom: 0.4rem;
    padding-left: 0.25rem;
    white-space: nowrap;
}

.guide-steps li:last-child {
    margin-bottom: 0;
}

.guide-button {
    display: flex;
    justify-content: center;
}

.close-button {
    display: block;
    width: 90%;
    max-width: 280px;
    padding: 0.75rem;
    background: #FFE5F0;
    color: #FF6B9C;
    border: none;
    border-radius: 16px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(255, 107, 156, 0.1);
}

.close-button:hover {
    background: #FFD6E7;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(255, 107, 156, 0.15);
}

.close-button:active {
    transform: translateY(1px);
    box-shadow: 0 1px 2px rgba(255, 107, 156, 0.1);
}

.highlight {
    font-weight: 600;
    color: #333333;
} 