/* ============================================
   SHARED STYLES — All secondary pages
   (contact, legal, privacy, terms)
   ============================================ */
        :root {
            --bg: #030303;
            --surface: rgba(15, 15, 15, 0.7);
            --grid-line: #1f1f1f;
            --accent: #00f3ff;
            --accent-dim: rgba(0, 243, 255, 0.1);
            --status-green: #00ff9d;
            --warn: #ff003c;
            --text-main: #ededed;
            --text-dim: #888;
            --mono: 'JetBrains Mono', monospace;
            --sans: 'Inter', sans-serif;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; cursor: none; user-select: none; }
        
        body {
            background-color: var(--bg);
            color: var(--text-main);
            font-family: var(--sans);
            overflow-x: hidden;
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* --- CURSOR --- */
        #cursor {
            width: 8px; height: 8px; background: var(--accent);
            position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
            transform: translate(-50%, -50%); mix-blend-mode: difference;
        }
        #cursor-ring {
            width: 40px; height: 40px; border: 1px solid var(--text-dim);
            border-radius: 50%; position: fixed; top: 0; left: 0;
            pointer-events: none; z-index: 9998; transform: translate(-50%, -50%);
            transition: width 0.2s, height 0.2s, border-color 0.2s;
        }
        body.hovering #cursor-ring { width: 60px; height: 60px; border-color: var(--accent); background: rgba(0,243,255,0.05); }

        /* --- STAR BACKGROUND --- */
        #stars-canvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none; }

        /* --- TYPOGRAPHY --- */
        .mono { font-family: var(--mono); letter-spacing: 0.05em; }
        .accent-text { color: var(--accent); }
        h1, h2, h3 { font-weight: 800; text-transform: uppercase; letter-spacing: -0.03em; }

        /* --- HEADER --- */
        header {
            position: fixed; top: 0; width: 100%; padding: 20px 40px; z-index: 100;
            display: flex; justify-content: space-between; align-items: center;
            background: rgba(3, 3, 3, 0.7); backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--grid-line);
        }
        .nav-links { display: flex; gap: 30px; }
        .nav-link { color: var(--text-dim); text-decoration: none; font-size: 0.8rem; position: relative; transition: color 0.3s; }
        .nav-link:hover { color: #fff; text-shadow: 0 0 10px rgba(255,255,255,0.5); }

        /* --- LAYOUT --- */
        .container { 
            max-width: 1000px; 
            margin: 0 auto; 
            padding: 140px 40px 80px; 
            position: relative; 
            z-index: 1;
            flex: 1;
        }

        /* --- PAGE TITLE --- */
        .page-hero {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .page-title {
            font-size: clamp(2.5rem, 6vw, 4rem);
            line-height: 0.9;
            margin-bottom: 20px;
            color: #fff;
        }

        /* --- CONTACT GRID --- */
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 60px;
        }

        /* --- CONTACT CARD --- */
        .contact-card {
            background: var(--surface);
            border: 1px solid rgba(255,255,255,0.08);
            padding: 40px;
            position: relative;
            backdrop-filter: blur(12px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
            overflow: hidden;
            border-radius: 8px;
            transition: all 0.3s ease;
            text-align: center;
            text-decoration: none;
            display: block;
        }
        
        .contact-card::before {
            content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background-image: 
                linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 20px 20px;
            z-index: -1;
            pointer-events: none;
        }
        
        .contact-card::after {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 50%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.05), transparent);
            animation: cardSweep 10s ease-in-out infinite;
            pointer-events: none;
        }
        
        @keyframes cardSweep {
            0% { left: -50%; }
            100% { left: 150%; }
        }
        
        .contact-card:hover {
            border-color: rgba(0, 243, 255, 0.4);
            box-shadow: 0 0 40px rgba(0, 243, 255, 0.15);
            transform: translateY(-5px);
        }
        
        .contact-card:hover .card-icon {
            transform: scale(1.1);
            text-shadow: 0 0 30px var(--accent);
        }

        .card-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--accent);
            transition: all 0.3s;
            display: block;
        }
        
        .contact-card h3 {
            color: #fff;
            font-size: 1.2rem;
            margin-bottom: 10px;
        }
        
        .contact-card p {
            color: var(--text-dim);
            font-size: 0.9rem;
            margin: 0;
        }

        /* --- FORM SECTION --- */
        .form-card {
            background: var(--surface);
            border: 1px solid rgba(255,255,255,0.08);
            padding: 50px;
            border-radius: 8px;
            backdrop-filter: blur(12px);
            position: relative;
            overflow: hidden;
        }
        
        .form-card::before {
            content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background-image: 
                linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
            background-size: 30px 30px;
            z-index: -1;
        }
        
        .form-title {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .form-title h2 {
            color: #fff;
            font-size: 1.5rem;
            margin-bottom: 10px;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            font-family: var(--mono);
            font-size: 0.75rem;
            color: var(--accent);
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px 20px;
            background: rgba(0, 0, 0, 0.4);
            border: 1px solid var(--grid-line);
            border-radius: 4px;
            color: var(--text-main);
            font-family: var(--sans);
            font-size: 1rem;
            transition: all 0.3s;
            outline: none;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--accent);
            box-shadow: 0 0 15px rgba(0, 243, 255, 0.1);
        }
        
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .submit-btn {
            width: 100%;
            padding: 18px 30px;
            background: var(--accent);
            border: none;
            border-radius: 4px;
            color: #000;
            font-family: var(--mono);
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: none;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        
        .submit-btn:hover {
            box-shadow: 0 0 30px rgba(0, 243, 255, 0.4);
            transform: translateY(-2px);
        }
        
        .submit-btn::after {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s;
        }
        
        .submit-btn:hover::after {
            left: 100%;
        }

        /* --- FOOTER --- */
        footer { 
            padding: 30px 40px; 
            background: rgba(0,0,0,0.9); 
            border-top: 1px solid var(--grid-line);
            display: flex; 
            justify-content: space-between; 
            font-size: 0.8rem; 
            color: var(--text-dim);
        }

        /* --- MOBILE --- */
        @media (max-width: 768px) {
            .contact-grid { grid-template-columns: 1fr; }
            .form-row { grid-template-columns: 1fr; }
            .nav-links { display: none; }
            .container { padding: 120px 20px 60px; }
        }

        /* --- REVEAL ANIMATION --- */
        .reveal {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease-out;
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }
