@font-face {
    font-family: AmpleSoft-light;
    src: url("../fonts/AmpleSoft-Light.otf");
}
@font-face {
    font-family: AmpleSoft-regular;
    src: url("../fonts/AmpleSoft.otf");
}
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: AmpleSoft-regular !important;
}

/* Layout helpers */
.min-h-screen {
    min-height: 100vh;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.flex {
    display: flex;
}
.items-center {
    align-items: center;
}
.justify-between {
    justify-content: space-between;
}
.justify-center {
    justify-content: center;
}
.gap-2 {
    gap: 0.5rem;
}
.gap-3 {
    gap: 0.75rem;
}
.gap-4 {
    gap: 1rem;
}

/* Typography */
.text-white {
    color: #fff;
}
.text-gray-400 {
    color: #9ca3af;
}
.text-gray-300 {
    color: #d1d5db;
}
.text-2xl {
    font-size: 1.5rem;
    font-weight: bold;
}
.text-5xl {
    font-size: 3rem;
    font-weight: bold;
}
.text-6xl {
    font-size: 3.75rem;
    font-weight: bold;
}
.text-sm {
    font-size: 0.875rem;
}
.text-lg {
    font-size: 1.125rem;
}
.font-bold {
    font-weight: bold;
}
.font-semibold {
    font-weight: 600;
}
.leading-tight {
    line-height: 1.2;
}
.truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Spacing */
.p-2 {
    padding: 0.5rem;
}
.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}
.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.mb-4 {
    margin-bottom: 1rem;
}
.mb-6 {
    margin-bottom: 1.5rem;
}
.mb-8 {
    margin-bottom: 2rem;
}
.mb-12 {
    margin-bottom: 3rem;
}
.mt-4 {
    margin-top: 1rem;
}

/* Backgrounds */
.bg-\[\#0a0e27\] {
    background-color: #0a0e27;
}
.bg-\[\#1a1f3a\] {
    background-color: #1a1f3a;
}
.bg-\[\#0f1329\] {
    background-color: #0f1329;
}
.bg-blue-600 {
    background-color: #2563eb;
}
.bg-blue-700 {
    background-color: #1d4ed8;
}
.bg-green-500\/20 {
    background-color: rgba(34, 197, 94, 0.2);
}
.bg-yellow-500\/20 {
    background-color: rgba(234, 179, 8, 0.2);
}
.hover\:bg-blue-700:hover {
    background-color: #1d4ed8;
}
.hover\:bg-white\/10:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Borders */
.border {
    border: 1px solid;
}
.border-b {
    border-bottom: 1px solid;
}
.border-white\/10 {
    border-color: rgba(255, 255, 255, 0.1);
}
.border-white\/5 {
    border-color: rgba(255, 255, 255, 0.05);
}
.rounded-lg {
    border-radius: 0.5rem;
}
.rounded-full {
    border-radius: 9999px;
}
.rounded {
    border-radius: 0.25rem;
}
.overflow-hidden {
    overflow: hidden;
}

/* Buttons */
button,
.btn {
    cursor: pointer;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}
button.text-white {
    color: white;
}
button.bg-blue-600 {
    background: #2563eb;
}
button.bg-blue-600:hover {
    background: #1d4ed8;
}

/* Badges */
.badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
}

/* Table */
table {
    width: 100%;
    border-collapse: collapse;
}
th {
    font-size: 0.875rem;
    font-weight: 500;
    color: #9ca3af;
    text-align: left;
    padding: 1rem 1.5rem;
}
td {
    padding: 1rem 1.5rem;
    font-size: 0.875rem;
    color: #d1d5db;
}
tr {
    transition: background 0.3s;
}
tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Fixed toggle panel */
.fixed {
    position: fixed;
}
.top-1\/2 {
    top: 50%;
    transform: translateY(-50%);
}
.right-6 {
    right: 1.5rem;
}

/* === Background Reactive Animation === */
body {
    background: radial-gradient(circle at center, #0a0e27 0%, #050713 100%);
    position: relative;
    overflow: hidden;
}

/* Animated concentric circles */
body::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.02) 0px,
        rgba(255, 255, 255, 0.02) 1px,
        transparent 1px,
        transparent 100px
    );
    animation: spin 60s linear infinite;
    z-index: 0;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* === Hero Input + Button Glow === */
input[type="text"] {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    width: 100%;
    font-size: 1rem;
}

input[type="text"]::placeholder {
    color: #6b7280;
}

form {
    position: relative;
    z-index: 5;
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.3);
}

button[type="submit"] {
    background: linear-gradient(90deg, #2563eb, #9333ea);
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.6);
    transition: all 0.3s ease;
}

button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(147, 51, 234, 0.8);
}

/* === Card & Table Glow === */
.bg-\[\#0f1329\] {
    background-color: #0f1329;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

tr:hover {
    background: rgba(37, 99, 235, 0.1);
}
