/* TUTORIAL POPUP STYLES */
.wp-tutorial-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wp-tutorial-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.wp-tutorial-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    border-color: rgba(168, 218, 220, 0.3);
}

.wp-key-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(10, 10, 30, 0.6);
    border-radius: 10px;
    border: 1px solid rgba(168, 218, 220, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a8dadc;
    font-weight: 800;
    font-size: 14px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3), 0 2px 5px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
}

.wp-key-icon svg {
    width: 24px;
    height: 24px;
}

.wp-tutorial-text h4 {
    margin: 0 0 5px 0;
    color: #f1faee;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.wp-tutorial-text p {
    margin: 0;
    color: #a8dadc;
    font-size: 13px;
    opacity: 0.8;
    line-height: 1.4;
}

/* Toggle Switcher */
.wp-tutorial-picker {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 20px;
}

.wp-picker-btn {
    flex: 1;
    background: transparent;
    border: none;
    color: #a8dadc;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s ease;
}

.wp-picker-btn.active {
    background: rgba(168, 218, 220, 0.2);
    color: #f1faee;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.wp-tutorial-tab {
    display: none;
}

.wp-tutorial-tab.active {
    display: flex;
    flex-direction: column;
    gap: 15px;
}