.onboarding-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 2000;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.onboarding-container.fade-out {
    opacity: 0;
}

.onboarding-wrapper {
    background: rgba(0, 0, 0, 0.45);
    border-radius: 0;
    padding: 40px;
    max-width: 400px;
    width: 90%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-bottom: 70px;
}

.step-indicator {
    display: flex;
    gap: 8px;
    justify-content: center;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.step-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.step-dot.active {
    background: white;
    transform: scale(1.2);
}

.onboarding-content {
    text-align: center;
    color: white;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.step-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.onboarding-content h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 12px;
}

.onboarding-content p {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.onboarding-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 10px;
}

.onboarding-button {
    padding: 12px 24px;
    border-radius: 0;
    border: none;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 100px;
    text-align: center;
}

.onboarding-button.next {
    background: white;
    color: black;
}

.onboarding-button.next:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.onboarding-button.skip {
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
}

.onboarding-button.skip:hover {
    color: white;
} 