:root {
    --gold: #FFD700;
    --bg-dark: #0a0a0b;
    --glass: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 215, 0, 0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
body { background: var(--bg-dark); color: white; overflow-x: hidden; }

.cyber-grid {
    position: fixed; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(255, 215, 0, 0.02) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 215, 0, 0.02) 1px, transparent 1px);
    background-size: 40px 40px; z-index: -1;
}

/* Navbar (Reused) */
.navbar {
     display: flex; justify-content: space-between; align-items: center; padding: 30px 10%; position: fixed; width: 100%; z-index: 100; 
    }
.logo {
     font-family: 'Orbitron'; font-size: 1.8rem; }
.logo span { color: var(--gold); }
.nav-links { display: flex; list-style: none; }
.nav-links li a { text-decoration: none; color: #fff; margin-left: 40px; font-size: 0.8rem; transition: 0.3s; text-transform: uppercase; }
.nav-links li a.active { color: var(--gold); }

/* Layout */
.contact-container { padding: 120px 10% 50px; min-height: 100vh; }
.contact-header { text-align: center; margin-bottom: 50px; }

.profile-mini {
    width: 100px; height: 100px; border-radius: 50%; border: 2px solid var(--gold);
    margin: 0 auto 15px; overflow: hidden; box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}
.profile-mini img { width: 100%; height: 100%; object-fit: cover; }

.glitch-text { font-family: 'Orbitron'; color: var(--gold); letter-spacing: 3px; }

.nexus-grid {
    display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: start;
}

/* Social Buttons */
.comm-links { display: flex; flex-direction: column; gap: 15px; }
.comm-card {
    background: var(--glass); border: 1px solid var(--border); padding: 20px;
    text-decoration: none; color: white; border-radius: 12px; display: flex;
    align-items: center; gap: 15px; transition: 0.4s;
}
.comm-card:hover { background: rgba(255, 215, 0, 0.1); border-color: var(--gold); transform: translateX(10px); }
.icon { font-size: 1.5rem; }

/* Form Styling */
.form-wrapper {
    background: var(--glass); border: 1px solid var(--border);
    padding: 40px; border-radius: 20px; backdrop-filter: blur(10px);
}
.input-group { margin-bottom: 20px; text-align: left; }
.input-group label { display: block; font-family: 'Orbitron'; font-size: 0.7rem; color: var(--gold); margin-bottom: 8px; }
input, textarea {
    width: 100%; background: rgba(0,0,0,0.5); border: 1px solid var(--border);
    padding: 12px; color: white; border-radius: 5px; outline: none; transition: 0.3s;
}
input:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 10px rgba(255, 215, 0, 0.2); }

.send-btn {
    width: 100%; padding: 15px; background: var(--gold); border: none;
    font-family: 'Orbitron'; font-weight: bold; cursor: pointer; transition: 0.4s;
}
.send-btn:hover { letter-spacing: 2px; box-shadow: 0 0 20px var(--gold); }

/* Success State */
.success-box { text-align: center; padding: 40px 0; }
.success-box h3 { color: var(--gold); font-family: 'Orbitron'; margin-bottom: 10px; }
.reset-btn { margin-top: 20px; background: transparent; border: 1px solid var(--gold); color: var(--gold); padding: 10px 20px; cursor: pointer; }

@media (max-width: 900px) { .nexus-grid { grid-template-columns: 1fr; } }