* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #020203;
    color: #ffffff;
    font-family: "Orbitron", Arial, sans-serif;
    overflow-x: hidden;
}


/* =========================================
   BACKGROUND
========================================= */

.background {
    position: fixed;
    inset: 0;
    z-index: -10;
    background:
        radial-gradient(
            circle at 50% 30%,
            rgba(255,255,255,0.045),
            transparent 35%
        ),
        #020203;
    pointer-events: none;
}

.glow {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
}

.glow-one {
    top: 10%;
    left: 20%;
    background: #ffffff;
}

.glow-two {
    top: 55%;
    right: 10%;
    background: #6b00ff;
}


/* PARTICLES */

.particles span {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    opacity: 0.5;
    animation: float 6s infinite ease-in-out;
}

.particles span:nth-child(1) {
    top: 20%;
    left: 10%;
}

.particles span:nth-child(2) {
    top: 30%;
    left: 25%;
    animation-delay: 1s;
}

.particles span:nth-child(3) {
    top: 15%;
    left: 45%;
    animation-delay: 2s;
}

.particles span:nth-child(4) {
    top: 40%;
    left: 65%;
    animation-delay: 3s;
}

.particles span:nth-child(5) {
    top: 60%;
    left: 80%;
    animation-delay: 1.5s;
}

.particles span:nth-child(6) {
    top: 75%;
    left: 20%;
    animation-delay: 2.5s;
}

.particles span:nth-child(7) {
    top: 80%;
    left: 50%;
    animation-delay: 4s;
}

.particles span:nth-child(8) {
    top: 70%;
    left: 70%;
    animation-delay: 2s;
}

.particles span:nth-child(9) {
    top: 50%;
    left: 40%;
    animation-delay: 1s;
}

.particles span:nth-child(10) {
    top: 25%;
    left: 85%;
    animation-delay: 3s;
}

.particles span:nth-child(11) {
    top: 90%;
    left: 35%;
    animation-delay: 2s;
}

.particles span:nth-child(12) {
    top: 35%;
    left: 55%;
    animation-delay: 3.5s;
}

.particles span:nth-child(13) {
    top: 65%;
    left: 5%;
    animation-delay: 4s;
}

.particles span:nth-child(14) {
    top: 45%;
    left: 90%;
    animation-delay: 2s;
}

.particles span:nth-child(15) {
    top: 10%;
    left: 75%;
    animation-delay: 1s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.2;
    }

    50% {
        transform: translateY(-25px);
        opacity: 0.9;
    }
}


/* =========================================
   NAVBAR
========================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 75px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-bottom: 1px solid rgba(255,255,255,0.08);

    background: rgba(0,0,0,0.75);

    backdrop-filter: blur(12px);

    z-index: 1000;
}

.logo {
    position: absolute;
    left: 35px;

    color: white;
    text-decoration: none;

    font-size: 25px;
    font-weight: 900;

    letter-spacing: 5px;
}

.nav-links {
    display: flex;
    gap: 42px;
}

.nav-links a {
    color: #888;

    text-decoration: none;

    font-size: 11px;
    letter-spacing: 2px;

    transition: 0.3s;
}

.nav-links a:hover {
    color: white;
}


/* =========================================
   HERO
========================================= */

.hero {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    position: relative;
}

.hero-content {
    margin-top: 50px;
}

.hero-line {
    width: 70px;
    height: 2px;

    background: white;

    margin: 0 auto 25px;

    box-shadow: 0 0 20px white;
}

.hero h1 {
    font-size: clamp(80px, 15vw, 190px);

    font-weight: 900;

    letter-spacing: 15px;

    text-shadow:
        0 0 20px rgba(255,255,255,0.15),
        0 0 60px rgba(255,255,255,0.08);
}

.hero-subtitle {
    font-size: 13px;

    letter-spacing: 8px;

    color: #aaa;

    margin-top: -10px;
}

.hero-description {
    max-width: 550px;

    margin: 25px auto;

    color: #666;

    font-size: 12px;

    line-height: 2;
}

.hero-button {
    display: inline-block;

    margin-top: 15px;

    padding: 14px 28px;

    border: 1px solid #444;

    color: white;

    text-decoration: none;

    font-size: 10px;

    letter-spacing: 3px;

    transition: 0.3s;
}

.hero-button:hover {
    background: white;
    color: black;

    box-shadow: 0 0 30px rgba(255,255,255,0.2);
}


/* =========================================
   SECTIONS
========================================= */

.section {
    min-height: 90vh;

    padding: 120px 7%;

    position: relative;
}

.section-title {
    text-align: center;

    margin-bottom: 70px;

    font-size: 12px;

    letter-spacing: 6px;

    color: #ff00ff;

    text-shadow: 0 0 15px rgba(255,0,255,0.5);
}

.section-title.cyan {
    color: #00d9ff;
    text-shadow: 0 0 15px rgba(0,217,255,0.5);
}

.section-title.purple {
    color: #9b5cff;
    text-shadow: 0 0 15px rgba(155,92,255,0.5);
}

.section-title.red {
    color: #ff3b3b;
    text-shadow: 0 0 15px rgba(255,59,59,0.5);
}

.section-title.green {
    color: #00ff9d;
    text-shadow: 0 0 15px rgba(0,255,157,0.5);
}


/* =========================================
   FOUNDER
========================================= */

.founder-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.founder-card {
    text-align: center;

    position: relative;

    padding: 30px;
}

.founder-aura {
    position: absolute;

    width: 300px;
    height: 300px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    background: radial-gradient(
        circle,
        rgba(255,255,255,0.16),
        transparent 65%
    );

    filter: blur(20px);

    z-index: -1;
}

.founder-avatar {
    width: 145px;
    height: 145px;

    margin: auto;

    border-radius: 50%;

    padding: 5px;

    border: 2px solid #777;

    box-shadow:
        0 0 20px rgba(255,255,255,0.25),
        0 0 70px rgba(255,255,255,0.08);
}

.founder-avatar img {
    width: 100%;
    height: 100%;

    border-radius: 50%;

    object-fit: cover;
}

.founder-card h2 {
    margin-top: 22px;

    font-size: 22px;

    letter-spacing: 4px;
}

.role {
    color: #ff00ff;

    font-size: 10px;

    letter-spacing: 4px;

    margin-top: 8px;
}

.status {
    color: #666;

    font-size: 8px;

    margin-top: 12px;

    letter-spacing: 2px;
}

.status-dot {
    display: inline-block;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #666;

    margin-right: 5px;
}


/* =========================================
   MEMBERS / DAY ONES
========================================= */

.members-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(150px, 1fr));

    gap: 45px;

    max-width: 1100px;

    margin: auto;
}

.member {
    text-align: center;

    transition: 0.35s;

    cursor: pointer;
}

.member:hover {
    transform: translateY(-12px);
}

.member-image {
    width: 105px;
    height: 105px;

    margin: auto;

    padding: 4px;

    border: 2px solid #555;

    border-radius: 50%;

    transition: 0.35s;
}

.member:hover .member-image {
    border-color: white;

    box-shadow:
        0 0 20px rgba(255,255,255,0.25),
        0 0 45px rgba(255,255,255,0.08);
}

.member-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 50%;
}

.member h3 {
    margin-top: 18px;

    font-size: 13px;

    letter-spacing: 3px;
}

.member p {
    margin-top: 7px;

    font-size: 8px;

    color: #555;

    letter-spacing: 2px;
}

.online {
    display: block;

    margin-top: 9px;

    font-size: 7px;

    color: #00ff9d;
}

.offline {
    display: block;

    margin-top: 9px;

    font-size: 7px;

    color: #555;
}


/* =========================================
   FRIENDS FROM JAVASCRIPT
========================================= */

.friends-list {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(220px, 1fr));

    gap: 20px;

    max-width: 1100px;

    margin: auto;
}

.friend-card {
    background: rgba(10,10,13,0.75);

    border: 1px solid #222;

    padding: 25px;

    text-align: center;

    transition: 0.3s;
}

.friend-card:hover {
    transform: translateY(-8px);

    border-color: #777;

    box-shadow:
        0 0 30px rgba(255,255,255,0.05);
}

.friend-card img {
    width: 75px;
    height: 75px;

    border-radius: 50%;

    object-fit: cover;

    margin-bottom: 15px;
}

.friend-card h3 {
    font-size: 13px;

    letter-spacing: 2px;
}

.friend-card p {
    color: #666;

    font-size: 9px;

    margin-top: 8px;
}

.discord-button {
    display: inline-block;

    margin-top: 18px;

    padding: 10px 18px;

    border: 1px solid #333;

    color: white;

    text-decoration: none;

    font-size: 9px;

    letter-spacing: 2px;

    transition: 0.3s;
}

.discord-button:hover {
    background: white;

    color: black;
}


/* =========================================
   SECURITY
========================================= */

.info-section {
    min-height: 65vh;

    display: flex;

    flex-direction: column;

    align-items: center;
}

.info-box {
    width: min(700px, 100%);

    text-align: center;

    padding: 60px 30px;

    border: 1px solid #222;

    background: rgba(5,5,7,0.7);
}

.info-icon {
    font-size: 35px;

    margin-bottom: 25px;
}

.info-box h2 {
    font-size: 20px;

    letter-spacing: 4px;
}

.info-box p {
    color: #666;

    font-size: 10px;

    line-height: 2;

    margin-top: 20px;
}


/* =========================================
   SERVERS
========================================= */

.server-box {
    max-width: 700px;

    margin: auto;

    display: flex;

    align-items: center;

    gap: 35px;

    padding: 35px;

    border: 1px solid #222;

    background: rgba(5,5,7,0.8);
}

.server-logo {
    width: 90px;
    height: 90px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #555;

    font-size: 18px;

    font-weight: 900;

    letter-spacing: 3px;
}

.server-info h2 {
    font-size: 16px;

    letter-spacing: 3px;
}

.server-info p {
    margin-top: 10px;

    color: #666;

    font-size: 9px;
}


/* =========================================
   FOOTER
========================================= */

footer {
    padding: 60px 20px;

    text-align: center;

    border-top: 1px solid #171717;

    background: #010101;
}

.footer-logo {
    font-size: 25px;

    font-weight: 900;

    letter-spacing: 7px;
}

footer p {
    margin-top: 20px;

    font-size: 8px;

    color: #444;

    letter-spacing: 2px;
}

footer span {
    display: block;

    margin-top: 10px;

    font-size: 7px;

    color: #333;

    letter-spacing: 3px;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 800px) {

    .navbar {
        height: auto;

        min-height: 70px;

        padding: 15px;

        flex-direction: column;

        gap: 15px;
    }

    .logo {
        position: static;
    }

    .nav-links {
        gap: 15px;

        flex-wrap: wrap;

        justify-content: center;
    }

    .nav-links a {
        font-size: 8px;
    }

    .hero h1 {
        font-size: 80px;

        letter-spacing: 8px;
    }

    .hero-subtitle {
        font-size: 9px;

        letter-spacing: 4px;
    }

    .section {
        padding: 100px 6%;
    }

    .members-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 35px 15px;
    }

    .server-box {
        flex-direction: column;

        text-align: center;
    }
}


@media (max-width: 450px) {

    .members-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 65px;
    }

    .section-title {
        font-size: 9px;
    }
}