@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Pacifico&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
  	cursor: default;
}

body {
    width: 100%;
    overflow: hidden;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

img {
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.container {
    overflow-y: scroll;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
}
::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    scale: 1;
    z-index: -1;
    object-fit: cover
}

nav {
    position: relative;
    top: 0;
    padding: 20px 40px;
    height: 128px;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}

nav.sticky {
    background-color: rgba(11, 9, 12, 0.8);
}

nav h1 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    text-shadow: rgba(255, 255, 255, 0.3) 0px 0px 15px;
    transition: all 0.3s ease-in-out;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    top: 25px;
    left: 6.5%;
}


.nav-logo {
    position: relative;
    left: 6.5%;
    top: 32px;
}

.logo img {
    height: 50px; 
}


nav h1 span {
    color: #DE48FA;
    transition: all 0.3s ease-in-out;
}

nav .nav-center {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 30px;
}

nav .links {
    display: flex;
    gap: 50px;
}

nav .links a {
    color: #717171;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    line-height: 14px;
    text-transform: uppercase;
    transition: color 0.3s ease-in-out;
    cursor: pointer;
}

nav .links a:hover {
    color: white;
}

nav .links a.active {
    color: #DE48FA;
}

nav .links a.active:hover {
    color: white;
}

nav .social-links {
    display: flex;
    align-items: center;
}

nav .social-links a {
    font-size: 16px;
    color: #717171;
    transition: color 0.3s ease-in-out;
}

nav .social-links a:hover {
    color: white;
}

nav .legal-links {
    position: absolute;
    top: 60px;
    right: 200px;
    display: flex;
    gap: 30px;
}

nav .legal-links a {
    color: #717171;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 0.3s ease-in-out;
}

nav .legal-links a:hover {
    color: white;
}


.main-1 {
    margin-top: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.slogan {
    color: #fff;
    font-size: 60px;
    font-weight: 700;
    word-spacing: 0px;
    text-transform: uppercase;
    text-shadow: rgba(255, 255, 255, 0.3) 0px 0px 15px;
}

.main-1 p {
    position: relative; 
    top: 14px;
    color: #717171;
    font-size: 20px;
    font-weight: 600;
    word-spacing: 0px;
    text-transform: uppercase;
}

.slogan, .main-1 p {
    transition: opacity 0.5s ease-in-out;
  }

button {
    font-size: 16px;
    font-weight: 700;
    line-height: 14px;
    text-transform: uppercase;
    word-spacing: 0px;
    width: 256px;
    height: 72px;
    overflow: hidden;
    color: white;
    background: linear-gradient(90deg, #8e2de2, #4a00e0);
    border-radius: 8px;
    border: none;
    box-shadow: 0 4px 15px rgba(142, 45, 226, 0.4);
    transition: all 0.4s ease;
    position: relative;
    top: 35px;
    cursor: pointer;
}

button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
    transition: all 0.6s ease;
}

button:hover::before {
    left: 100%;
}

button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(142, 45, 226, 0.6);
}

.social-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.discord-count {
    color: #7289da;
    font-weight: 700;
    font-size: 14px;
    margin-left: 4px;
    text-shadow: 0 0 5px rgba(114, 137, 218, 0.3);
    position: relative;
    top: -1px;
}

.main-1 .server-info {
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #717171;
}

.main-2-wrapper {
    margin-top: -300px;
    display: flex;
    justify-content: flex-start;
    padding-left: 0%;
}

.main-2 {
    z-index: 0;
}

.main-2 img {
    height: 600px;
    -webkit-mask-image: -webkit-gradient(linear,left 90%,left bottom,from(rgb(0,0,0)),to(rgba(0,0,0,0)));
    z-index: 999;
}

.team-container {
    margin-top: -122px;
    margin-left: -10%;
    display: flex;  
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 0 40px;
    width: 100%;
}

.team-title {
    color: white;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 1000;
    position: relative;
    top: -60px;
    left: 47%;
}
  
.team-card {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    width: 400px;
    height: 228px;  
    color: white;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    position: relative;
}
  
.team-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 10px 0 5px;
    display: inline-block;
}
  
.team-card p {
    font-size: 14px;
    color: #bdbdbd;
    margin-bottom: 15px;
    top: 0;
}
  
  
.team-card .team-name a {
    color: white;
    font-size: 16px;
    transition: color 0.3s ease;
    position: static;
    text-decoration: none;
}
  
.team-card .team-name a:hover {
    color: #DE48FA;
}

@media (max-width: 768px) {
    nav {
        padding: 10px 20px;
        height: auto;
    }

    .logo {
        flex-direction: row;
        top: 20px;
        left: 0;
        justify-content: center;
    }

    .nav-center {
        flex-direction: row;
        gap: 15px;
        position: static;
        margin-top: 40px;
        width: 100%;
        margin-left: 50px;
    }

    nav .links {
        flex-direction: row;
        gap: 20px;
        align-items: center;
    }

    nav .social-links {
        justify-content: center;
    }

    .discord-count {
        display: none;
    }

    .main-1 {
        margin-top: 150px;
        padding: 0 20px;
    }

    .slogan {
        font-size: 36px;
        line-height: 1.2;
    }

    .main-1 p {
        font-size: 16px;
    }

    button {
        width: 256px;
        height: 72px;
        font-size: 14px;
    }

    .main-2-wrapper {
        display: none;
        width: 0%;
    }

    .team-title {
        left: 0;
        text-align: center;
        width: 100%;
        font-size: 24px;
        top: 180px;
        margin-bottom: 170px;
    }

    .team-container {
        flex-direction: column;
        align-items: center;
        margin-left: 0;
        padding: 0 20px;
    }

    .team-card {
        width: 100%;
        max-width: 400px;
    }

    html, body {
        overflow-x: hidden;
        width: 100vw;
    }

    .main-1, .team-container {
        max-width: 100%;
    }

    nav .legal-links {
        display: none;
    }
}