* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0a0a0a;
    color: #e0e0e0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Particle Canvas */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Header & Navigation */
header {
    background-color: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.25rem;
    color: #C3F23A;
}

.logo-image {
    display: none;
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #C3F23A;
}

.off-screen-menu, .ham-menu {
    display: none;
}

/* Main Content */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

h1 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

p {
    color: #a0a0a0;
    font-size: 1.1rem;
    margin-top: 0.5rem;
    line-height: 1.6;
}

main a {
    color: #C3F23A;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

main a:hover {
    color: #d4ff5e;
}

/* Footer */
footer {
    background-color: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    color: #e0e0e0;
    text-align: center;
    padding: 2rem;
    margin-top: auto;
    position: relative;
    z-index: 1;
}

footer p {
    color: #a0a0a0;
    margin: 0.5rem 0;
}

footer a {
    color: #C3F23A;
    text-decoration: none;
    font-weight: 500;
}

footer a:hover {
    color: #d4ff5e;
}

/* Mobile Styles */
@media (max-width: 480px) {
    header {
        height: 100px;
        padding: 1rem;
        display: flex;
        align-items: center;
    }

    .off-screen-menu {
    display: block;
    background-color: rgb(0, 0, 0);
    height: 100vh;
    width: 100%;
    max-width: 400px;
    position: fixed;
    top: 0;
    right: -450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 3rem;
    transition: .3s ease;
    }

    .off-screen-menu li {
    list-style-type: none;
    }

    .off-screen-menu.active {
        right: 0;
    }

    nav {
        padding: 1rem;
        width: 100%;
        display: flex;
    }

    .ham-menu {
    display: block;
    height: 40px;
    width: 40px;
    margin-left: auto;
    position: relative;
    }

    .ham-menu span {
        height: 3px;
        width: 100%;
        background-color: #C3F23A;
        border-radius: 25px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: .3s ease;
    }

    .ham-menu span:nth-child(1) {
        top: 25%;
    }

    .ham-menu span:nth-child(3) {
        top: 75%;
    }

    .ham-menu.active span:nth-child(1) {
        top: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .ham-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .ham-menu.active span:nth-child(3) {
        top: 50%;
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    .logo {
        display: none;
    }

    .logo-image {
        display: block;
    }

    .nav-menu {
        display: none;
    }

    .nav-menu li {
        text-align: right;
    }

    .nav-menu a {
        font-weight: 300;
        font-size: 0.5rem;
    }

    h1 {
        font-size: 2rem;
    }
}