/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BASE */
body {
    font-family: "Segoe UI", sans-serif;
    background: #050505;
    color: white;
}

/* HERO */
.hero {
    height: 100vh;
    background: radial-gradient(circle at center, #111, #050505);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(20px);
}

/* HERO CONTENT */
.hero-content {
    z-index: 2;
}

/* LOGO */
.logo {
    width: 100px;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 30px rgba(0,255,200,0.15);
}

/* TITLE */
h1 {
    font-size: 80px;
    letter-spacing: 6px;
}

/* SUBTITLE */
.hero p {
    opacity: 0.5;
    margin-top: 10px;
}

/* BUTTON */
.btn {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 50px;
    border-radius: 10px;
    background: linear-gradient(135deg, #00ffcc, #00ccaa);
    color: black;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    box-shadow: 0 0 30px #00ffcc;
    transform: scale(1.05);
}

/* FEATURES */
.features {
    padding: 100px 20px;
    text-align: center;
}

.features h2 {
    font-size: 40px;
    margin-bottom: 50px;
}

/* GRID */
.grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* BOX */
.box {
    background: #111;
    padding: 30px;
    border-radius: 15px;
    width: 250px;
    transition: 0.3s;
    border: 1px solid #1a1a1a;
}

.box:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(0,255,200,0.2);
}

/* CTA */
.cta {
    padding: 120px 20px;
    text-align: center;
    background: linear-gradient(to top, #000, #050505);
}

.cta h2 {
    font-size: 40px;
}

.big {
    margin-top: 40px;
    padding: 20px 60px;
    font-size: 18px;
}

/* FOOTER */
.footer {
    background: #050505;
    padding: 80px 20px 30px;
    text-align: center;
    border-top: 1px solid #111;
}

.footer-logo {
    width: 60px;
    border-radius: 15px;
    margin-bottom: 15px;
}

.footer h3 {
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

/* SOCIALS */
.social {
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;

    background: #0f0f0f;
    border: 1px solid #1f1f1f;

    color: white;

    transition: 0.25s;
}

/* HOVER CLEAN */
.social:hover {
    border: 1px solid #00ffcc;
    color: #00ffcc;

    box-shadow: 0 0 15px rgba(0,255,200,0.2);
    transform: translateY(-2px);
}

/* BOTTOM */
.footer-bottom {
    margin-top: 40px;
    opacity: 0.4;
    font-size: 14px;
}

.discord:hover {
    border-color: #5865F2;
    color: #5865F2;
}

.twitter:hover {
    border-color: #888;
    color: #aaa;
}

.official:hover {
    border-color: #00ffcc;
    color: #00ffcc;
}