@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;
}

body {
    width: 100%;
    overflow-x: 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;
}

.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;
}

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;
}

.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-3 {
    margin-top: 300px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.main-3 span{
    position: relative;
    left: 0%;
    bottom: 150px;
}

.team-container {
    margin-top: -100px;
    margin-right: 86%;
    justify-content: center;
    display: flex;  
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 0 40px;
  }
  
  .team-card {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    width: 300px;
    height: 228px;
    text-align: center;
    color: white;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    position: relative;
  }
  
  .team-card:hover {
    transform: translateY(-8px);
  }
  
  .team-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid #DE48FA;
  }
  
  .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;
  }

  /* Features */

  .feat-container {
    position: absolute;
    top: 68%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    padding: 0 40px;
    width: 100%;
    max-width: 1200px;
  }
  
.feat-card {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    width: 300px;
    flex: 0 0 300px;
    height: 228px;
    text-align: center;
    color: white;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    margin-bottom: 15px;
    font-size: 16px;
}
  
.feat-card:hover {
    transform: translateY(-8px);
}
  
.feat-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    transition: filter 0.3s ease;
}


.feat-card .img-container {
    width: 106px;
    height: 106px;
    border-radius: 50%;
    padding: 3px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feat-card .img-container img {
    width: 100%;
    height: 100%;
    border: none;
    margin: 0;
}
  
.feat-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin: 10px 0 5px;
}
  
.feat-card p {
    font-size: 14px;
    color: #bdbdbd;
    margin-bottom: 15px;
    top: 0;
}

.section-divider {
    width: 90%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 30px auto;
}

.feat-title {
    color: #717171;
    font-size: 25px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    margin-top: -530px;
    margin-bottom: 10px;
}

@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;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 60px;
    }

    .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-container {
        margin-top: -80px;
        margin-right: 0;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: nowrap;
        padding: 0 10px;
        width: 100%;
        box-sizing: border-box;
    }

    .team-card {
        flex: 1 1 48%;
        max-width: 48%;
        height: auto;
        padding: 10px;
    }

    .team-card img {
        width: 70px;
        height: 70px;
    }

    .team-card h3 {
        font-size: 16px;
    }

    .team-card p {
        font-size: 12px;
    }

    .team-card .team-name a {
        font-size: 14px;
    }

    .section-divider {
        display: block;
    }

    .feat-title {
        margin-top: -5px;
        margin-bottom: 30px;
        position: relative;
    }

    .feat-container {
        position: relative;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 10px;
        padding: 0 10px;
        width: 100%;
        margin-top: 0;
        box-sizing: border-box;
    }

    
    .feat-card {
        flex: 1 1 48%;
        max-width: 48%;
        height: auto;
        padding: 10px;
        font-size: 14px;
    }

    .feat-card img {
        width: 70px;
        height: 70px;
    }

    .feat-card h3 {
        font-size: 16px;
    }

    .feat-card p {
        font-size: 12px;
    }

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

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

@media (min-width: 769px) {
    .section-divider {
        display: none;
    }
}

