/* Custom styles for Graphic Arts n Design */

:root {
    --brand-purple: #6600cc;
    --brand-lime: #9aff00;
    --brand-dark: #1a1a1a;
}

@keyframes glow {
    0% { box-shadow: 0 0 5px rgba(154, 255, 0, 0.2); }
    50% { box-shadow: 0 0 20px rgba(154, 255, 0, 0.5); }
    100% { box-shadow: 0 0 5px rgba(154, 255, 0, 0.2); }
}

.animate-glow {
    animation: glow 3s infinite;
}

.step-content {
    display: none;
}

.step-content.active {
    display: block;
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--brand-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--brand-purple);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-lime);
}

/* Form input focus effects */
input:focus, select:focus, textarea:focus {
    box-shadow: 0 0 0 2px rgba(154, 255, 0, 0.2);
}
