*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#050505;
    color:white;
}

/* NAVBAR */

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:10px 5%;

    background:#0d1117;

    border-bottom:2px solid #5cff8d;

    position:sticky;
    top:0;
    z-index:999;
}

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    width:120px;
    height:50px;

    object-fit:contain;

    display:block;

    filter:
    drop-shadow(0 0 10px #6dff9f);

    transition:0.3s;

    animation: glow 3s infinite;
}

.logo img:hover{
    transform:scale(1.05);
}

@keyframes glow{

    0%{
        filter:
        drop-shadow(0 0 5px #5cff8d);
    }

    50%{
        filter:
        drop-shadow(0 0 20px #7dffad);
    }

    100%{
        filter:
        drop-shadow(0 0 5px #5cff8d);
    }

}

nav ul{
    display:flex;
    gap:20px;
    list-style:none;
}

nav a{
    text-decoration:none;
    color:white;
    transition:0.3s;
    font-weight:bold;
    font-size:16px;
}

nav a:hover{
    color:#8fffba;
}

/* HERO */

.hero{
    height:90vh;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    background:
    linear-gradient(
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.75)),
    url("channels4_profile.jpg");

    background-size:cover;
    background-position:center;
}

.hero h1{
    font-size:72px;
    color:#9dffb8;

    text-shadow:
    0 0 20px #5cff8d;
}

.hero p{
    margin-top:15px;
    font-size:22px;
    color:#d7ffe4;
}

/* BUTTONS */

.main-btn{
    margin-top:30px;

    padding:14px 34px;

    background:#5cff8d;

    color:black;

    text-decoration:none;

    font-weight:bold;

    border-radius:12px;

    transition:0.3s;
}

.main-btn:hover{
    transform:scale(1.08);

    box-shadow:
    0 0 20px #72ff9f;
}

/* CARDS */

.cards{
    display:grid;

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

    gap:30px;

    padding:70px 8%;
}

.card{
    background:#111827;

    padding:30px;

    border-radius:20px;

    border:1px solid #63ff98;

    transition:0.3s;
}

.card:hover{
    transform:translateY(-10px);

    box-shadow:
    0 0 25px #55ff8d;
}

.card h2{
    margin-bottom:15px;
    color:#a8ffc2;
}

/* PAGE HEADER */

.page-header{
    text-align:center;
    padding:70px 20px 30px;
}

.page-header h1{
    font-size:52px;
    color:#98ffb8;
}

/* VIDEOS */

.video-container{
    width:90%;
    max-width:1200px;
    margin:40px auto;
}

.video-container iframe{
    width:100%;
    height:700px;

    border-radius:20px;

    border:2px solid #63ff98;

    background:black;
}

/* CONTACT */

.contact-box{
    width:90%;
    max-width:700px;
    margin:40px auto;
}

form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

input,
textarea{
    padding:15px;

    background:#111827;

    border:1px solid #63ff98;

    border-radius:12px;

    color:white;

    font-size:16px;
}

textarea{
    height:200px;
    resize:none;
}

button{
    padding:15px;

    background:#5cff8d;

    border:none;

    border-radius:12px;

    font-weight:bold;

    cursor:pointer;

    transition:0.3s;
}

button:hover{
    transform:scale(1.03);

    box-shadow:
    0 0 20px #72ff9f;
}

/* DISCORD & UPDATES */

.discord-box,
.updates-box{
    width:90%;
    max-width:900px;

    margin:40px auto;

    text-align:center;
}

.update{
    background:#111827;

    margin-bottom:20px;

    padding:25px;

    border-radius:15px;

    border:1px solid #63ff98;
}

/* FOOTER */

footer{
    text-align:center;

    padding:30px;

    margin-top:40px;

    border-top:1px solid #2d3748;

    color:#8fd9aa;
}

/* MOBILE */

@media(max-width:768px){

    nav{
        flex-direction:column;
        gap:15px;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
    }

    .logo img{
        width:100px;
        height:45px;
    }

    .hero h1{
        font-size:44px;
    }

    .hero p{
        font-size:18px;
    }

    .page-header h1{
        font-size:36px;
    }

    .video-container iframe{
        height:350px;
    }

    .cards{
        padding:40px 5%;
    }

}
