* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    color: white;

    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.65)
        ),
        url("background.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* HEADER */

header {
    width: 100%;
    padding: 20px 50px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(0, 0, 0, 0.45);

    backdrop-filter: blur(10px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

header h1 {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 2px;
}

/* NAVIGATION */

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: white;
    text-decoration: none;

    font-size: 16px;
    font-weight: 600;

    transition: 0.2s;
}

nav a:hover {
    opacity: 0.7;
    transform: translateY(-2px);
}

/* MAIN */

main {
    min-height: calc(100vh - 150px);

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
}

/* HERO */

.hero {
    max-width: 800px;
    padding: 40px;
}

.hero h2 {
    font-size: 64px;
    margin-bottom: 15px;

    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 20px;
    opacity: 0.9;

    margin-bottom: 35px;
}

/* BUTTONS */

.buttons {
    display: flex;
    justify-content: center;

    gap: 15px;
    flex-wrap: wrap;
}

.buttons button {
    padding: 14px 28px;

    border: none;
    border-radius: 10px;

    background: rgba(255, 255, 255, 0.15);

    color: white;

    font-size: 16px;
    font-weight: 700;

    cursor: pointer;

    backdrop-filter: blur(10px);

    transition: 0.2s;
}

.buttons button:hover {
    background: rgba(255, 255, 255, 0.25);

    transform: translateY(-3px);
}

/* TABS */

.tab {
    display: none;
}

.tab.active {
    display: block;
}

/* PAGES */

.page {
    text-align: center;
    padding: 80px 20px;
}

.page h2 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page p {
    font-size: 18px;
    opacity: 0.85;
}

/* FOOTER */

footer {
    width: 100%;
    padding: 20px;

    text-align: center;

    background: rgba(0, 0, 0, 0.4);

    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer p {
    font-size: 14px;
    opacity: 0.7;
}

/* MOBILE */

@media (max-width: 700px) {

    header {
        padding: 18px 25px;

        flex-direction: column;
        gap: 15px;
    }

    nav {
        gap: 15px;

        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h2 {
        font-size: 42px;
    }

    .hero p {
        font-size: 17px;
    }
}

.discord-button {
  background: rgba(88, 101, 242, 0.8) !important;
}

.discord-button:hover {
  background: rgba(88, 101, 242, 1) !important;
  transform: translateY(-3px) scale(1.03);