/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body, * {
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    cursor: default;
}
body::-webkit-scrollbar {
    display: none;
}
body {
    scrollbar-width: none;
}
body, html {
    height: 100%;
}
#wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
#wrapper #body {
    flex-grow: 1;
    margin-top: 10px;
    padding-top: 7rem;
}
@media screen and (max-width: 550px) {
    #wrapper #body {
        padding-top: 1rem;
    }
}
body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: rgb(2, 2, 2);
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    padding: 0px 25px;
}
.container {
    max-width: 800px;
    margin: 0 auto;
}
@media screen and (max-width: 550px) {
    .container {
        padding: 0px;
    }
}
a {
    transition: color .3s,background .3s;
    cursor: pointer;
}
.text-muted-search {
    color: #515151;
    font-size: 14px;
    text-align: center;
    margin: 8px;
}

/* Header */
.landing-header {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 25px;
    align-items: center;
    background-color: rgb(2, 2, 2);
    padding: 20px;
    z-index: 999999 !important;
}
.link-cursor {
    cursor: pointer;
}
.landing-header .logo img {
    width: 200px;
    height: auto;
}
.landing-header nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}
.landing-header nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    padding: 5px 10px;
}
.landing-header nav ul li a:hover {
    background-color: transparent;
    color: #8a63e5;
    border-radius: 5px;
}

/* Hero Section */
.landing-hero {
    position: relative;
    text-align: center;
    height: 100%;
    overflow: hidden;
}
.landing-hero .banner img {
    width: 100%;
    height: auto;
    display: block;
}
.landing-hero .overlay-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.landing-hero .overlay-image img {
    height: 20vw;
    width: 20vw;
}
@media screen and (max-width: 1700px) {
    .landing-hero .overlay-image img {
        height: 30vw;
        width: 30vw;
    }
}
.homepage-button {
    display: inline-block;
    margin-top: -56px;
    background-color: #f39c12;
    color: #000000;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s;
    z-index: 1;
    position: relative;
    cursor: pointer;
    width: 300px;
}
.homepage-button-svg {
    width: 27px;
    height: 27px;
    margin-bottom: -10px;
    fill: #000000;
}
.homepage-button:hover {
    background-color: #ffae2c;
}

/* Info Section */
.info-section {
    padding: 50px 0px 100px 0px;
}
.info-section h2 {
    font-size: 24px;
    font-weight: 100;
    margin-bottom: 20px;
}
.info-section p {
    margin-bottom: 20px;
    font-size: 14px;
    color: #aaa;
    font-weight: 100;
}
.info-section .faq h3 {
    margin: 20px 0 10px;
    font-size: 24px;
    font-weight: 100;
}
.info-section .faq ul {
    list-style: inside;
}
.info-section .faq ul li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #aaa;
    font-weight: 100;
}

/* Footer */
footer {
    background-color: rgb(2, 2, 2);
    text-align: left;
    padding: 15px 0;
    font-size: 14px;
    color: #ffffff;
}

/* Mobile Style */
@media screen and (max-width: 770px) {
    .landing-header {
        gap: 5px;
    }
    .landing-header nav ul li a {
        font-size: 14px;
    }
    .landing-header nav ul {
        gap: 0px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .homepage-button {
        margin-top: -51px;
        padding: 13px 16px;
        font-size: 15px;
        width: 200px;
    }
    .homepage-button-svg {
        width: 23px;
        height: 23px;
        margin-bottom: -9px;
    }
    .info-section h2 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .info-section p {
        font-size: 14px;
    }
    .info-section ul {
        font-size: 14px;
    }
    .info-section h3 {
        font-size: 16px;
    }
    #copy-all-reserved, .disclaimer.container {
        font-size: 10px !important;
    }
    .info-section {
        padding: 50px 0px 50px 0px;
    }
}
@media screen and (max-width: 550px) {
    .landing-header {
        padding: 0px;
    }
    .landing-header .logo img {
        width: 150px;
    }
    .banner {
        height: 95vw;
    }
    .landing-hero .overlay-image img {
        height: 80vw;
        width: 80vw;
    }
}

/* ShareThis Section */
.share_links.container {
    background-color: #121212; 
    border-radius: 5px; 
    padding: 5px 20px;
    margin-bottom: 40px;
}
.share_links_container {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    gap: 35px;
}
.share_links_text p{
    margin: 0;
}
@media screen and (max-width: 550px) {
    .share_links.container {
        padding: 5px 5px 10px 10px;
    }
    .share_links_container {
        flex-direction: column;
        align-items: start;
        gap: 10px;
    }
    .share_links_text {
        display: flex;
        flex-direction: row;
        font-size: 14px;
        gap: 5px;
    }
}