* {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    box-sizing: border-box;
    font-size: 16px;
    scroll-behavior: smooth;
}
@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@400;600&display=swap');
:root {
    --mainbg: #0E0E11;
    --secondbg: #14141A;
    --white: #ffffff;
    --borderdivider: #282834;
    --text: #D0D0D1;
    --winsaneblue: #0080FF;
    --secondaction: #1E1E27;
    --success: #2ECC71;
    --error: #E74C3C;
    --discord: #5865F2;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Urbanist';
    font-weight: 600;
    color: var(--white);
}
h1 {
    font-size: 3rem;
    line-height: 3.5rem;
}
h2 {
    font-size: 2.5rem;
    line-height: 3rem;
}
h3 {
    font-size: 2rem;
    line-height: 2.5rem;
}
h4 {
    font-size: 1.5rem;
    line-height: 2rem;
}
h5 {
    font-size: 1.125rem;
    line-height: 1.625rem;
}
h6 {
    font-size: 1rem;
    line-height: 1.5rem;
}
p {
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--text);
}
p.large, a.large {
    font-size: 1.125rem;
    line-height: 1.625rem;
}
p.small, a.small {
    font-size: 0.875rem;
    line-height: 1.375rem;
}
a {
    font-weight: 600;
    font-family: 'Urbanist', sans-serif;
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--white);
}
a:hover {
    color: var(--text);
    transition: 0.3s;
}
.btn {
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    text-decoration: none;
    color: var(--white);
    border-radius: 0.5rem;
    cursor: pointer;
}
.ghost-btn {
    background: var(--white);
    padding: 1rem 2rem;
    height: fit-content;
}
.dc {
    color: var(--discord);
}
.primary-btn {
    background-color: var(--winsaneblue);
    padding: 0.75rem 1.5rem;
    height: fit-content;
}
.primary-btn-discord {
    background-color: var(--discord);
    padding: 0.75rem 1.5rem;
    height: auto;
    display: flex;
    width: fit-content;
    height: fit-content;
}
.primary-btn-discord::before {
    content: url("../imgs/icons/discord-symbol.svg");
    margin-right: 0.75rem;
    height: 1.5rem;
}
.primary-btn:hover {
    background-color: #0066CC;
    color: var(--white);
}
.primary-btn-discord:hover {
    background-color: #7289DA;
    color: var(--white);
}
.secondary-btn {
    background-color: var(--secondaction);
    color: var(--white);
    padding: 0.75rem 1.5rem;
}
.secondary-btn:hover {
    color: var(--white);
    background: #282834;
}
button {
    font-weight: 600;
    font-family: 'Urbanist', sans-serif;
    text-decoration: none;
    color: var(--white);
    border-radius: 0.5rem;
    cursor: pointer;
}
button:hover {
    transition: 0.3s;
}
input {
    background: var(--secondbg);
    border: 1px solid var(--borderdivider);
    border-radius: 6px;
    color: var(--white);
    font-size: 1rem;
    font-weight: 400;
    padding: 0.75rem;
    transition: 0.3s;
}
input:focus {
    border: 1px solid var(--winsaneblue);
}
.input-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}
.input-field > label, * label {
    margin-bottom: 0.5rem;
}
.input-field > .one-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.responsive {
    width: 100%;
    height: auto;
}
.visible-desktop {
    display: block;
}
.visible-mobile {
    display: none;
}
body {
    background-color: var(--mainbg);
    font-family: 'Urbanist', sans-serif;
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--text);
}
header {
    width: 100vw;
    padding: 0.75rem 8rem;
    background: rgba(14, 14, 17, 1);
    border-bottom: 1px solid var(--borderdivider);
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    position: fixed;
    z-index: 1000;
    transition: 0.4s;
}
header >.header-logo {
    height: 3rem;
}
header > .header-logo, .header-menu, .header-button {
    flex-basis: 33.33333%;
}
header > .header-menu > ul.navigation {
    display: flex;
    gap: 2rem;
    justify-content: center;
}
header > .header-menu > ul.navigation > li {
    list-style-type: none;
}
header > .header-menu > ul.navigation > li > a {
    text-decoration: none;
    color: var(--text);
    font-weight: 400;
}
header > .header-menu > ul.navigation > li > a:hover {
    color: var(--white);
}
header > .header-menu > .hamburger-toggle {
    display: none;
}
header > .header-button {
    display: flex;
    justify-content: flex-end;
}
#hero {
    width: 100%;
    height: 100vh;
    padding: 4rem 0 4rem 16rem;
    background-color: var(--mainbg);
    background-image: url("../imgs/hero-img.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center; 
}
#hero > .hero-left {
    width: 100%;
    flex-basis: 45%;
}
#hero > .hero-right > img {
    margin-top: 12rem;
}
#hero > .hero-left > h1, h4 {
    margin-bottom: 0.5rem;
}
#hero > .hero-left > p {
    margin-bottom: 2rem;
}
#hero > .hero-left > .button-area {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
}
#hero > .hero-left > .button-area > p {
    color: var(--white);
}
#main-features {
    scroll-behavior: smooth;
}
.main-section-wrapper {
    width: 100%;
    background-color: var(--secondbg);
    padding-top: 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    scroll-behavior: smooth;
}
.main-section-wrapper > h2 {
    margin-bottom: 1.5rem;
}
.main-section-wrapper > p {
    margin-bottom: 2rem;
}
.section-wrapper {
    width: 100%;
    background-color: var(--mainbg);
    padding: 6rem 16rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
}
.section-wrapper > * h2 {
    margin-bottom: 1.5rem;
}
.section-wrapper > * img {
    max-width: 800px;
}
.section-wrapper > .section-left, .section-right {
    flex-basis: 50%;
}
.reverse-feature {
    flex-direction: row-reverse;
    background-color: var(--secondbg);
}
#other-features {
    width: 100%;
    padding: 6rem 16rem;
    background: var(--secondbg);
}
#other-features > h2 {
    text-align: center;
    width: 100%;
    margin-bottom: 2rem;
}
#other-features > .other-features-wrapper {
    display: flex;
    flex-direction: row;
    gap: 2rem;
}
#other-features > .other-features-wrapper > .card {
    border: 1px solid var(--borderdivider);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex-basis: 33.33333%;
    gap: 1rem;
    border-radius: 1rem;
}
#other-features > * h4 {
    margin-bottom: 0;
}
#faq {
    width: 100%;
    padding: 6rem 16rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}
#faq > .faq-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}
#faq > .faq-wrapper > details.faq-item {
    width: 100%;
    max-width: 47.5rem;
    padding: 1.5rem;
    background-color: var(--secondbg);
    border-radius: 0.75rem;
    cursor: pointer;
}
#faq > .faq-wrapper > details.faq-item:a{
    transition: 0.3s;
}
#faq > .faq-wrapper > details.faq-item > summary {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}
#faq > .faq-wrapper > details.faq-item > summary::details-marker {
    display: none;
}
#faq > .faq-wrapper > details.faq-item > summary::-webkit-details-marker {
    display: none;
}
#faq > .faq-wrapper > details.faq-item > summary:after{
    content: url('../imgs/icons/chevron-down.svg');
    height: 24px;
}
#faq > .faq-wrapper > details.faq-item[open] > summary:after{
    content: url('../imgs/icons/chevron-up.svg');
    height: 24px;
}
#faq > .faq-wrapper > details.faq-item > p {
    margin-top: 0.5rem;
}
#join-us {
    width: 100%;
    background-color: var(--secondbg);
    background-image: url(../imgs/join-us-bg.png);
    background-position: bottom center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 8rem 16rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}
footer {
    width: 100%;
    background-color: #131317;
    border-top: 1px solid var(--borderdivider);
    padding: 3rem 8rem 0 8rem;
}
footer > .footer-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
}
footer > .footer-top > .footer-logo, .footer-menu, .footer-socials {
    flex-basis: 33.33333%;
}
footer > .footer-top > .footer-menu > ul.navigation {
    display: flex;
    gap: 2rem;
    justify-content: center;
}
footer > .footer-top > .footer-menu > ul.navigation > li {
    list-style-type: none;
}
footer > .footer-top > .footer-menu > ul.navigation > li > a {
    text-decoration: none;
    color: var(--text);
    font-weight: 400;
}
footer > .footer-top > .footer-menu > ul.navigation > li > a:hover {
    color: var(--white);
}
footer > .footer-top > .footer-socials {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}
footer > .footer-bottom {
    width: 100%;
    padding: 0.5rem;
    margin-top: 2rem;
    text-align: center;
    align-items: center;
    font-size: 0.75rem;
    border-top: 1px solid var(--borderdivider);
}

/* Mobile CSS Start */
@media (max-width: 767.98px) {
.visible-desktop {
    display: none;
}
.visible-mobile {
    display: block;
}
h1 {
    font-size: 2.5rem;
    line-height: 3rem;
}
h2 {
    font-size: 2rem;
    line-height: 2.5rem;
}
h3 {
    font-size: 1.5rem;
    line-height: 2rem;
}
h4 {
    font-size: 1.25rem;
    line-height: 1.75rem;
}
h5 {
    font-size: 1rem;
    line-height: 1.5rem;
}
p {
    font-size: 0.875rem;
    line-height: 1.375rem;
}
p.large, a.large {
    font-size: 1rem;
    line-height: 1.5rem;
}
p.small, a.small {
    font-size: 0.75rem;
    line-height: 1.25rem;
}
header {
    padding: 0.5rem 1.5rem;
}
header > .header-logo, .header-hamburger {
    flex-basis: 50%;
}
header > .header-hamburger {
    display: flex;
    justify-content: flex-end;
}
header > .header-hamburger > .hamburger-toggle {
    display: flex;
    width: fit-content;
    padding: 0.75rem 1rem;
    border: 2px solid var(--borderdivider);
    color: var(--text);
    border-radius: 0.5rem;
    justify-items: flex-end;
    text-decoration: none;
}
header > .header-hamburger > .hamburger-toggle::before {
    content: url("../imgs/icons/menu.svg");
    margin-right: 0.5rem;
    height: 1.5rem;
}
header > .header-menu {
    flex-basis: 100%;
}
header > .header-menu > ul.navigation {
    flex-direction: column;
    display: none;
    transition: 0.4s;
}
header > .header-menu > ul.navigation > li {
    margin-top: 1rem;
}
header > .header-menu > ul.navigation > li > a.primary-btn-discord {
    color: var(--white);
    font-weight: 600;
    width: fit-content;
    height: fit-content;
}
header > .header-button {
    display: none;
}
#hero, .main-section-wrapper, .section-wrapper, #other-features, #faq, #join-us {
    padding: 4rem 1.5rem;
}
#hero {
    flex-direction: column;
    height: fit-content;
}
#hero > .hero-left {
    margin-top: 3rem;
}
#hero > .hero-right > img {
    margin-top: 3rem;
}
.main-section-wrapper {
    padding: 4rem 1.5rem;
    text-align: center;
}
.main-section-wrapper > h2 {
    margin-bottom: 1rem;
}
.section-wrapper {
    flex-direction: column-reverse;
    gap: 1rem;
}
.section-wrapper * h2 {
    margin-bottom: 0.5rem;
}
#other-features > h2 {
    margin-bottom: 1rem;
}
#other-features > .other-features-wrapper {
    flex-direction: column;
    gap: 1rem;
}
#other-features > .other-features-wrapper > .card {
    padding: 1.5rem;
}
#other-features > .other-features-wrapper > .card > img {
    width: 3rem;
}
#faq {
    gap: 1rem;
}
#faq > h2 {
    text-align: center;
}
#faq > .faq-wrapper > details.faq-item {
    padding: 1rem;
}
#faq > .faq-wrapper > details.faq-item > summary {
    align-items: flex-start;
}
footer {
    padding: 2rem 1.5rem 0 1.5rem;
}
footer > .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
}
footer > .footer-top > .footer-logo, .footer-menu, .footer-socials {
    flex-basis: 100%;
}
footer > .footer-top > .footer-menu > ul.navigation {
    flex-direction: column;
    gap: 1.5rem;
}
}