/* TODO: Review box-shadow values - consider using design system shadow variables (--shadow-xs, --shadow-sm, etc.) */
/**
 * Welcome Tour Styles - Sprint 2
 * Styles for welcome tour
 */

/* ============================================
   WELCOME TOUR OVERLAY
   ============================================ */

.welcome-tour-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(var(--color-bg-primary-rgb, 26, 26, 26), 0.5);
    z-index: 10002;
    pointer-events: none;
    animation: fadeIn 0.3s ease-out;

.welcome-tour-tooltip {
    position: absolute;
    background: var(--color-bg-card, var(--color-bg-card));
    border: 2px solid var(--color-info, #4a90e2);
    border-radius: var(--radius-lg);
    max-width: 352px;
    width: 90%;
    box-shadow: 0 8px 32px rgba(var(--color-bg-primary-rgb, 26, 26, 26), 0.5), 0 0 0 4px rgba(74, 144, 226, 0.2);
    pointer-events: all;
    animation: slideIn 0.3s ease-out;
    z-index: 10003;

@keyframes slideIn {
    from {
        transform: translateY(10px);
        opacity: 0;

    to {
        transform: translateY(0);
        opacity: 1;

.welcome-tour-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid var(--color-border, #444);
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(74, 144, 226, 0.05));

.welcome-tour-step {
    font-size: 0.875rem;
    color: var(--color-text-secondary, var(--color-text-secondary));
    font-weight: 600;

.welcome-tour-close {
    background: transparent;
    border: none;
    color: var(--color-text-primary, var(--color-text-primary));
    font-size: 1.5rem;
    cursor: pointer;
    width: var(--spacing-xl);
    height: var(--spacing-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: all 0.2s;

.welcome-tour-close:hover,
.welcome-tour-close:focus {
    background: var(--color-bg-hover, #333);
    outline: 2px solid var(--color-info, #4a90e2);
    outline-offset: 2px;

.welcome-tour-content {
    padding: 1.5rem;

.welcome-tour-content h3 {
    margin: 0 0 0.75rem 0;
    color: var(--color-text-primary, var(--color-text-primary));
    font-family: var(--font-heading, 'Orbitron', sans-serif);
    font-size: 1.25rem;

.welcome-tour-content p {
    margin: 0;
    color: var(--color-text-primary, var(--color-text-primary));
    line-height: 1.6;
    font-size: 0.95rem;

.welcome-tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-top: 1px solid var(--color-border, #444);
    gap: 0.5rem;

.welcome-tour-skip {
    background: transparent;
    border: none;
    color: var(--color-text-secondary, var(--color-text-secondary));
    cursor: pointer;
    font-size: 0.875rem;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: all 0.2s;

.welcome-tour-skip:hover,
.welcome-tour-skip:focus {
    color: var(--color-text-primary, var(--color-text-primary));
    background: var(--color-bg-hover, #333);
    outline: 2px solid var(--color-info, #4a90e2);
    outline-offset: 2px;

.welcome-tour-nav {
    display: flex;
    gap: 0.5rem;

.welcome-tour-prev,
.welcome-tour-next,
.welcome-tour-complete {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: calc(var(--radius-sm) * 1.5);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    min-height: calc(var(--spacing-2xl) * 1.125);

.welcome-tour-prev,
.welcome-tour-next {
    background: var(--color-bg-tertiary, #333);
    color: var(--color-text-primary, var(--color-text-primary));
    border: 1px solid var(--color-border, #444);

.welcome-tour-prev:hover,
.welcome-tour-next:hover {
    background: var(--color-bg-hover, #333);
    border-color: var(--color-info, #4a90e2);

.welcome-tour-complete {
    background: linear-gradient(135deg, var(--color-success, #5cb85c), var(--color-success-dark, #4cae4c));
    color: white;
    border: 1px solid var(--color-success, #5cb85c);

.welcome-tour-complete:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--color-success-rgb, 92, 184, 92), 0.4);

/* ============================================
   WELCOME TOUR HIGHLIGHT
   ============================================ */

.welcome-tour-highlight {
    position: absolute;
    border: 3px solid var(--color-info, #4a90e2);
    border-radius: var(--radius-md);
    box-shadow: 0 0 0 9999px rgba(var(--color-bg-primary-rgb, 26, 26, 26), 0.3),
                0 0 20px rgba(74, 144, 226, 0.5),
                inset 0 0 20px rgba(74, 144, 226, 0.2);
    z-index: 10001;
    pointer-events: none;
    animation: highlightPulse 2s ease-in-out infinite;

@keyframes highlightPulse {
    0%, 100% {
        box-shadow: 0 0 0 9999px rgba(var(--color-bg-primary-rgb, 26, 26, 26), 0.3),
                    0 0 20px rgba(74, 144, 226, 0.5),
                    inset 0 0 20px rgba(74, 144, 226, 0.2);

    50% {
        box-shadow: 0 0 0 9999px rgba(var(--color-bg-primary-rgb, 26, 26, 26), 0.3),
                    0 0 30px rgba(74, 144, 226, 0.8),
                    inset 0 0 30px rgba(74, 144, 226, 0.4);

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .welcome-tour-tooltip {
        max-width: 90%;
        left: 5% !important;
        right: 5% !important;

    .welcome-tour-footer {
        flex-direction: column;

    .welcome-tour-skip {
        width: 100%;
        text-align: center;

    .welcome-tour-nav {
        width: 100%;
        justify-content: stretch;

    .welcome-tour-prev,
    .welcome-tour-next,
    .welcome-tour-complete {
        flex: 1;

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    .welcome-tour-overlay,
    .welcome-tour-tooltip,
    .welcome-tour-highlight {
        animation: none;

}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}