@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root{
    --main-color: rgb(18, 127, 163);
    --accent-color : rgb(46, 195, 150);
    --accent-color-dim : rgb(46, 195, 150,0.4);
    --accent-color-gradient: linear-gradient(to right, var(--accent-color), rgb(46, 230, 150));
    --main-color-gradient: linear-gradient(to right, var(--main-color), rgb(11, 53, 92));
    --dark-gradient: linear-gradient(to top right, rgba(46, 46, 46, 1), rgba(26, 26, 26, 0.8));

    --background-accent: rgb(22, 22, 22);
}

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    min-height: 100vh;
    margin: 0px;
    padding: 0px;
    color: #FFF;
    background-color:#0D0D0D;
    font-family: 'montserrat' ,sans-serif;
    line-height: 1.25;
}

h1,h2,h3,h4,h5,p,ul,span {
    margin: 0px;
    font-family: "poppins", sans-serif;
}

a{
    text-decoration: none;
}

.highlight{
     background: var(--accent-color-gradient);
    -webkit-background-clip: text;
    color: transparent;
}

.primary-highlight{
         background: var(--main-color-gradient);
    -webkit-background-clip: text;
    color: transparent;
}

.header {
  background: linear-gradient(to bottom, rgb(5, 46, 70), #0e5c75);
}

#disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(14, 92, 117,0.8);
    width: 100%;
    font-size: 12px;
    font-family: "Archivo", Sans-serif;
    padding: 2px 0; 
    z-index: 100;
    position: relative;
    top: 0;
    transition: position 0.3s ease, top 0.3s ease; 
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 30px;
    /*background: linear-gradient(to left, #1d1d1d, #292929);*/
    height: 90px;
    z-index: 101; 
}

#disclaimer p {
    padding: 10px;
}

#disclaimer a{
    text-decoration: underline;
}

.nav-right,.nav-left{
    display: flex;
    flex-direction: row;
    height: 100%;
    align-items: center;
}

.nav-right a{
    color: #FFF;
}

.nav-left a{
    flex-shrink: 1;
}

.price-container{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    /*background: linear-gradient(to top right, rgba(46, 46, 46, 0.5), rgba(26, 26, 26, 0.5));
    border-radius: 10px;
    padding: 7px 20px;*/
    color: #FFF;
}

#jp-price{
    background-color: #2ec396;
    border-radius: 10px;
    font-size: 14px;
    padding: 2px 10px;
    font-weight: 200;
}

#jp-price span{
    font-weight: 600;
}

#price-ui{
    display: flex;
    margin-right: 8px;
    flex-direction: column;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

#price-ui a, .price-container a{
      color: #FFF;
}

.main-logo{
    margin: auto 0px;
    width: 250px;
    padding: 20px 0px;
}

.circle{
    background-color: var(--accent-color);
    height: 15px;
    width: 15px;
    border-radius: 100%;
    box-shadow: 0px 0px 40px var(--accent-color-dim);
    margin-right: 20px;
    flex-shrink: 0;
}

.chart-container{
    margin: 2px 0px;
    margin-top: 2px;
    font-size: 14px;
    height: 60px;
}

.nav-icon{
    display: block;
    font-size: 12px;
    font-weight: 700;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: auto 10px;
}

.nav-icon span{
    margin-top: 2px
}

.nav-menu{
    display: none;
    transition: 1s ease;
    align-items: center;
    justify-content: end;
    background-color: #0D0D0D;
}

.burger-dropdown {
    display: flex;
    height: 100%;
    opacity: 0;
    width: 0px;
    position: fixed;
    overflow: hidden;
    flex-direction: column;
    transition: 1s ease;
    align-items: baseline;
    justify-content: baseline;
    background-color: #111111;
    top: 0px;
    right: 0px;
    z-index: 200;
}

.burger-dropdown i {
    margin-right: 10px;
} 

a i {
  color: #e7e7e7;
  font-size: 1.2rem;
  transition: color 0.3s, transform 0.2s, text-shadow 0.3s;
  vertical-align: middle;
  display: inline-block;
}

a:hover i {
  color: rgb(255, 255, 255);
  transform: translateY(-2px) scale(1.1);
  text-shadow: 0 0 5px rgba(218, 218, 218, 0.4);
}

.fa-xmark{
    font-size: 1.5rem;
    position: absolute;
    right: 20px;
    z-index: 300;
}

.burger-dropdown.open {
    height: 100%;
    width: 350px;
    opacity: 1;
    padding: 20px;
}

.burger-dropdown a:hover, .nav-menu a:hover {
    border-bottom: 3px solid #0E5C75;
}

.search-dropdown {
    display: flex;
    position: absolute;
    height: 0px;
    opacity: 0;
    overflow: hidden;
    transition: 1s ease;
    background-color: rgba(26, 26, 26, 0.5);
    left: 50%; 
    top: 60px;
    transform: translate(-50%, -50%);
    border-radius: 20px;
    z-index: 500;
}

.search-dropdown.open {
    height: 100px;
    max-height: 200px;
    opacity: 1;
    padding: 10px 20px;
}

.search-input{
    font-size: 1.5rem;
    height: 4rem;
    width: 400px;
    border: none;
    padding-left: 1rem;
}

.search-submit{
    height: 4rem;
    width: 4rem;
    background-color: #2d2d2d ; 
    color: #FFF;
    font-size: 20px;
    border: none;
    outline: none;
    padding-left: 5px;
}

.search-submit:hover{
    background-color: #424242
}

.search-dropdown form{
    display: flex;
    align-items: center;
    gap: 5px;
}

.burger-dropdown a, .nav-menu a {
    font-size: 22px;
    font-weight: 600;
    color: white;
    padding: 8px 12px;
    border-bottom: 3px solid #ffffff00;
    text-decoration: none;
    transition: 0.2s;
    width: 250px;
}

.scroll-container {
    height: 67px;
    overflow: hidden;
    /*background: linear-gradient(#0E5C75, #001C45);*/
    display: flex;
    align-items: baseline;
    position: relative;
}

.scroll-cards {
    display: flex;
    width: max-content;
    animation: scroll-left 120s linear infinite;
}

.scroll-image{
    border-radius: 10px;
    margin: auto 10px;
}

.scroll-info{
    padding-right: 20px;
    text-align: center;
}

.link{
    color: white
}

.scroll-card {
    width: 175px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    color: white;
    font-weight: bold;
    border-radius: 8px;
    flex-shrink: 0;
}

.scroll-card:hover{
    background-color:#2ec396;
}

.scroll-card h3{
    font-size: 16px;
    font-weight: 700;
}

.scroll-card h4{
    font-size: 14px;
}

.video-wrapper {
    pointer-events: none;
    position: relative;
    width: 100%;      
    height: 215px;     
    overflow: hidden;
    background: black;
}

.video-wrapper iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 1300px;
    min-height: 1000px; 
    transform: translate(-50%, -50%);
    border: none;
    font-size: 40px;
    font-weight: 800;
}

  .login-btn {
    background: linear-gradient(135deg, #2ec396, #1aa37d);
    border: none;
    color: white;
    padding: 12px 28px;
    font-size: 16px;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }

  .login-btn:hover {
    background: linear-gradient(135deg, #27b388, #14966e);
    transform: translateX(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  }

  .login-btn i {
    font-size: 18px;
  }

.cta-container {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    z-index: 5;
    pointer-events: none;
    background: radial-gradient(circle, rgba(46, 195, 150, 0.3) 0%, rgba(0, 28, 69, 0.3) 50%)
}

.cta .fa-arrow-right {
  transition: transform 0.3s ease;
}

.cta:hover .fa-arrow-right {
  transform: rotate(90deg);
}

.cta-container div a{
    color: #FFF;
}

.cta-container h1{
    font-size: 46px;
    font-weight: 800; 
    margin-bottom: 20px;
    text-align: center;
    line-height: 0.9;
}

.cta-container h2{
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.cta-btns{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
    gap: 20px;
    pointer-events:all
}

.left-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF;
    background: var(--accent-color-gradient);
    padding: 20px;
    font-size: 1.1rem;
    border-radius: 30px;
    min-width: 200px;
    transition: transform 0.5s ease, box-shadow 0.3s ease, background-color 0.5s ease;
}

.left-btn span{
    font-size: 20px;
}

.left-btn:hover{
    background-color: #2ec396;
}

.right-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 50px;
    border: solid;
    border-color: #FFF;
    color: #FFF;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    line-height: 1;
    transition: .2s;
}

.right-btn span{
    font-size: 20px;
}


.overlay{
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; display: flex; align-items: center; justify-content: center;
    background: radial-gradient(circle, rgba(46, 195, 150, 0.3) 0%, rgba(0, 28, 69, 0.3) 50%);
    z-index: 4;
}

.footer{
    border-top: 1px solid #FFF;
}

.footer-container{
    max-width: 1200px;
    margin: auto;
}

.footer-content-container{
    display: flex;
    justify-content: space-between;
    margin: 50px auto
}

.footer-content{
    display: flex;
    flex-direction: row;
    gap: 100px;
    padding: 50px auto;
    flex-wrap: wrap;
}

ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li{
    margin: 5px;
}

.footer-nav li a{
    font-weight: 600;
    color: #2ec396;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.contact-item i {
  font-size: 1.2em;
  min-width: 20px;
  text-align: center;
  line-height: 1;
}

.contact-item p {
  line-height: 1.4;
}

.footer-address {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

.footer-address p {
  margin: 0;
}

.footer-socials{
    display: flex;
    flex-direction: row;
    padding: 50px 150px;
    align-self: center;
    gap: 20px;
}

.footer-socials a{
    color: white;
}

.legal{
    font-size: 12px;
    margin: 100px auto;
}

.required-asterisk {
  color: red;
  margin-left: 4px;
  font-weight: bold;
}

.trade-hover{
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #2EC396;
    color: #FFFFFF !important;
    padding: 12px 18px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600 !important;
    font-size: 18px !important;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s ease;
    z-index: 9999;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  padding: 12px 20px;
  border-radius: 8px;
  margin: 10px 0;
  border: 1px solid #c3e6cb;
}

.alert-failure {
  background-color: #d4edda;
  color: #571515;
  padding: 12px 20px;
  border-radius: 8px;
  margin: 10px 0;
  border: 1px solid #c3e6cb;
}

.trade-popup{
    display: none;
    width: 600px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.trade-popup-content{
    display: flex;
    flex-direction: column;
    padding: 1rem 2rem;
    text-align: center;
    gap: 0.8rem;
    height: 100%;
    overflow-y: scroll;
    scrollbar-width: none;
}

.trade-popup.open{
    display: flex;
    background: linear-gradient(to top right, rgba(46, 46, 46, 1), rgba(26, 26, 26, 1));
    box-shadow: 0px 0px 20px #000;
}

.trade-popup-content i{
    text-align: right;
    font-size: 20px;
}

.trade-popup-content h1{
    font-size: 2.5rem;
    font-weight: 800;
}
.trade-popup-content p{
    font-size: 0.6;
    line-height: 1.6;
}
.trade-popup-content h2{
    font-weight: 600;
    font-size: 2rem;
}

.trade-popup-content a {
    color: #2EC396;
}

.trade-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color-gradient);
    color: #FFF;
    padding: 12px 50px;
    border-radius: 20px;
    width: 80%;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    line-height: 1; 
    text-align: center;
    transition: .2s;
}

.cookie-bar {
  position: fixed;
  bottom: 1rem;
  left: 1%;
  top: translateX(-50%);
  max-width: 500px;
  background: rgba(50, 50, 50, 0.9); 
  color: #eee; 
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: baseline;
  flex-direction: column ;
  align-items: left;
  border-radius: 5px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.95rem;
  z-index: 9999;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.cookie-bar p {
  margin-bottom: 1.9rem;
  line-height: 1.4;
}

.cookie-bar h2{
    font-weight: 600;
    line-height: 1.6rem;
    margin-bottom: 1rem;
}

.cookie-bar a {
    color: #ccc; 
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.cookie-bar .cookie-btn {
    color: #eee;
    border: none;
    padding: 0.6rem 2rem;
    margin-right: 1rem;
    cursor: pointer;
    margin-bottom: 1rem;
    font-weight: 500;
    transition: background 0.3s ease, transform 0.2s ease;
    }

.cc-cookie-accept:hover {

    background: var(--accent-color);
    transform: translateY(-1px);
}

.cc-cookie-decline:hover {
    background: var(--accent-color);
    transform: translateY(-1px);
}

.cc-cookie-accept{
    background-color: #2ec396;
}

.cc-cookie-decline{
    background-color: #777;
}

.manage-cookies{
    text-decoration: underline!important;
}

@media screen and (max-width:1307px){
    .footer ul{
            padding-left: 30px;
        }

    .main-logo{
        max-width: 250px;
    }
}

@media (max-width: 1080px) {
    .footer-content-container {
        flex-direction: column;
    }
    .footer-content{
        flex-direction: column;
    }
    .nav-menu{
        display: none;
    }
    .nav-icon{
        display: block;
        opacity: 1;
    }
    .burger-label{
        display: none;
    }
    .main-logo{
        max-width: 200px;
    }
}

@media (max-width: 880px) {
    .burger-dropdown{
        flex-direction: column;
    }
    .burger-dropdown.open{
        max-height: none;
        width: 100%;
    }
    .search-input{
        width: 300px;
    }
    .search-dropdown .open{
        width: 100%;
    }
    .search-form{
        width: 100%;
    }
    .main-logo{
        max-width: 175px;
    }
}

@media (max-width: 660px) {
    .trade-popup{
        width: 100%;
        height: 100%;
    }
    .price-container{
    display: none;
    }
    #disclaimer p{
        font-size: 0.7rem;
        line-height: 0.7rem;
    }
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 750px) {

    .video-wrapper {
        height: 400px;
        aspect-ratio: 16 / 9;
        position: relative;
        overflow: hidden
    }

    .video-wrapper iframe {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        min-height: unset;
        transform: none;
    }
    .video-poster{
        display: block;
        position: relative;
        width: 1000px;
        height: 400px;
        transform: none;

    }
    .cta-btns{
        gap: 5px;
    }
}
