/* =======================================================
   CITEX GROUP
   Premium Website
======================================================= */

body{
    background:#050816;
    overflow-x:hidden;
}

/* Canvas liegt hinter allem */
#bg-canvas{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:-2;
}


body::before{
    content:"";
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:-2;

    background-image:
        radial-gradient(rgba(0,191,255,0.15) 1px, transparent 1px);

    background-size:40px 40px;

    animation: moveDots 20s linear infinite;
}

@keyframes moveDots{
    from{
        transform:translateY(0px);
    }
    to{
        transform:translateY(-40px);
    }
}



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

html{
    scroll-behavior:smooth;
}

body{

    font-family:"Poppins",sans-serif;

    background:#050816;

    color:#ffffff;

    overflow-x:hidden;

}

/* Scrollbar */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#0b1023;

}

::-webkit-scrollbar-thumb{

    background:#00bfff;

    border-radius:20px;

}

/* Container */

.container{

    width:90%;

    max-width:1400px;

    margin:auto;

}

/* ================= HEADER ================= */

header{

    position:fixed;

    width:100%;

    top:0;

    left:0;

    z-index:1000;

    backdrop-filter:blur(15px);

    background:rgba(5,8,22,.65);

    border-bottom:1px solid rgba(255,255,255,.05);

}

header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:22px 0;

}

.logo h2{

    font-size:32px;

    font-weight:800;

}

.logo span{

    color:#00bfff;

}

nav{

    display:flex;

    gap:35px;

}

nav a{

    color:white;

    text-decoration:none;

    font-weight:500;

    transition:.35s;

}

nav a:hover{

    color:#00bfff;

}

.discord-btn{

    text-decoration:none;

    color:white;

    background:linear-gradient(90deg,#009dff,#00d4ff);

    padding:14px 28px;

    border-radius:40px;

    font-weight:700;

    transition:.3s;

}

.discord-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 0 25px #00bfff;

}

/* ================= HERO ================= */

#home{

    min-height:100vh;

    display:flex;

    justify-content:space-around;

    align-items:center;

    padding:150px 8%;

}

.hero{

    max-width:700px;

}

.hero h1{

    font-size:78px;

    line-height:1.1;

    font-weight:800;

}

.hero p{

    margin-top:30px;

    color:#b8c4e0;

    font-size:20px;

    line-height:1.8;

}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-top:45px;

}

.primary-btn{

    background:#00bfff;

    color:white;

    padding:18px 34px;

    border-radius:40px;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}

.primary-btn:hover{

    transform:translateY(-5px);

    box-shadow:0 0 35px #00bfff;

}

.secondary-btn{

    border:2px solid #00bfff;

    color:#00bfff;

    padding:18px 34px;

    border-radius:40px;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}

.secondary-btn:hover{

    background:#00bfff;

    color:white;

}

.hero-card{

    width:380px;

}

.status-card{

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

    border-radius:25px;

    padding:35px;

    backdrop-filter:blur(15px);

}

.status-card h3{

    font-size:28px;

    margin-bottom:25px;

}

.online{

    display:flex;

    align-items:center;

    gap:10px;

    color:#4cff4c;

    font-weight:700;

    margin-bottom:20px;

}

.dot{

    width:12px;

    height:12px;

    border-radius:50%;

    background:#4cff4c;

    box-shadow:0 0 15px #4cff4c;

}

.status{

    margin-top:15px;

    font-size:18px;

}

/* ================= SECTIONS ================= */

section{
    padding:120px 8%;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title h2{
    font-size:48px;
    font-weight:800;
    margin-bottom:15px;
}

.section-title p{
    color:#b8c4e0;
    font-size:18px;
}

/* ================= ABOUT ================= */

.about-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.about-card{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    padding:30px;

    border-radius:20px;

    backdrop-filter:blur(12px);

    transition:.3s;

}

.about-card:hover{

    transform:translateY(-10px);

    border-color:#00bfff;

}

.about-card h3{

    margin-bottom:15px;

    font-size:22px;

}

/* ================= PROJECTS ================= */

.project-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

}

.project-card{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:25px;

    padding:35px;

    transition:.4s;

    backdrop-filter:blur(12px);

}

.project-card:hover{

    transform:translateY(-12px);

    border-color:#00bfff;

    box-shadow:0 0 40px rgba(0,191,255,.2);

}

.project-card .icon{

    font-size:40px;

    margin-bottom:15px;

}

.project-card h3{

    font-size:26px;

    margin-bottom:15px;

}

.project-card p{

    color:#b8c4e0;

    line-height:1.6;

}

.project-card ul{

    margin-top:20px;

    list-style:none;

}

.project-card ul li{

    margin-bottom:8px;

    color:#cfe6ff;

}

.project-btn{

    display:inline-block;

    margin-top:25px;

    padding:12px 25px;

    background:#00bfff;

    color:white;

    border-radius:30px;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}

.project-btn:hover{

    transform:scale(1.05);

}

/* ================= STATS ================= */

.stats-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));

    gap:25px;

    text-align:center;

}

.stat-card{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    padding:40px;

    border-radius:20px;

    backdrop-filter:blur(12px);

}

.stat-card h2{

    font-size:40px;

    color:#00bfff;

}

/* ================= TEAM ================= */

.team-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:25px;

}

.team-card{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    padding:35px;

    border-radius:20px;

    text-align:center;

    transition:.3s;

}

.team-card:hover{

    transform:translateY(-10px);

    border-color:#00bfff;

}

.avatar{

    font-size:40px;

    margin-bottom:15px;

}

/* ================= CONTACT ================= */

.contact-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:40px;

}

.contact-box{

    background:rgba(255,255,255,.05);

    padding:25px;

    border-radius:15px;

    margin-bottom:15px;

}

.contact-form{

    display:flex;

    flex-direction:column;

    gap:15px;

}

.contact-form input,
.contact-form textarea{

    padding:15px;

    border:none;

    border-radius:10px;

    background:#0b1023;

    color:white;

}

.contact-form button{

    background:#00bfff;

    border:none;

    padding:15px;

    border-radius:10px;

    color:white;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

}

.contact-form button:hover{

    box-shadow:0 0 25px #00bfff;

}

/* ================= FOOTER ================= */

footer{

    padding:60px 8%;

    background:#050816;

    border-top:1px solid rgba(255,255,255,.05);

}

.footer-content{

    display:flex;

    justify-content:space-between;

    flex-wrap:wrap;

    gap:30px;

}

.footer-links,
.footer-social{

    display:flex;

    flex-direction:column;

    gap:10px;

}

.footer-links a,
.footer-social a{

    color:#b8c4e0;

    text-decoration:none;

    transition:.3s;

}

.footer-links a:hover,
.footer-social a:hover{

    color:#00bfff;

}

.copyright{

    text-align:center;

    margin-top:40px;

    color:#667;

}