/* ===== GLOBAL RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== MAIN BODY STYLING ===== */
body {
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, #0a0015 0%, #1a0033 25%, #0d1b2a 50%, #1b0b3d 75%, #0a0020 100%);
    background-size: 400% 400%;
    animation: cyberpunkGradient 20s ease infinite;
    min-height: 100vh;
    color: #00ffff;
    overflow-x: hidden;
    position: relative;
}

@keyframes cyberpunkGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ===== ANIMATED GRID BACKGROUND ===== */
.cyber-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 0, 255, 0.15) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 30s linear infinite;
    z-index: 0;
    transform: perspective(1000px) rotateX(60deg);
    transform-origin: center top;
    pointer-events: none;
}

@keyframes gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}

/* ===== CITY BACKGROUND WITH GLOW ===== */
.city-bg {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, 
        rgba(255, 0, 255, 0.1) 0%, 
        rgba(0, 255, 255, 0.1) 50%, 
        transparent 100%);
    z-index: 1;
    pointer-events: none;
    animation: cityGlow 5s ease-in-out infinite;
}

@keyframes cityGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* ===== SCANLINES EFFECT ===== */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15),
        rgba(0, 0, 0, 0.15) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
    z-index: 999;
    animation: scanlineMove 8s linear infinite;
}

@keyframes scanlineMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(10px); }
}

/* ===== NAVIGATION BAR ===== */
.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background: rgba(10, 0, 30, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(0, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.2);
    z-index: 100;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #00ffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 0.5rem 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ffff, #ff00ff);
    transition: width 0.3s ease;
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link:hover {
    color: #ff00ff;
    text-shadow: 0 0 15px rgba(255, 0, 255, 0.8);
    animation: flicker 0.3s infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* ===== MAIN CONTAINER ===== */
.container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6rem 2rem 2rem;
    position: relative;
    z-index: 10;
}

/* ===== HERO SECTION ===== */
.hero-section {
    width: 100%;
    max-width: 1200px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== HOLOGRAPHIC CARD ===== */
.hologram-card {
    background: rgba(10, 0, 30, 0.7);
    border: 2px solid #00ffff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 
        0 0 30px rgba(0, 255, 255, 0.4),
        0 0 60px rgba(255, 0, 255, 0.3),
        inset 0 0 30px rgba(0, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    animation: hologramPulse 4s ease-in-out infinite;
}

@keyframes hologramPulse {
    0%, 100% {
        box-shadow: 
            0 0 30px rgba(0, 255, 255, 0.4),
            0 0 60px rgba(255, 0, 255, 0.3),
            inset 0 0 30px rgba(0, 255, 255, 0.1);
    }
    50% {
        box-shadow: 
            0 0 50px rgba(0, 255, 255, 0.6),
            0 0 100px rgba(255, 0, 255, 0.5),
            inset 0 0 50px rgba(0, 255, 255, 0.2);
    }
}

/* ===== CHARACTER SILHOUETTE ===== */
.character-silhouette {
    position: absolute;
    top: -100px;
    right: -50px;
    width: 400px;
    height: 500px;
    background: linear-gradient(180deg, transparent, rgba(0, 255, 255, 0.1));
    clip-path: polygon(40% 0%, 60% 0%, 65% 100%, 35% 100%);
    opacity: 0.3;
    animation: characterFloat 6s ease-in-out infinite;
}

@keyframes characterFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.character-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.4), transparent);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
    transform: translate(-50%, -50%);
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.8; }
}

/* ===== RAIN EFFECT ===== */
.rain-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 2px,
        rgba(0, 255, 255, 0.1) 2px,
        rgba(0, 255, 255, 0.1) 3px
    );
    animation: rainFall 1s linear infinite;
}

@keyframes rainFall {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

/* ===== CONTENT BOX ===== */
.content-box {
    position: relative;
    z-index: 2;
}

/* ===== STATUS INDICATOR ===== */
.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.status-dot {
    width: 12px;
    height: 12px;
    background: #00ff00;
    border-radius: 50%;
    box-shadow: 0 0 20px #00ff00;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.status-text {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.9rem;
    color: #00ff00;
    letter-spacing: 1px;
}

/* ===== GLITCH EFFECT ===== */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.glitch::before {
    animation: glitch1 2.5s infinite;
    color: #ff00ff;
    z-index: -1;
}

.glitch::after {
    animation: glitch2 2.5s infinite;
    color: #00ffff;
    z-index: -2;
}

@keyframes glitch1 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-3px, 3px); }
    40% { transform: translate(-3px, -3px); }
    60% { transform: translate(3px, 3px); }
    80% { transform: translate(3px, -3px); }
}

@keyframes glitch2 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(3px, -3px); }
    40% { transform: translate(3px, 3px); }
    60% { transform: translate(-3px, -3px); }
    80% { transform: translate(-3px, 3px); }
}

/* ===== CYBER TITLE ===== */
.cyber-title {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(90deg, #00ffff, #ff00ff, #ffff00, #00ffff);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 5s linear infinite;
    letter-spacing: 8px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    filter: drop-shadow(0 0 30px rgba(0, 255, 255, 0.8));
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.cyber-subtitle {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.2rem;
    color: #00ffff;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
    margin-bottom: 3rem;
    letter-spacing: 3px;
}

/* ===== HOLOGRAPHIC LOADER ===== */
.loader-container {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
    perspective: 1000px;
}

.holographic-loader {
    width: 150px;
    height: 150px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate3D 4s linear infinite;
}

@keyframes rotate3D {
    0% { transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg); }
    100% { transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg); }
}

.hex-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    border: 3px solid;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ringPulse 2s ease-in-out infinite;
}

.ring-1 {
    border-color: #00ffff;
    box-shadow: 0 0 30px #00ffff, inset 0 0 30px rgba(0, 255, 255, 0.3);
    animation-delay: 0s;
}

.ring-2 {
    width: 100px;
    height: 100px;
    border-color: #ff00ff;
    box-shadow: 0 0 30px #ff00ff, inset 0 0 30px rgba(255, 0, 255, 0.3);
    animation-delay: 0.3s;
}

.ring-3 {
    width: 120px;
    height: 120px;
    border-color: #ffff00;
    box-shadow: 0 0 30px #ffff00, inset 0 0 30px rgba(255, 255, 0, 0.3);
    animation-delay: 0.6s;
}

@keyframes ringPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.7;
    }
}

.core-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, #ffffff, #00ffff);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 40px #00ffff;
    animation: orbPulse 1.5s ease-in-out infinite;
}

@keyframes orbPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.3); }
}

/* ===== STATS CONTAINER ===== */
.stats-container {
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-item {
    display: grid;
    grid-template-columns: 150px 1fr 80px;
    align-items: center;
    gap: 1rem;
}

.stat-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.9rem;
    color: #00ffff;
    letter-spacing: 2px;
}

.stat-bar {
    height: 12px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid #00ffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: inset 0 0 10px rgba(0, 255, 255, 0.3);
}

.stat-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ffff, #ff00ff, #ffff00);
    background-size: 200% 100%;
    animation: statFlow 3s linear infinite;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}

@keyframes statFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.stat-value {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff00ff;
    text-align: right;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}

/* ===== CONSOLE BOX ===== */
.console-box {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #00ffff;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
    font-family: 'Share Tech Mono', monospace;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.console-line {
    color: #00ff00;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.8);
}

.typing-effect {
    animation: typing 2s steps(30) infinite;
    border-right: 2px solid #00ff00;
}

@keyframes typing {
    0%, 100% { width: 0; }
    50% { width: 100%; }
}

/* ===== ACTION BUTTONS ===== */
.action-buttons {
    display: flex;
    gap: 1.5rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.cyber-btn {
    position: relative;
    padding: 1rem 2rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    border: 2px solid;
    background: transparent;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}

.primary-btn {
    border-color: #00ffff;
    color: #00ffff;
}

.secondary-btn {
    border-color: #ff00ff;
    color: #ff00ff;
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.primary-btn:hover .btn-glow {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.3), transparent);
}

.secondary-btn:hover .btn-glow {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.3), transparent);
}

.cyber-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.5);
}

.primary-btn:hover {
    background: rgba(0, 255, 255, 0.1);
    text-shadow: 0 0 20px #00ffff;
}

.secondary-btn:hover {
    background: rgba(255, 0, 255, 0.1);
    text-shadow: 0 0 20px #ff00ff;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 0, 255, 0.5);
    border-radius: 10px;
    text-align: center;
}

.contact-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.9rem;
    color: #ff00ff;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    color: #00ffff;
    text-decoration: none;
    font-family: 'Share Tech Mono', monospace;
    font-size: 1rem;
    border: 2px solid #00ffff;
    border-radius: 8px;
    background: rgba(0, 255, 255, 0.05);
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.contact-link:hover {
    background: rgba(0, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 30px rgba(0, 255, 255, 0.6);
    text-shadow: 0 0 15px rgba(0, 255, 255, 1);
}

.link-icon {
    font-size: 1.5rem;
    animation: signalPulse 2s ease-in-out infinite;
}

@keyframes signalPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* ===== FLOATING BILLBOARDS ===== */
.billboard {
    position: fixed;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 0.8rem;
    backdrop-filter: blur(10px);
    z-index: 5;
    animation: billboardFloat 10s ease-in-out infinite;
    opacity: 0.6;
}

.billboard-1 {
    top: 20%;
    right: 5%;
    border-color: #00ffff;
    color: #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    animation-delay: 0s;
}

.billboard-2 {
    top: 60%;
    left: 5%;
    border-color: #ff00ff;
    color: #ff00ff;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
    animation-delay: 2s;
}

.billboard-3 {
    top: 40%;
    right: 10%;
    border-color: #ffff00;
    color: #ffff00;
    box-shadow: 0 0 20px rgba(255, 255, 0, 0.5);
    animation-delay: 4s;
}

@keyframes billboardFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(2deg); }
    50% { transform: translateY(0) rotate(-2deg); }
    75% { transform: translateY(-20px) rotate(2deg); }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .nav-bar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .cyber-title {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .cyber-subtitle {
        font-size: 1rem;
    }

    .hologram-card {
        padding: 2rem 1.5rem;
    }

    .character-silhouette {
        display: none;
    }

    .stat-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .cyber-btn {
        width: 100%;
    }

    .billboard {
        font-size: 0.6rem;
        padding: 0.5rem 1rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }
}

/* ===== ADDITIONAL STYLES FOR NEW PAGES ===== */
.about-content {
    margin: 2rem 0;
}

.info-panel {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.panel-title {
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
    letter-spacing: 3px;
}

.panel-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(0, 255, 255, 0.9);
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.project-card {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #00ffff;
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.6);
    border-color: #ff00ff;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.project-title {
    font-size: 1.3rem;
    color: #00ffff;
    letter-spacing: 2px;
}

.project-status {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.8rem;
    color: #00ff00;
    padding: 0.3rem 0.8rem;
    border: 1px solid #00ff00;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.project-description {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(0, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.project-tech {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tech-tag {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.8rem;
    color: #ff00ff;
    padding: 0.3rem 0.8rem;
    border: 1px solid #ff00ff;
    border-radius: 5px;
    background: rgba(255, 0, 255, 0.1);
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}

/* Contact Page Styles */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-card {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #00ffff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 30px rgba(0, 255, 255, 0.6);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px #00ffff);
}

.contact-method-title {
    font-size: 1.2rem;
    color: #00ffff;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.contact-info {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    color: rgba(0, 255, 255, 0.8);
    line-height: 1.6;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-link {
    color: #ff00ff;
    text-decoration: none;
    font-family: 'Share Tech Mono', monospace;
    padding: 0.5rem 1rem;
    border: 1px solid #ff00ff;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 0, 255, 0.2);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.6);
}

/* Contact Form */
.contact-form-section {
    margin: 3rem 0;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
}

.form-title {
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
}

.cyber-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.9rem;
    color: #00ffff;
    letter-spacing: 2px;
}

.cyber-input,
.cyber-textarea {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #00ffff;
    border-radius: 8px;
    padding: 1rem;
    color: #00ffff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: inset 0 0 10px rgba(0, 255, 255, 0.2);
}

.cyber-input:focus,
.cyber-textarea:focus {
    outline: none;
    border-color: #ff00ff;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

.cyber-input::placeholder,
.cyber-textarea::placeholder {
    color: rgba(0, 255, 255, 0.5);
}

.cyber-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-info {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.85rem;
    color: rgba(0, 255, 255, 0.6);
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
}

