@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@300;400;500;600;700&family=Prompt:wght@300;400;500;600;700&display=swap');

:root {
    --neon-blue: #00d9ff;
    --neon-purple: #a855f7;
    --bg-deep: #05060f;
    --bg-panel: #0b0e1e;
}

html {
    scroll-behavior: smooth;
}

[x-cloak] {
    display: none !important;
}

body {
    font-family: 'Kanit', 'Prompt', sans-serif;
    background-color: var(--bg-deep);
    color: #e6e8f5;
}

#tsparticles {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.glass {
    background: rgba(17, 20, 40, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(148, 163, 255, 0.15);
}

.glass-strong {
    background: rgba(11, 14, 30, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(148, 163, 255, 0.18);
}

.text-neon-blue { color: var(--neon-blue); }
.text-neon-purple { color: var(--neon-purple); }

.neon-border {
    border: 1px solid rgba(0, 217, 255, 0.35);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.08), inset 0 0 20px rgba(168, 85, 247, 0.04);
}

.neon-text {
    text-shadow: 0 0 12px rgba(0, 217, 255, 0.6), 0 0 30px rgba(168, 85, 247, 0.35);
}

.gradient-title {
    background: linear-gradient(90deg, #00d9ff 0%, #a855f7 60%, #ff5fd8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.btn-neon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .85rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    color: #05060f;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    box-shadow: 0 0 25px rgba(0, 217, 255, 0.35), 0 0 45px rgba(168, 85, 247, 0.2);
    transition: transform .25s ease, box-shadow .25s ease;
}

.btn-neon:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 0 35px rgba(0, 217, 255, 0.55), 0 0 60px rgba(168, 85, 247, 0.35);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .8rem 1.9rem;
    border-radius: 9999px;
    font-weight: 600;
    color: #e6e8f5;
    border: 1px solid rgba(148, 163, 255, 0.35);
    background: rgba(255, 255, 255, 0.03);
    transition: all .25s ease;
}

.btn-ghost:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.25);
    transform: translateY(-2px);
}

.card-hover {
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.card-hover:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 217, 255, 0.5);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.15), 0 0 0 1px rgba(168, 85, 247, 0.1);
}

.admin-fab {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 50;
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--neon-blue), var(--neon-purple));
    border-radius: 10px;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: .2rem .75rem;
    border-radius: 9999px;
    font-size: .75rem;
    font-weight: 500;
}
