/* Tutorial Overlay */
.tutorial-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    pointer-events: none;
}

.tutorial-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    pointer-events: auto;
}

.tutorial-spotlight {
    position: absolute;
    border: 4px solid var(--amber-400);
    border-radius: 0.5rem;
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.5);
    pointer-events: none;
    transition: all 0.3s ease;
}

.tutorial-tooltip {
    position: absolute;
    width: 320px;
    max-height: 400px;
    background: var(--zinc-900);
    border: 2px solid var(--amber-400);
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    pointer-events: auto;
    z-index: 1001;
    transition: all 0.3s ease;
}

.tutorial-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--amber-400);
}

.tutorial-arrow.top {
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
}

.tutorial-arrow.bottom {
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
}

.tutorial-arrow.left {
    right: -8px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
}

.tutorial-arrow.right {
    left: -8px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
}

.tutorial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.tutorial-title {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--amber-400);
}

.tutorial-step-counter {
    font-size: 0.875rem;
    color: #9ca3af;
}

.tutorial-description {
    color: var(--amber-100);
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.tutorial-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.tutorial-skip {
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    color: #9ca3af;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
}

.tutorial-skip:hover {
    color: var(--amber-400);
}

.tutorial-buttons {
    display: flex;
    gap: 0.5rem;
}

.tutorial-btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: background 0.2s;
    font-family: 'Cinzel', serif;
}

.tutorial-btn-prev {
    background: var(--zinc-800);
    color: var(--amber-400);
}

.tutorial-btn-prev:hover {
    background: var(--zinc-700);
}

.tutorial-btn-next {
    background: var(--amber-600);
    color: white;
}

.tutorial-btn-next:hover {
    background: #b45309;
}
