@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Orbitron', sans-serif;
}

body {
    background: #000;
    color: #fff;
    overflow-x: hidden;
}


/* Background Canvas */

#hackerCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: black;
}


/* Header */

header {
    width: 100%;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 10;
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid #ff0000;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #ff0000;
}

.logo span {
    color: #00ff22;
}

nav {
    display: flex;
    gap: 25px;
}

nav a {
    color: #fff;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 6px;
    transition: 0.3s;
}

nav a:hover,
nav a.active {
    background-color: #ff0000;
    color: #000;
}


/* Mobile Menu */

.menu-toggle {
    display: none;
    font-size: 32px;
    cursor: pointer;
    color: #ff0000;
}

@media (max-width: 768px) {
    nav {
        position: fixed;
        top: 60px;
        right: -100%;
        flex-direction: column;
        width: 200px;
        background: rgba(0, 0, 0, 0.95);
        transition: 0.3s;
        padding: 20px;
        border-left: 1px solid #ff0000;
    }
    nav.active {
        right: 0;
    }
    .menu-toggle {
        display: block;
    }
}


/* Hero Section */

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.glitch {
    font-size: 58px;
    color: #ff0000;
    text-shadow: 0 0 10px #ff0000;
    animation: glitchAnim 1.5s infinite;
}

@keyframes glitchAnim {
    0% {
        text-shadow: 2px 2px #ffd900;
    }
    50% {
        text-shadow: -2px -2px #ff0000;
    }
    100% {
        text-shadow: 2px -2px #ffd900;
    }
}

#typeEffect {
    margin-top: 10px;
    font-size: 22px;
    color: #00eaff;
}


/* Button */

.btn {
    margin-top: 25px;
    padding: 14px 32px;
    background: linear-gradient(45deg, #00eaff, #ff007f);
    border-radius: 8px;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px #00eaff;
}