/* PART 1: CORE VARIABLES & RESET */
@import url('https://api.fontshare.com/v2/css?f[]=clash-display@500,600,700&f[]=general-sans@400,500,600&display=swap');

:root {
    --bg-dark: #050505;
    --bg-card: #0a0a0a;
    --neon-blue: #00f3ff;
    --neon-purple: #bc13fe;
    --text-main: #ffffff;
    --text-muted: #888888;
    --font-display: 'Clash Display', sans-serif;
    --font-body: 'General Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; cursor: none; /* Custom Cursor ke liye */ }

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--neon-blue); }

/* UTILITY CLASSES */
.text-neon { color: var(--neon-blue); text-shadow: 0 0 15px rgba(0, 243, 255, 0.4); }
.font-display { font-family: var(--font-display); }
.container { max-width: 1400px; margin: 0 auto; px-6; }

/* CUSTOM CURSOR */
#cursor-dot {
    width: 8px; height: 8px; background: var(--neon-blue);
    position: fixed; border-radius: 50%; z-index: 9999;
    pointer-events: none; transform: translate(-50%, -50%);
}
#cursor-outline {
    width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.5);
    position: fixed; border-radius: 50%; z-index: 9998;
    pointer-events: none; transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
}
body:hover #cursor-outline { opacity: 1; }

/* PART 2: ANIMATIONS & COMPONENTS */

/* Fade Up Animation */
.reveal { opacity: 0; transform: translateY(50px); transition: all 1s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Buttons */
.btn-primary {
    padding: 15px 40px;
    background: transparent;
    border: 1px solid var(--neon-blue);
    color: var(--neon-blue);
    border-radius: 100px;
    font-family: var(--font-display);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute; top: 0; left: 0; width: 0%; height: 100%;
    background: var(--neon-blue);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-primary:hover { color: black; }
.btn-primary:hover::before { width: 100%; }

/* Navigation Glass Effect */
nav {
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* 3D Canvas Background */
#webgl-canvas {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    z-index: -1; opacity: 0.4;
}
