body{
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    color: #fff;
    background-color: #000;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

a{
    color: #3E9AD4;
}
a:hover{
    color: #c9c9c9;
}
a:active{
    color: #2a75b3;
}

::selection {
    background-color: #002c4776;
    color: #3E9AD4;
    }

::-moz-selection {
    background-color: #002c4776;
    color: #3E9AD4;
}

.main-hero{
    width: 100vw;
    height: auto;
    display: block;
}

.navbar{
    position: fixed;
    top: 0;
    left: 0;
    width: calc(100vw - 4rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 10;
}
.nav-left{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}
.nav-left img{
    width: 32px;
    height: 32px;
}
.nav-left:hover{
    color: #3E9AD4;
}
.nav-right a{
    margin-left: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}
.nav-right a:hover{
    color: #c9c9c9;
}
.nav-action{
    padding: 0.5rem 1rem;
    background-color: #3E9AD4;
    border-radius: 4px;
    color: #fff !important;
    border-radius: 16px;
}
.nav-action:hover{
    background-color: #2a75b3;
}

@media screen and (min-width: 575px) {
    .nav-collapse{
        display: none;
    }                
}
@media screen and (max-width: 575px) {
    .nav-right {
        position: fixed;
        display: flex;
        left: 2rem;
        border-radius: 8px;
        flex-direction: row;
        align-items: center;
        padding: 1rem;
        width: calc(100% - 6rem);
        justify-content: space-around;
        background: rgba(0, 0, 0, 1);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        top: 0;
        opacity: 0;
        transition: .2s;
        z-index: 9;
        pointer-events: none;
    }
    .nav-right.active{
        top: calc(100% + 1rem);
        opacity: 1;
        pointer-events: auto !important;
    }
    .nav-collapse{
        width: 32px;
        height: 32px;
        background-color: transparent;
        border: none;
        position: relative;
    }
    .nav-collapse span{
        display: block;
        width: 100%;
        height: 4px;
        background-color: #fff;
        margin: 5px 0;
        border-radius: 2px;
        transition: 0.3s ease;
    }
    .nav-collapse.active span:nth-child(1){
        transform: translateY(9px) rotate(45deg);
    }
    .nav-collapse.active span:nth-child(2){
        opacity: 0;
    }
    .nav-collapse.active span:nth-child(3){
        transform: translateY(-9px) rotate(-45deg);
    }
    .nav-collapse.active + .nav-right{
        display: flex;
    }
    .hero-cta{
        flex-direction: column !important;
    }
}

.hero-text{
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 5;
}
.hero-text .intro{
    font-size: 4rem;
    margin: 0;
}
.hero-text .sub{
    margin-top: 3rem;
    font-size: 1.5rem;
    color: #afafaf;
}
.hero-text .sub strong{
    color: #ffffff;
}
.hero-cta{
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}
.hero-cta a{
    transition: 0.3s ease;
}
@media screen and (max-width: 1000px) {
    .hero-text .intro{
        font-size: 2.5rem;
    }
        .hero-text .sub{
        font-size: 1.125rem;
    }
    .hero-text{
        width: 90%;
    }
    
}
.cta-primary{
    padding: 0.75rem 1.5rem;
    background-color: #3E9AD4;
    border-radius: 4px;
    color: #fff !important;
    text-decoration: none;
    font-size: 1.25rem;
    border-radius: 16px;
}
.cta-primary:hover{
    background-color: #2a75b3;
}
.cta-secondary{
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    border: 2px solid #3E9AD4;
    border-radius: 4px;
    color: #3E9AD4 !important;
    text-decoration: none;
    font-size: 1.25rem;
    border-radius: 16px;
}
.cta-secondary:hover{
    background-color: #3E9AD4;
    color: #fff !important;
}
.cta-bottom-invite{
    display: inline-block;
    margin-top: 2rem;
    padding: 0.75rem 1.5rem;
    background-color: #3E9AD4;
    border-radius: 4px;
    color: #fff !important;
    text-decoration: none;
    font-size: 1.25rem;
    border-radius: 16px;
}
.cta-bottom-invite:hover{
    background-color: #2a75b3;
}

.content{
    position: absolute;
    top: 110%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 6rem;
    z-index: 5;
}
.content-main {
  top: 20%;
  background: #00000024;
  padding: 1rem;
  border-radius: 1rem;
  backdrop-filter: blur(10px);
}
@media (max-width: 768px) {
    .content{
        width: 90%;
    }
}
.section{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}
@media screen and (max-width: 1000px) {
    .section{
        flex-direction: column;
    }
}
.section-content{
    flex: 1;
}
.section-content h1{
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.section-content p{
    font-size: 1.125rem;
    line-height: 1.6;
    color: #ececec;
    backdrop-filter: blur(10px);
}
.section-image{
    flex: 1;
}
.section-image img{
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.no-premium{
    text-align: center;
}
.no-premium h1{
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.no-premium p{
    font-size: 1.125rem;
    line-height: 1.6;
    color: #afafaf;
    max-width: 800px;
    margin: 0 auto 1rem auto;
}
.no-premium p strong{
    color: #3E9AD4;
}

.floatcons svg{
    margin: 0 0.25rem;
    color: #3E9AD4;
    width: 48px;
    height: 48px;
    position: relative;
}
@media screen and (min-width: 630px){
    .floatcons svg:nth-child(1){
        top: -40px;
        left: -14rem;
    }
    .floatcons svg:nth-child(2){
        top: -100px;
        left: -15rem;
    }
    .floatcons svg:nth-child(3){
        top: -70px;
        left: 13rem;
    }   
}
@media screen and (max-width: 630px){
    .floatcons svg{
        display: none;
    }
}


.featured-servers{
    text-align: center;
}
.featured-servers h1{
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.featured-servers p{
    font-size: 1.125rem;
    line-height: 1.6;
    color: #afafaf;
    max-width: 800px;
    margin: 0 auto 2rem auto;
}
.featured-servers p strong{
    color: #3E9AD4;
}
.featured-servers-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}
.server-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.server-icon{
    width: 64px;
    height: 64px;
    border-radius: 25%;
}
.server-text{
    text-align: left;
}
.server-text .server_name{
    font-weight: bold;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin: 0;
}
.server-text .server_members{
    font-size: 0.875rem;
    color: #afafaf;
    margin: 0;
}
.server-text .server_members::before{
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-top: 2px;
    background-color: #afafaf;
    margin-right: 0.25rem;
    border-radius: 50%;
}

.server-text .verified-badge svg{
    color: #3d9e60;
    width: 24px;
    height: 24px;
}
.server-text .partnered-badge svg{
    color: #5865f2;
    width: 24px;
    height: 24px;
}

.footer {
    width: 100%;
    margin-top: 6rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4rem;
}
.footer-brand {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
}
.footer-title {
    font-size: 1.5rem;
    font-weight: bold;
}
.footer-brand p {
    color: #afafaf;
    line-height: 1.6;
    margin-top: 1rem;
}
.footer-links {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}
.link-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.link-group h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.125rem;
    color: #fff;
}
.link-group a {
    color: #afafaf;
    text-decoration: none;
    transition: color 0.3s ease;
}
.link-group a:hover {
    color: #3E9AD4;
}
.donate-link {
    color: #ff6b6b !important;
}
.donate-link:hover {
    color: #ff8787 !important;
}
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #afafaf;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }
}


.cursor-orb-ring{
    content: "";
    position: absolute;
    top:-20px;
    left:-20px;
    width: 40px;
    height: 40px;
    border: 2px solid #3E9AD4;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    transition: transform 0.3s ease, background-color 0.3s ease, opacity 0.3s ease, top .08s ease-out, left .08s ease-out;
    z-index: 9999;
    pointer-events: none;
}
.cursor-orb-ring-active{
    transform: translate(-50%, -50%) scale(1.5);
    background-color: #3E9AD4;
    opacity: 0.75;
}