@import url('fonts.css');

/* Base Styles */
body {
    background-color: #0B1121;
    /* Darker base */
    background-image:
        radial-gradient(circle at 15% 50%, rgba(6, 182, 212, 0.08), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(59, 130, 246, 0.08), transparent 25%);
    color: #f8fafc;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.font-mono {
    font-family: 'JetBrains Mono', monospace;
}

/* Utilities - UI/UX Pro Max */
.glass-panel {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.glass-card {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.4) 0%, rgba(15, 23, 42, 0.4) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow:
        0 8px 32px 0 rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow:
        0 8px 32px 0 rgba(0, 0, 0, 0.4),
        inset 0 0 0 1px rgba(6, 182, 212, 0.2),
        0 0 20px rgba(6, 182, 212, 0.1);
    transform: translateY(-2px);
}

.text-gradient {
    background: linear-gradient(135deg, #fff 30%, #22d3ee 100%);
    -webkit-background-clip: text;
    background-clip: text;
    background: linear-gradient(135deg, #fff 30%, #22d3ee 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-animate {
    background: linear-gradient(to right, #06b6d4 10%, #fff 50%, #06b6d4 90%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 5s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}


.text-glow {
    /* text-shadow doesn't work well with transparent text (background-clip) */
    filter: drop-shadow(0 0 8px rgba(6, 182, 212, 0.5));
}

.border-glow {
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.3);
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #0f172a;
}

::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #06b6d4;
}

/* Table Enhancements */
.tech-table tr {
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tech-table tr:hover {
    background: rgba(6, 182, 212, 0.05);
}

.tech-table th {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(4px);
    position: sticky;
    top: 0;
}