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

:root {
    --matte-black: #0A0A0A;
    --bento-border: #1E293B;
    --electric-cyan: #00F2FF;
    --cyber-green: #39FF14;
    --card-bg: rgba(255, 255, 255, 0.02);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--matte-black);
    color: #F8FAFC;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.font-mono {
    font-family: 'JetBrains Mono', monospace;
}

/* Bento Grid Components */
.bento-card {
    background: var(--card-bg);
    border: 1px solid var(--bento-border);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    border-color: rgba(0, 242, 255, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

/* Glassmorphism */
.glass-header {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Glow Effects */
.glow-cyan {
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.15);
}

.glow-green {
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.15);
}

/* Buttons */
.btn-primary {
    background: var(--electric-cyan);
    color: var(--matte-black);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 242, 255, 0.4);
}

/* Status Indicator */
.status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--cyber-green);
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.status-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--cyber-green);
    border-radius: 50%;
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
    75%, 100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Technical Table */
.tech-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--bento-border);
    border-radius: 16px;
    overflow: hidden;
}

.tech-table th, .tech-table td {
    padding: 1.25rem;
    border-bottom: 1px solid var(--bento-border);
    text-align: left;
}

.tech-table th {
    background: rgba(255, 255, 255, 0.03);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: #94A3B8;
}

.tech-table tr:last-child td {
    border-bottom: none;
}

/* Utility Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
