* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
::selection{
    background: #C6AA64;
    color: #fff;
}
html {
    scroll-behavior:auto !important;
}
img{
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
    max-width: 100%;
    height: auto;
}
body {
    background-color: #09090B;
    font-family: "Inter", sans-serif;
    color: #E4E4E6;
    line-height: 1.5;
}
a {
    text-decoration: none;
    color: #fff;
    transition: all .3s ease;
}
.fl-page {
    overflow: hidden;
}
.container {
    max-width: 1216px !important;
    margin:0 auto !important;
}
section {
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
}

h1,h2,h3,h4,h5,h6 {
    font-family: "Anton SC", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.2;
    background: linear-gradient(to bottom, #B3AB9A 0%, #F8F6EB 50%, #AC9254 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h1 {
    font-size: 72px;
}
h2 {
    font-size: 48px;
}
h3 {
    font-size:32px;
}
h4 {
    font-size: 24px;
}

p span {
    color: #C6AA64;
    font-weight: 600;
    line-height: 1.5;
}

.btn-custom {
  position: relative;
  display: inline-flex;
  height: 51px;
  align-items: center;
  justify-content: center;
  padding: 0 31px;
  font-size: 24px;
  line-height: 1;
  border-radius: 50px;
  z-index: 1;
  overflow: hidden;
  background: linear-gradient(to bottom, #B3AB9A, #F8F6EB, #AC9254);
  color: #19191C;
    font-family: "Anton SC", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.btn-custom-2 {
  background: none;
  color: transparent;
}

.btn-custom-2::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  padding: 1px;
  background: linear-gradient(to bottom, #B3AB9A 0%, #F8F6EB 50%, #AC9254 100%);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  z-index: -1;
  pointer-events: none;
}

.btn-custom-2 span{
  background: linear-gradient(to bottom, #B3AB9A 0%, #F8F6EB 50%, #AC9254 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  position: relative;
  z-index: 2;
}

.btn-custom:hover {
    opacity: 0.6;
}

.header-row {
    display: flex;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 30px;
}
.header-col-1 {
    flex: 0 0 200px; 
}
.header-col-2 {
    flex: 1; 
}
.header-col-3 {
    flex: 0 0 300px; 
}
.header-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    justify-content: center;
}
.header-menu a {
    color: #fff;
}
.header-menu a:hover {
    opacity: 0.6;
}
.header-btns {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    align-items: center;
}


.hero-box {
    padding:90px 80px;
    background: url('../images/hero-bg.png');
    background-size: cover;
    background-position: right center;
    border-radius: 30px;
    background-repeat: no-repeat;
}
.hero-box__inner {
    max-width: 650px;
}
.hero-box h3 {
    margin-bottom: 15px;
    color: #fff;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
}
.hero-box p {
    margin: 20px 0 30px;
    max-width: 551px;
}

.why-join {
    padding-top: 100px;
    padding-bottom: 100px;
}
.why-join h2 {
    margin-bottom: 30px;
}
.why-join__row {
    display: flex;
    margin-left: -16px;
    margin-right: -16px;
}
.why-join__col {
    padding-left: 16px;
    padding-right: 16px;
    max-width: 33.3%;
    flex-basis: 33.3%;
}
.why-join__col-inner img {
    height: 250px;
    object-fit: contain;
}
.why-join__col-inner {
    position: relative;
    padding: 30px 30px 70px;
    background-color: #19191C;
    border-radius: 20px;
    z-index: 1;
    overflow: hidden;
    text-align: center;
    height: 100%;
}
.why-join__col-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 20px;
  background: linear-gradient(to bottom, #B3AB9A 0%, #F8F6EB 50%, #AC9254 100%);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  z-index: -1;
  pointer-events: none;
}
.why-join__col-inner h4 {
    margin-bottom: 20px;
}
.why-join__col-inner p {
    max-width: 275px;
    margin-left: auto;
    margin-right: auto;
}

.why-join__col-3 {
    position: relative;
}
.why-join__col-3::before {
    position: absolute;
    content: '';
    left: 20%;
    top: -20%;
    background:url('../images/why-join-smoke.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 700px;
    height: 850px;
    pointer-events: none;
}


.about-us {
    padding-top: 45px;
    padding-bottom: 140px;
    background: url('../images/about-bg.png');
    background-size: 1440px auto;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    background-color: #0F0D0C;
}
.about-us .container img {
    margin-bottom: 260px;
}
.about-us h2 {
    margin-bottom: 20px;
}
.about-us p {
    max-width: 555px;
    margin: 0 auto;
}

.about-coins {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    width: 100%;
    height: 100%;
    max-width: 1440px;
    pointer-events: none;
}
.about-coins .coin-1 {
    position: absolute;
    width: 217px;
    left: 0;
    top: 0;
}
.about-coins .coin-2 {
    position: absolute;
    width: 240px;
    right: 10%;
    top: 10%;
}
.about-coins .coin-3 {
    position: absolute;
    width: 230px;
    left: 10%;
    bottom: 15%;
}
.about-coins .coin-4 {
    position: absolute;
    width: 425px;
    right: 10%;
    bottom: -20%;
    transform: translateX(35%);
}


.faq {
    padding-bottom: 80px;
    padding-top: 60px;
}
.faq .container {
    max-width: 800px !important;
}
.faq h2 {
    margin-bottom: 50px;
    text-align: center;
}
.faq-item {
    background-color: #19191C;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
}
.faq-item.active::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px; /* Debljina bordera */
    border-radius: 20px;
    background: linear-gradient(to bottom, #B3AB9A 0%, #F8F6EB 50%, #AC9254 100%);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    z-index: -1;
}
.faq-answer {
    padding:0 35px 20px;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    padding:20px 35px;
    align-items: center;
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    color: #F8E4BB;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    cursor: pointer;
}
.faq-question .faq-icon {
    color: #EAD3AE;
    transition: all .3s ease;
    transform: rotate(180deg);
}

.faq-item.active .faq-icon {
    transform: rotate(0deg);
}

.email-box {
    max-width: 360px;
    margin: 50px auto 0;
    height: 72px;
    background: linear-gradient(to bottom, #B3AB9A 0%, #F8F6EB 50%, #AC9254 100%);
    font-size: 24px;
    border-radius: 20px;
    transition: all .3s ease;
}
.email-box:hover {
    opacity: 0.8;
}
.email-box a {
    color: #09090B !important;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq-elements {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    max-width: 1440px;
}
.faq-elements .faq-card {
    position: absolute;
    left: 0;
    top: 100px;
    transform: translateX(-35%);
    width: 425px;
}
.faq-elements .faq-cube {
    position: absolute;
    right: 10%;
    top:-100px;
    transform: translateX(70%);
    width: 1220px;
}


.get-started .container {
    max-width: 1350px !important;
}

.get-started__inner{
    max-width: 440px;
    position: relative;
}
.get-started__inner h2 {
    font-size: 72px;
}
.get-started__inner a {
    position: absolute;
    right: 20px;
    bottom: 15px;
    width: 180px;
}
.get-started__box {
    background:url('../images/get-started-bg.png');
    background-size: cover;
    background-position: right center;
    border: 1px solid #AC9254; /* fix */
    border-radius: 20px;
    padding: 30px 50px;
}


footer {
    padding: 50px 0;
}
.footer-flex {
    display: flex;
    justify-content: space-between;
}
.footer-flex__left img {
    margin-bottom: 20px;
}
.footer-menu {
    display: flex;
    justify-content: flex-end;
    gap: 32px;
    margin-bottom: 30px;
}
.footer-menu a {
    color: #fff;
}
.footer-flex__right {
    text-align: right;
}

.header-menu-toggle,
.header-menu-mobile {
    display: none;
}

@media(max-width:1279px){
    .about-coins .coin-2 {
        right: 0;
    }
    .about-coins .coin-3 {
        left: 0;
    }
}

@media(max-width:1024px){
    .header-col-3,
    .header-col-1 {
        flex: 1;
    }
    .header-col-2 {
        display: none;
    }
    .header-menu,
    .header-btns {
        display: none;
    }
    .header-menu-toggle img {
        width: 100%;
    }
    .header-menu-toggle {
        display: block;
        width: 50px;
        margin-left: auto;
    }
    .header-menu-close {
        position: absolute;
        right: 20px;
        top: 30px;
        width: 50px;
    }
    .header-menu-close img {
        width: 100%;
    }
    .header-menu-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 25px;
        position: fixed;
        top: 0;
        background-color: #000;
        left: 0;
        width: 100%;
        height: 100%;
        flex-direction: column;
        z-index: 999999;
        opacity: 0;
        transform: scale(0);
        transition: all .3s ease;
    }
    .header-menu-mobile.active {
        transform: scale(1);
        opacity: 1;
    }
    .header-menu-mobile a:not(.btn-custom) {
        font-size: 20px;
    }
    .hero-box {
        padding:50px 40px;
    }
    .why-join__col-inner {
        padding:0 20px 40px;
    }
    .about-coins .coin-3 {
        left: -15%;
    }
    .about-coins .coin-4 {
        right: -8%;
    }
    .faq-elements .faq-cube {
        top: 0;
    }
}

@media(max-width:767px){
    .hero-box {
        padding: 30px 20px;
    }
    .why-join__row {
        flex-wrap: wrap;
    }
    .why-join__col {
        max-width: 100%;
        flex-basis: 100%;
        margin-bottom: 30px;
    }
    h1 {
        font-size: 32px;
    }
    h2 {
        font-size: 36px;
    }
    h3 {
        font-size: 24px;
    }
    .why-join {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .get-started__box {
        padding: 20px 20px;
    }
    .get-started__inner h2 {
        font-size: 42px;
    }
    .get-started__inner a {
        width: 140px;
        bottom: 0;
    }
    .email-box {
        font-size: 20px;
        height: 60px;
    }
    .faq-answer,
    .faq-question {
        padding-left: 20px;
        padding-right: 20px;
    }
    .faq-elements .faq-card {
        top: 250px;
    }
    .why-join__col-inner img {
        height: 200px;
        width: 200px;
    }
    .about-us {
        background-size: 200% auto;
        background-position: 50% 60px;
        padding-bottom: 40px;
    }
    .about-coins > div {
        zoom:0.5;
    }
    .about-us .container img {
        margin-bottom: 170px;
    }
    .about-coins .coin-3 {
        bottom: -10%;
    }
    .footer-flex__right{
        text-align: center;
    }
    .footer-flex {
        flex-direction: column-reverse;
    }
    .footer-menu {
        justify-content: center;
        gap: 12px;
        margin-top: 15px;
    }
    .footer-flex__left {
        text-align: center;
        margin-top: 15px;
    }
}