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

/* Reset & Base */
body {
    background-color: #000;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #00f0ff;
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(to right, #00f0ff, #7000ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* 3D Tilt Effect Classes (managed by VanillaTilt) */
.tilt-card {
    transform-style: preserve-3d;
    transform: perspective(1000px);
}

.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Custom Grid Pattern */
.bg-grid {
    background-size: 40px 40px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.15) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 1px, transparent 1px);
    -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

.dark .bg-grid {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
}

/* Neon Glow */
.neon-glow {
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.5),
                0 0 20px rgba(0, 240, 255, 0.3),
                0 0 30px rgba(0, 240, 255, 0.1);
}

/* Utilities */
.text-shadow {
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
