/* Custom Styles for Nigal Deployment Page */
/* Brand: Inter Variable, Primary #51afe6 (sky blue), bg #060d15  */

@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
    :root {
        --aw-color-primary: #51afe6;
        --aw-color-primary-dark: #2a9fd6;
        --aw-color-primary-light: #89cbf0;
        --aw-color-bg-page: #060d15;
        --aw-color-bg-card: #0c1a28;
    }
}

@layer utilities {
    .animate-fade-in-up {
        animation: fadeInUp 0.7s ease-out forwards;
        opacity: 0;
        transform: translateY(18px);
    }

    .animation-delay-2000 {
        animation-delay: 2s;
    }

    .animation-delay-4000 {
        animation-delay: 4s;
    }

    /* Border opacity utility */
    .border-white\/8 {
        border-color: rgba(255, 255, 255, 0.08);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blob {
    0%   { transform: translate(0px, 0px) scale(1); }
    33%  { transform: translate(30px, -50px) scale(1.1); }
    66%  { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0px, 0px) scale(1); }
}

.animate-blob {
    animation: blob 7s infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(81, 175, 230, 0.45); /* Nigal primary */
}

/* Selection */
::selection {
    background: rgba(81, 175, 230, 0.3);
    color: white;
}

/* Inline code inside guide steps */
code {
    font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
    background: rgba(255, 255, 255, 0.06);
    padding: 0.1em 0.4em;
    border-radius: 4px;
    font-size: 0.875em;
    color: var(--aw-color-primary-light);
}


