.popup{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 6000;
}
.popup-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.roadmap-popup .popup-inner{
    min-width: 50%;
}
.popup-inner{
    position: relative;
    background-color: #000929;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.363);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    min-width: 400px;
    max-width: 90%;
    max-height: 80%;
    min-height: 300px;
    overflow-y: auto;
}
.popup-inner .close-button{
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    color: white;
    transition: transform 0.3s ease;
}
.popup-inner .close-button:hover{
    transform: scale(1.2);
    cursor: none;
}
.popup.active{
    display: flex;
}
.roadmap-left{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.popup-content{
    display: flex;
    width: calc(100% - 80px);
    gap: 40px;
    padding: 40px;
}
.roadmap-left .roadmap-years{
    font-size: 33px;
    padding: 20px 40px;
    background: linear-gradient(180deg, rgb(59, 48, 92), #1d1441);
    border-radius: 15px;
    color: white;
    font-weight: 800;
    margin: 0;
    writing-mode: vertical-rl;
    text-orientation: upright;
    letter-spacing: -5px;
}
.roadmap-right{
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-height: 500px;
    overflow-y: auto;
}
.roadmap-right .qdiv{
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.roadmap-right .qdiv h2{
    margin: 0 0 10px 0;
    font-size: 24px;
    color: #36fcdb;
}
.roadmap-right .qdiv ul{
    margin: 0;
    margin-block-start: 0;
    margin-block-end: 0;
    padding: 0;
    width: 100%;
    color: white;
    list-style-type: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.roadmap-right .qdiv ul li{
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 1.4;
    padding: 5px 0;
}
.roadmap-right .qdiv ul li i{
    color: #36fcdb;
    margin-right: 8px;
}
.tokenomics-popup .popup-inner{
    max-width: 800px;
    max-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tokenomics-popup .popup-inner img{
    width: 100%;
    height: auto;
    border-radius: 10px;
}
@media (max-width: 768px){
    .tokenomics-popup .popup-inner{
        max-height: unset;
        min-height: unset;
        width: 80%;
        max-width: 80%;
        min-width: 80%;
    }
    .tokenomics-popup .popup-content{
        width: 100%;
        height: auto;
        padding: 20px 0;
    }

    .roadmap-popup .popup-inner{
        padding: 15px;
        min-width: 90%;
        min-height: 90%;
        max-height: 90%;
    }
    .popup-content{
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        width: calc(100% - 40px);
    }
    .roadmap-left .roadmap-years{
        writing-mode: horizontal-tb;
        text-orientation: initial;
        letter-spacing: normal;
        font-size: 28px;
        padding: 10px 20px;
    }
    .roadmap-right{
        max-height: 75dvh;
    }
    .roadmap-right .qdiv ul{
        grid-template-columns: 1fr;
    }
}
/* Dış kabuk: viewport'u tutar */
.scroll-shell{
  position: relative;
  height: 100dvh;
  width: 100%;
  overflow: hidden; /* native scrollbar görünmesin */
  z-index: 1000;
}

/* Asıl scroll olan alan */
.scroll-content{
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
    overscroll-behavior: none;
  -webkit-overflow-scrolling: auto;
  /* iOS / Mac momentum */
   scroll-behavior: smooth;

  /* Layout kayması olmasın diye içerik tarafında padding vermiyoruz */
}
body.smooth-scroll{
    overflow-y: auto;
    overflow-x: hidden;
}
.scroll-shell.smooth-scroll{
    height: auto;
    min-height: 100dvh;
    overflow: visible;
}
.scroll-content.smooth-scroll{
    height: auto;
    overflow: visible;
    overscroll-behavior: auto;
}

/* Native scrollbar'ı gizle */
.scroll-content::-webkit-scrollbar{ width: 0; height: 0; }
.scroll-content{ scrollbar-width: none; }

/* Overlay scrollbar: tamamen üstte durur, layout’a etki etmez */
.scrollbar{
  position: absolute;
  top: 0;
  right: 6px;        /* tam sağa yapıştır */
  width: 6px;        /* ince */
  height: 100%;
  background: transparent; /* track yok */
  pointer-events: none;    /* içerik tıklamalarını bozmasın */
  z-index: 9999;
  display: none;
}

.thumb{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px; /* JS bunu güncelliyor */
  border-radius: 999px;

  /* Buz mavisi */
  background: linear-gradient(
    180deg,
    rgba(175, 245, 255, 0.95),
    rgba(90, 200, 235, 0.85)
  );

  box-shadow: 0 0 10px rgba(120, 220, 255, 0.45);
  opacity: 0.95;
}

/* İstersen sadece desktop: */
@media (max-width: 900px){
  .scrollbar{ display:none; }
  .scroll-shell{ overflow: auto; }
  .scroll-content{
    overflow-y: auto;
    scrollbar-width: auto;
  }
}

body{
    margin: 0;
    padding: 0;
    cursor: none;
    font-family: 'Arial', sans-serif;
    overflow: hidden;
    scroll-behavior: smooth;
}
img{
    pointer-events: none;
    user-select: none;
}
a{
    pointer-events: hidden;
    user-select: none;
    cursor: none;
}
.header{
    position: fixed;
    top: 20px;
    left: calc(calc(100vw - 1300px) / 2);
    height: 80px;
    background-color: #121e49;
    color: white;
    padding: 20px 40px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    width: 1300px;
    box-sizing: border-box;
    z-index: 1000;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter:drop-shadow(0 0 4px #121e49)    drop-shadow(0 0 8px #121e49);
    transition: all 0.5s ease;
}
.header .logo{
    height: 50px;
    width: auto;
    position: absolute;
    left: 40px;
    transition: transform 0.3s ease;
}
.header .logo:hover{
    transform: scale(1.05);
}
.header .nav-links{
    display: flex;
    gap: 30px;
    width: 50%;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.header .nav-links a::after{
    content: '';
    display: block;
    width: 0%;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
}
.header .nav-links a{
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    transition: color 0.3s ease, font-size 0.3s ease;
    pointer-events: hidden;
}
.header .nav-links a:hover{
    color: #A0F0FF;
    cursor:none;
    font-size: 24px;
}
.header .nav-links a:hover::after{
    width: 100%;
}
.header .nav-links a:hover ~ .ice-cursor img{
    transform: scale(1.01);
}
.header .menu-icon{
    display: flex;
    position: absolute;
    right: 40px;
    width: 25px;
    flex-direction: column;
    justify-content: space-between;
    height: 20px;
    transition: transform 0.3s ease;
}
.header .menu-icon:hover{
    transform: scale(1.1);
    cursor: none;
}
.header .menu-icon div{
    width: 100%;
    height: 4px;
    background-color: white;
    border-radius: 2px;
}
.ice-cursor{
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    line-height: 1;
    transform: translate(-50%, -50%);
    filter:
    drop-shadow(0 0 4px rgba(180,240,255,0.9))
    drop-shadow(0 0 10px rgba(120,220,255,0.7));
    transition: transform 0.15s ease-out;

}
.ice-cursor img{
    width: 32px;
    height: 32px;
    margin-top: 32px;
    margin-left: 32px;
    transition: transform 0.15s ease-out;
}
.ice-cursor-glow{
    transition: transform 0.15s ease-out;
    position: fixed;
    top: 0;
    left: 0;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    background: radial-gradient(
        circle,
        rgba(160,240,255,0.55) 0%,
        rgba(160,240,255,0.30) 30%,
        rgba(160,240,255,0.15) 50%,
        rgba(160,240,255,0.06) 65%,
        transparent 75%
    );
    filter: blur(12px);
    transform: translate(-50%, -50%);
}
@media (max-width: 768px){
    .ice-cursor,
    .ice-cursor-glow{
        display: none;
    }
    body{
        cursor: auto;
    }
}

.home{
    height: 100dvh;
    width: 100%;
    background-image: url('../images/bg.png');
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 110% 110%; /* 🔴 KRİTİK */
    position: relative;
    overflow: hidden;
}
.bg-snow{
    position: fixed;
    inset: 0;
    z-index: 3;          /* 🔴 BG üstü, board altı */
    pointer-events: none;
}
.bg-wind{
    position: fixed;
    inset: 0;
    z-index: 3;              /* snow üstü, board altı */
    pointer-events: none;
}

.bottom-gradient{
    position: absolute;
    bottom: 0;
    height: 200px;
    width: 100%;
    z-index: 100;
    background: linear-gradient(180deg, rgba(55, 89, 180, 0) 0%, rgb(99, 127, 206) 100%);
}

.home-box{
    z-index: 5;          /* 🔴 BG ve efektler üstü, board altı */
    user-select: none;
    margin-top: 200px;
    width: 1300px;
    display: flex;
    margin-left: calc(calc(100vw - 1300px) / 2);
}
.home-box-right{
    width: 50%;
    position: relative;
}
.home-box-right .tv-box{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    animation: floatTV 6s ease-in-out infinite;
    position: relative;

}
@keyframes floatTV {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -10px, 0);
    }
}
.home-box-right .tv-box .tv-image{
    z-index: 5;
    position: absolute;
    top: -100px;
    width: auto;
    height: 500px;
}
.home-box-right .tv-box .tv-video{
    width: 395px;
    height: 218px;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
    z-index: 10;
    position: absolute;
    top: 112px;
    object-fit: cover;

}
.home-box-left{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}
.home-box .home-box-left .home-title{
    font-size: 74px;
    color: white;
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
}
.home-box .home-box-left .title-normal{
    animation: glowText 3s ease-in-out infinite;
    text-shadow: 0 0 12px rgba(0,0,0,0.6);
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.6));
}
@keyframes glowText {
    0%, 100% {
        text-shadow:
            0 0 8px rgba(255, 255, 255, 0.05),
            0 0 12px rgba(255, 255, 255, 0.03),
            0 0 16px rgba(255, 255, 255, 0.01);
    }
    50% {
        text-shadow:
            0 0 20px rgba(255, 255, 255, 0.2),
            0 0 24px rgba(255, 255, 255, 0.1),
            0 0 28px rgba(255, 255, 255, 0.05);
    }
}
.home-box .home-box-left .title-extra{
    background: linear-gradient(90deg, #4fe6e6, #36d4fc);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 12px #14141499);

}
.home-box .home-box-left .home-desc{
    text-align: left;
    color: white;
    text-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
    margin: 0;
    font-size: 25px;
    width: 100%;
    font-weight: 500;
    line-height: 1.5;
}
.home-box .home-box-left .home-buttons{
    margin-top: 20px;
    display: flex;
    gap: 20px;
}
.home-box .home-box-left .home-buttons .home-button{
    padding: 15px 30px;
    font-size: 20px;
    font-weight: 600;
    border: none;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}
.home-box .home-box-left .home-buttons .primary-button{
    color: rgb(255, 255, 255);
    text-shadow: 0 0 12px rgba(0,0,0,0.6);
    border: 3px solid #5dd9ff;
}
.home-box .home-box-left .home-buttons .primary-button:hover{
    transform: scale(1.05);
    box-shadow:0 0 25px 9px #5dd9ffa9, inset 0 0 11px 3px #5dd9ffa9;
}
.home-box .home-box-left .home-buttons .secondary-button{
    background: linear-gradient(90deg, #52a9ff, #68faff);
    color: rgb(0, 0, 0);
    box-shadow:
      0 0 25px 9px #52a9ffa9,
      0 0 25px 3px #68faffa9;
}
.home-box .home-box-left .home-buttons .secondary-button:hover{
    transform: translate3d(0, -3px, 0);
}
.board{
    position: absolute;
    bottom: 0;
    width: 100%;
    max-width: 600px;
    z-index:10;
    left: 50%;
    transform: translateX(-50%);
}
.board-table{
    width: 100%;
    height: auto;
    display: block;
    filter:
      drop-shadow(0 0 12px rgba(255, 255, 255, 0.6))
      drop-shadow(0 0 30px rgba(224, 224, 224, 0.4));
}
.lamp-wrap{
    position: absolute;
    transform-origin: 50% 0%;
    will-change: transform;
}

/* Senin mevcut konumların */
.lamp-wrap-1{
    left: -3px;
    bottom: 145px;
}
.lamp-wrap-2{
    right: -12px;
    bottom: 125px;
}

.board-lamp{
    width: 60px;
    height: auto;
    filter:
      drop-shadow(0 0 12px rgba(255, 230, 0, 0.6))
      drop-shadow(0 0 30px rgba(255, 217, 0, 0.4));
}
.board-lamp2{
    width: 65px;
    height: auto;
    filter:
      drop-shadow(0 0 12px rgba(255, 230, 0, 0.6))
      drop-shadow(0 0 30px rgba(255, 217, 0, 0.4));
}
.board-lamp,
.board-lamp2{
    transform-origin: 50% 0%; /* zincir */
    will-change: transform;
    z-index:11;
}


.kong{
    position: absolute;
    bottom: 0;
    left: calc(calc(100vw - 1300px) / 2);
    width: 200px;
    height: auto;
    z-index: 15;
    animation: floatKong 8s ease-in-out infinite;
}
.tumtum{
    position: absolute;
    bottom: 0;
    right: calc(calc(100vw - 1300px) / 2);
    width: 180px;
    height: auto;
    z-index: 15;
    animation: floatTumtum 6s ease-in-out infinite;
}
@keyframes floatKong {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -10px, 0);
    }
}
@keyframes floatTumtum {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(5deg);
    }
}

@media (max-width: 1440px){
    .home{
        background-size: cover;
        
    }
    .header .nav-links{
        display: none;
    }
    .header{
        width: 90%;
        left: 5%;
        font-size: 20px;
    }
    .home-box{
        width: 90%;
        margin-left: 5%;
    }
    .home-box .home-box-left .home-title{
        font-size: 56px;
    }
    .home-box .home-box-left .home-desc{
        font-size: 20px;
    }
    
    .kong{
        left: 5%;
    }
    .tumtum{
        right: 5%;
    }
}
@media (max-width: 1090px){
    .home-box-right .tv-box .tv-video{
        width: 315px;
        height: 172px;
        top: 76px;
    }
    .home-box-right .tv-box .tv-image{
        height: 400px;
        top: -95px;
    }
    .kong{
        width: 150px;
    }
    .tumtum{
        width: 130px;
    }
    .home-box .home-box-left .home-title{
        font-size: 48px;
    }
    .home-box .home-box-left .home-desc{
        font-size: 18px;
    }
    .home-box .home-box-left .home-buttons .home-button{
        font-size: 18px;
        padding: 12px 25px;
    }
}

@media (max-height: 900px) {
    .home-box-right .tv-box .tv-image{
        height: 400px;
    }
    .home-box-right .tv-box .tv-video{
        width: 318px;
        height: 174px;
        top: 70px;
    }
    .home-box-left{
        gap: 15px;
    }
    .home-box .home-box-left .home-title{
        font-size: 48px;
    }
    .home-box .home-box-left .home-desc{
        font-size: 17px;
    }
    .home-box .home-box-left .home-buttons{
        margin-top: 0;
    }
    .home-box .home-box-left .home-buttons .home-button{
        font-size: 16px;
        padding: 10px 19px;
    }
    .kong{
        width: 165px;
        left: 10%;
    }
    .board{
        max-width: 500px;
    }
    .tumtum{
        width: 152px;
        right: 10%;
    }
    .lamp-wrap-1{
        left: -4px;
        bottom: 113px;
    }
    .board-lamp{
        width: 54px;
    }
    .board-lamp2{
        width: 58px;
    }
    .lamp-wrap-2{
        right: -12px;
        bottom: 99px;
    }
}
.pullme{
    display: none;
}
@media (max-width: 768px){
    .bottom-gradient{
        height: 150px;
    }
    .home .pullme{
        display: block;
        position: absolute;
        top: 60%;
        right: -55px;
        transform: translateX(-50%) rotate(-45deg);
        width: 50px;
        height: 100px;
        background: url('../images/pullmeopen.png');
        background-size: contain;
        background-repeat: no-repeat;
        border-radius: 2.5px;
        z-index: 100;
        transition: transform 0.5s ease;
    }
    .home .pullme.toggle{
        transform: translateX(-50%) rotate(-135deg);
    }
    .header{
        width: calc(100% - 40px);
        left: 5%;
        top: 20px;
        font-size: 18px;
        padding: 15px 20px;
        height: 50px;
        border-radius: 30px;
    }
    .header .logo{
        height: 30px;
        left: 20px;
    }
    .header .menu-icon{
        right: 20px;
        width: 20px;
        height: 16px;
    }
    .board{
        max-width: 90%;
        bottom: 2dvh;
    }
    .board-lamp,
    .board-lamp2{
        width: 10vw;
    }
    .lamp-wrap-1{
        bottom: 20vw;
        left: -1vw;
    }
    .lamp-wrap-2{
        bottom: 18vw;
        right: -1.5vw;
    }
    .home{
        height: 100dvh;
        display: flex;
    }
    .home-box-right{
        opacity: 0;
        height: 0;
        width: 0;
        top: -500px;
        transition: opacity 0.5s ease, top 0.5s ease;
        transform: translateX(-50%);
        left: 50%;
        display: block;
        position: absolute;
    }
    .home-box-right.toggle{
        opacity: 1;
        top: 150px;
    }
    .home-box{
        width: 90%;
        height: 50dvh;
        margin-top: 120px;
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
    }
    .home-box-left{
        width: 100%;
        text-align: left;
    }
    .home-box .home-box-left .home-title{
        font-size: 40px;
    }
    .home-box .home-box-left .home-desc{
        font-size: 20px;
    }
    .home-box .home-box-left .home-buttons {
        width: 100%;
        gap: 2%;
    }
    .home-box .home-box-left .home-buttons .home-button{
        font-size: 16px;
        padding: 10px 20px;
        width: 48%;
    }
    .home-box .home-box-left .home-buttons .primary-button{
        border: 3px solid #005f7d;
        color: #ffffff;
    }
    .home-box .home-box-left .home-buttons .secondary-button{
        background: linear-gradient(90deg, #026aa7, #049ed1);
        color: #ffffff;
        box-shadow:
          0 0 10px 2px #026aa7a9,
          0 0 10px 3px #049ed1a9;
    }
    .home-box .home-box-left .home-buttons .primary-button:hover{
        box-shadow:0 0 15px 5px #005f7da9, inset 0 0 7px 2px #005f7da9;
    }
    .home-box .home-box-left .home-buttons .secondary-button:hover{
        transform: translate3d(0, -2px, 0);
    }
    .kong{
        display: none;
    }
    .tumtum{
        display: none;
    }
}

.three-pillars{
    height: 100dvh;
    width: 100%;
    background: linear-gradient(0deg, #0d1a36 0%, rgb(99, 127, 206) 100%);
    background-color: #0d1a36;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 80px 20px;
    box-sizing: border-box;
    position: relative
}
.pillars-header{
    text-align: center;
    color: white;
    height: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top:20px;
}
.pillars-title{
    font-size: 43px;
    margin: 0;
    font-weight: 700;
}
.pillars-title-extra{
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    background: linear-gradient(rgb(87, 255, 216), rgb(0, 170, 255) 68.27%, rgb(116, 230, 255)) text;
  font-weight: 800;
}
.pillars-desc{
    font-size: 23px;
    margin: 10px 0 0 0;
    font-weight: 500;
    color: #cacaca;
}
.pillars-scroll{
    position: absolute;
    bottom: 50%;
    transform: translateY(50%);
    right: -100px;
    height: 200px;
    width: 30px;
    display: flex;
    align-items: center;
}
.pillars-scroll-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    height: 100%;

}
.pillars-scroll-content::after{
    content: '';
    display: block;
    width: 2px;
    height: 100%;
    background-color: #858585;
    position: absolute;
}
.pillars-scroll-content .pillar-indicator{
    width: 15px;
    height: 15px;
    border-radius: 50%;
    z-index:1;
    background-color: #707070;
    box-shadow: 0 0 6px rgba(112, 112, 112, 0.6);
    animation: pulseIndicator 2s infinite;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
@keyframes pulseIndicator {
    0%, 100% {
        box-shadow: 0 0 6px rgba(112, 112, 112, 0.6);
    }
    50% {
        box-shadow: 0 0 12px rgba(112, 112, 112, 0.9);
    }
}
.pillars-scroll-content .pillar-indicator.active{
    background-color: #36d4fc;
    box-shadow: 0 0 12px rgba(54, 212, 252, 0.8);
    transform: scale(1.5);
    animation: activePulse 2s infinite;
}
@keyframes activePulse {
    0%, 100% {
        box-shadow: 0 0 12px rgba(54, 212, 252, 0.8);
    }
    50% {
        box-shadow: 0 0 20px rgba(54, 212, 252, 1);
    }
}
.pillar{
    width: calc(1300px - 80px);
    height: calc(70% - 80px);
    z-index: 5;
    /* From https://css.glass */
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 40px;
}
.pillar-marque{
  width: 100%;
  height: 100%;
  overflow: hidden; /* auto değil */
}
.pillar-track {
  display: flex;
  flex-direction: column;
}

.pillar-box{
    flex: 0 0 100%;
    display: flex;
    height: 100%;
    width: 100%;
    gap: 20px;
    transition: transform 0.3s ease;
}
.pillar-left{
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}
.pillar-title{
    font-size: 32px;
    color: rgb(116, 230, 255);
    margin: 0;
    font-weight: 700;
}
.pillar-desc{
    font-size: 20px;
    color: #d0d0d0;
    margin: 0;
    font-weight: 500;
    line-height: 1.5;
}
.pillar-desc-extra{
    -webkit-text-fill-color: transparent;
    background: linear-gradient(90deg, #4fe6e6, #36d4fc);
    -webkit-background-clip: text;
    font-weight: 600;
}
.pillar-right{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.second-pillar .pillar-image{
    height: 100%;
    width: auto;
}
.pillar-image{
    width: 100%;
    height: auto;
    border-radius: 12px;
}
.pillars-note{
    font-size: 22px;
    color: #afafaf;
    text-align: center;
    width: 100%;
}
.pillars-note-extra{
    -webkit-text-fill-color: transparent;
    background: linear-gradient(90deg, #4fe6e6, #36d4fc);
    -webkit-background-clip: text;
    font-weight: 600;
}
@media (min-width: 769px){
    .scroll-content.smooth-scroll .three-pillars{
        height: auto;
    }
    .scroll-content.smooth-scroll .pillar{
        height: auto;
    }
    .scroll-content.smooth-scroll .pillar-marque{
        overflow: visible;
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    .scroll-content.smooth-scroll .pillar-box{
        flex: 0 0 auto;
        height: auto;
    }
    .scroll-content.smooth-scroll .pillars-scroll{
        display: none;
    }
}
@media (max-width: 1440px){
    .three-pillars{
        padding: 60px 20px;
    }
    .pillar{
        width: calc(90% - 40px);
        height: calc(70% - 60px);
    }
    .pillars-scroll{
        right: -60px;
        height: 150px;
    }
}
@media (max-height: 900px) {
    .pillars-title{
        font-size: 36px;
    }
    .pillars-desc{
        font-size: 20px;
    }
    .pillars-header{
        margin-top: 80px;
        height: auto;
    }
    .pillar{
        height: calc(75% - 80px);
        margin-top: 20px;
    }
    .pillars-note{
        font-size: 20px;
    }
}
@media (max-width: 768px){
    .three-pillars{
        justify-content: flex-start;
        padding: 40px 0;
        height: auto;
    }
    .pillars-scroll{
        display: none;
    }
    .pillar{
        height: 75%;
        width: calc(100% - 40px);
        padding: 0 20px;
        background: none;
        border: none;
        box-shadow: none;
        backdrop-filter: none;
    }
    .pillars-header{
        height: auto;
        width: calc(100% - 40px);
        margin: 20px 0;
    }
    .pillars-title{
        font-size: 32px;
    }
    .pillars-desc{
        font-size: 18px;
    }
    .pillars-note{
        font-size: 18px;
        width: calc(100% - 40px);
        margin-top: 20px;
    }
    .pillar-box{
        flex-direction: column;
        justify-content: flex-start;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        width: calc(100% - 62px);
        padding: 30px;
        height: calc(100% - 60px);
    }
    .pillar-left,
    .pillar-right{
        width: 100%;
    }
    .pillar-left .pillar-title{
        font-size: 25px;
    }
    .pillar-left .pillar-desc{
        font-size: 16px;
    }
    .pillar-right .pillar-image{
        height: auto;
        width: 100%;
    }
    .second-pillar{
        flex-direction: column-reverse;
    }
    .second-pillar .pillar-image{
        height: auto;
        width: 80%;
    }
    .pillar-marque{
        overflow: unset;
        gap: 40px;
        display: flex;
        flex-direction: column;
    }
    .pillar-track{
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

}

.yeti-trading{
    height: 100dvh;
    width: 100%;
    background-color: #0d1a36;
    background: url('../images/darkbg.png');
    background-size: cover;
    background-position: 50% 50%;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.top-gradient{
    position: absolute;
    top: 0;
    height: 200px;
    width: 100%;
    background: #0D1A36;
    background: linear-gradient(180deg, rgba(13, 26, 54, 1) 37%, rgba(100, 160, 225, 0) 100%);
    z-index: 1;
}
.bg-gradient{
    position: absolute;
    bottom: 0;
    height: 100dvh;
    width: 100%;
    background: #0D1A36;
    background: linear-gradient(0deg, rgba(13, 26, 54, 1) 0%, rgba(13, 26, 54, 0.589) 50%, rgba(100, 160, 225, 0) 100%);
    z-index: 1;
}
.yeti-trading-box{
    z-index:2;
    width: 1300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    height: 100%;
}
.yeti-trading-box .yeti-trading-header{
    margin-top: 200px;
}

.yeti-trading .yeti-trading-header .yeti-trading-title{
    font-size: 43px;
    color: white;
    margin: 0;
    font-weight: 700;
    text-align: center;
}
.yeti-trading .yeti-trading-header .yeti-trading-title-extra{
    -webkit-text-fill-color: transparent;
    background: linear-gradient(rgb(87, 255, 216), rgb(0, 170, 255) 68.27%, rgb(116, 230, 255)) text;
  font-weight: 800;
}
.yeti-trading .yeti-trading-header .yeti-trading-desc{
    font-size: 23px;
    color: #cacaca;
    margin: 10px 0 0 0;
    font-weight: 500;
    text-align: center;
}
.yeti-trading-box .yeti-trading-content{
    width: 100%;
    height: 100%;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    position: relative;
}
.yeti-trading-content .billboard{
    width: auto;
    height: 90%;
    position: absolute;
    bottom: 0;
    z-index: 5;
    left: 20px;
    
}
.yeti-trading-content .alpha-yeti{
    width: auto;
    height: 50%;
    position: absolute;
    bottom: 0;
    z-index: 10;
    left: 380px;
}
.alpha-yeti::after {
  content: "";
  position: sticky;
    top: 0;
    left: 0;
  background: radial-gradient(
    circle at 85% 50%,              /* sağdan */
    rgba(255, 170, 90, 0.45) 0%,
    rgba(255, 120, 40, 0.25) 25%,
    rgba(255, 90, 0, 0.12) 40%,
    transparent 65%
  );
  mix-blend-mode: screen;           /* ışık gibi davranır */
  pointer-events: none;
  z-index: 5;
}
.yeti-trading-content .campfire{
    width: auto;
    height: 50%;
    position: absolute;
    bottom: 0;
    z-index: 10;
    left: 580px;
    filter:
      drop-shadow(0 0 12px rgba(255, 140, 0, 0.6))
      drop-shadow(0 0 30px rgba(255, 69, 0, 0.4));
}
.yeti-trading .bottom-gradient{
    background: linear-gradient(180deg, rgba(13, 26, 54, 0) 0%, rgba(13, 26, 54, 0.938) 83%);
}
.yeti-trading .chat-glass{
    width: 50%;
    height: 350px;
    position: absolute;
    right: 0;
    bottom: 25%;
    /* From https://css.glass */
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2.4px);
    -webkit-backdrop-filter: blur(2.4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.mobile-chat{
    display: none;
}
.chat-glass .chat-header{
    width: calc(100% - 40px);
    height: 50px;
    padding: 5px 20px;
    background: rgba(255, 255, 255, 0.116);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}
.chat-glass .chat-header .chat-profile-pic{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.chat-glass .chat-header .chat-profile-pic img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.chat-glass .chat-header .chat-username{
    font-size: 17px;
    color: rgba(255, 255, 255, 0.801);
    font-weight: 500;
}
.chat-glass .chat-messages{
    width: calc(100% - 40px);
    height: calc(100% - 60px);
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.chat-glass .chat-messages .chat-message{
    font-size: 16px;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 12px;
    max-width: 80%;
    word-wrap: break-word;
}
.chat-glass .chat-messages .chat-message.sent{
    align-self: flex-end;
    background: rgba(82, 169, 255, 0.2);
}

.chat-glass .chat-messages .chat-message.received{
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.1);
}
.chat-glass .chat-input{
    width: calc(100% - 40px);
    height: 60px;
    padding: 0 20px;
    background: rgba(255, 255, 255, 0.116);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    gap: 10px;
}
.chat-glass .chat-input input{
    width: calc(100% - 70px);
    height: 30px;
    border: none;
    border-radius: 15px;
    padding: 0 15px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
}
.chat-glass .chat-input input::placeholder{
    color: rgba(255, 255, 255, 0.6);
}
.chat-glass .chat-input button{
    width: 50px;
    height: 30px;
    border: none;
    border-radius: 15px;
    background: linear-gradient(90deg, #52a9ff, #68faff);
    color: rgb(0, 0, 0);
    font-size: 14px;
    font-weight: 600;
}
.chat-layout{
    display: none;
}

@media (min-width: 1660px){
    .yeti-trading-content .chat-glass{
        width: 40%;
        height: 400px;
        bottom: 25%;
    }
}
@media (max-width: 1440px){
    .yeti-trading-box{
        width: 90%;
    }
}
@media (max-width: 1200px){
    .yeti-trading-content .billboard{
        left: 0px;
        height: 80%;
    }
    .yeti-trading-content .alpha-yeti{
        left: 300px;
        height: 40%;
    }
    .yeti-trading-content .campfire{
        left: 450px;
        height: 50%;
    }
    .yeti-trading-content .chat-glass{
        width: 50%;
        height: 350px;
        bottom: 20%;
    }
}
@media (max-height: 900px) {
    .yeti-trading-header{
        margin-top: 170px!important;
    }
    .yeti-trading .yeti-trading-header .yeti-trading-title{
        font-size: 36px;
    }
    .yeti-trading .yeti-trading-header .yeti-trading-desc{
        font-size: 19px;
    }
    .yeti-trading-content .chat-glass{
        width: 40%;
        height: 340px;
        bottom: 15%;
        z-index: 101;
    }
    .yeti-trading-content .billboard{
        height: 100%;
    }
    .yeti-trading-content .alpha-yeti{
        height: 60%;
        left: 290px;
    }
    .yeti-trading-content .campfire{
        height: 60%;
        left: 480px;
    }
}
@media (max-width: 900px){
    .yeti-trading-content .billboard{
        left: 0px;
        height: 80%;
    }
    .yeti-trading-content .alpha-yeti{
        left: 260px;
        height: 35%;
        z-index:6;
    }
    .yeti-trading-content .campfire{
        left: 350px;
        height: 40%;
        z-index: 5;;
    }
    .yeti-trading-content .chat-glass{
        width: 50%;
        height: 300px;
        bottom: 20%;
        z-index:5;
    }
}
@media (max-width: 768px){
    .chat-layout{
        display: none;
        justify-content: center;
        align-items: center;
        position: fixed;
        width: 100vw;
        height: 100dvh;
        left: 0;
        top: 0;
        background-color: #0d1a3673;
        z-index: 1001;
    }
    .chat-layout .chat-glass{
        background: rgb(0 0 0 / 63%);
    }
    .chat-layout .chat-glass .chat-header{
        position:relative;
    }
    .chat-layout .chat-glass .chat-header .chat-close-button{
        position: absolute;
        right: 10px;
        width: 25px;
        height: 25px;
        background: rgba(255, 0, 0, 0.479);
        border: none;
        border-radius: 50%;
        color: white;
        font-size: 18px;
        font-weight: bold;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }
    .chat-layout .chat-glass .chat-header .chat-close-button::after{
        content: '';
        position: absolute;
        width: 3px;
        height: 13px;
        background-color: white;
        transform: rotate(45deg);
    }
    .chat-layout .chat-glass .chat-header .chat-close-button::before{
        content: '';
        position: absolute;
        width: 3px;
        height: 13px;
        background-color: white;
        transform: rotate(-45deg);
    }
    
    .yeti-trading-box{
        gap: 60px;
    }
    .yeti-trading-header{
        margin-top: 100px!important;
    }
    .yeti-trading-header button{
        display: block;
        margin: 25px auto;
        font-size: 18px;
        font-weight: 600;
        padding: 10px 20px;
        border: #52a9ff solid 2px;
        border-radius: 25px;
        background: linear-gradient(90deg, #52a9ff, #68faff);
        color: rgb(0, 0, 0);

    }
    .yeti-trading .chat-glass{
        display: none;
        width: 90%;
        height: 400px;
        position: static!important;
        z-index: 1001;
    }
    .yeti-trading-content .billboard{
        height: 100%;
        width: auto;
        transform: translateX(-50%);
        left: 50%;
    }
    .yeti-trading-content .alpha-yeti{
        left: 0;
        bottom: 0;
        height: 40%;
    }
    .yeti-trading-content .campfire{
        height: 40%;
        transform: translateX(-50%);
        left: 50%;
    }
}
.how-it-works{
    height: auto;
    width: 100%;
    background: linear-gradient(180deg, #0d1a36 0%, rgb(150, 176, 247) 100%);
    background-color: #0d1a36;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 80px 20px;
    box-sizing: border-box;
    position: relative
}
.how-it-works-header{
    margin-top: 80px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.how-it-works-header .how-it-works-title{
    font-size: 43px;
    color: white;
    margin: 0;
    font-weight: 700;
}
.how-it-works-header .how-it-works-title-extra{
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    background: linear-gradient(rgb(87, 255, 216), rgb(0, 170, 255) 68.27%, rgb(116, 230, 255)) text;
}
.how-it-works-header .how-it-works-desc{
    font-size: 23px;
    color: #cacaca;
    margin: 10px 0 0 0;
    font-weight: 500;
}
.how-it-works-header .how-it-works-button{
    margin-top: 20px;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: 600;
    /* From https://css.glass */
    background: rgba(0, 0, 0, 0.514);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 0, 0, 1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.how-it-works-header .how-it-works-button img{
    height: 100%;
    width: auto;
}
.how-it-works-header .how-it-works-button:hover{
    cursor: unset;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
    transform: translate3d(0, -3px, 0) scale(1.03);
}
.how-it-works-steps{
    width: calc(1300px - 80px);
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: space-between;
}
.how-it-works-steps .step{
    width: 20%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px;
    gap: 15px;
    text-align: center;
    /* From https://css.glass */
    background: rgba(0, 0, 0, 0.6);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.how-it-works-steps .step:hover{
    transform: translate3d(0, -10px, 0);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}
.how-it-works-steps .step .step-icon{
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}
.how-it-works-steps .step .step-icon img{
    width: 50%;
    height: auto;
}

.how-it-works-steps .step .step-title{
    font-size: 24px;
    color: white;
    margin: 0;
    font-weight: 600;
}

.how-it-works-steps .step .step-desc{
    font-size: 15px;
    color: #d0d0d0;
    margin: 0;
    font-weight: 500;
    line-height: 1.5;
    text-align: left;
}

.hiw1, .hiw3{
    margin-bottom: 180px;
}
.hiw2, .hiw4{
    margin-top: 180px;
}
@media (max-width: 1440px){
    .how-it-works-steps{
        width: calc(90% - 40px);
        gap: 30px;
        justify-content: center;
    }
    .how-it-works-header{
        margin-top: 60px;
    }
    .how-it-works-header .how-it-works-title{
        font-size: 34px;
    }
    .how-it-works-header .how-it-works-desc{
        font-size: 20px;
    }
    .how-it-works-steps .step{
        width: 22%;
    }
    .how-it-works-steps .step .step-title{
        font-size: 20px;
    }
    .how-it-works-steps .step .step-desc{
        font-size: 14px;
    }
    .hiw1, .hiw3{
        margin-bottom: 140px;
    }
    .hiw2, .hiw4{
        margin-top: 140px;
    }
}
@media (max-height: 900px) {
    .how-it-works-header{
        margin-top: 60px;
    }
    .how-it-works-header .how-it-works-title{
        font-size: 34px;
    }
    .how-it-works-header .how-it-works-desc{
        font-size: 16px;
    }
    .how-it-works-steps{
        margin-top: 15px;
    }
    .how-it-works-steps .step{
        padding: 15px;
        gap: 10px;
    }
    .how-it-works-steps .step .step-icon{
        width: 50px;
        height: 50px;
    }
    .how-it-works-steps .step .step-title{
        font-size: 20px;
    }
    .how-it-works-steps .step .step-desc{
        font-size: 14px;
    }
    .hiw1, .hiw3{
        margin-bottom: 140px;
    }
    .hiw2, .hiw4{
        margin-top: 140px;
    }
}
@media (max-width: 1200px){
    .how-it-works-steps .step{
        width: 25%;
    }
}
@media (max-width: 900px){
    .how-it-works.page{
        height: auto;
    }
    .how-it-works-steps{
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    .how-it-works-steps .step{
        width: 100%;
        margin: 0;
    }
    .how-it-works-header .how-it-works-title{
        font-size: 32px;
    }
    .how-it-works-header .how-it-works-desc{
        font-size: 18px;
    }
    .how-it-works-steps .step .step-title{
        font-size: 18px;
    }
    .how-it-works-steps .step .step-desc{
        font-size: 13px;
    }
    .hiw1, .hiw3{
        margin-bottom: 100px;
    }
    .hiw2, .hiw4{
        margin-top: 100px;
    }
}
.our-yeti-token{
    background: url('../images/ice.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    max-height: calc(100vh - 200px);
}
.our-yeti-token-top-gradient{
    position: absolute;
    top: -1px;
    height: 200px;
    width: 100%;
    background: #0D1A36;
    background: linear-gradient(180deg, rgb(150, 176, 247) 37%, rgba(100, 160, 225, 0) 100%);
    z-index: 1;
}
.our-yeti-token-content{
    width: 1300px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}
.our-yeti-token-content .our-yeti-token-left{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    width: 50%;
    text-align: center;
}
.our-yeti-token-content .our-yeti-token-left .our-yeti-token-title{
    font-size: 42px;
    color: rgb(0, 0, 0);
    margin: 0;
    font-weight: 700;
}
.our-yeti-token-content .our-yeti-token-left .our-yeti-token-title-extra{
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.8));
    background: linear-gradient(rgb(87, 255, 216), rgb(0, 170, 255) 68.27%, rgb(116, 230, 255)) text;
}
.our-yeti-token-content .our-yeti-token-left .our-yeti-token-desc{
    font-size: 23px;
    color: #ffffff;
    margin: 0;
    font-weight: 500;
    text-align: left;
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.6));
    line-height: 1.5;
}
.our-yeti-token-content .our-yeti-token-right{
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.our-yeti-token-content .our-yeti-token-right .yeti-token-image{
    width: auto;
    height: 100%;
    animation: floatYeti 36s ease-in-out infinite;
}
@keyframes floatYeti {
    0%, 100% {
        transform: rotate(-5deg) translateY(0);
    }
    25% {
        transform: rotate(55deg) translateY(-20px);
    }
    50% {
        transform: rotate(55deg) translateY(20px);
    }
    75% {
        transform: rotate(-5deg) translateY(-20px);
    }
}
.our-yeti-token-security-first{
    width: 1300px;
    padding: 40px 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* From https://css.glass */
    background: rgba(0, 0, 0, 0.15);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.034);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}
.our-yeti-token-security-first .security-first-title{
    font-size: 32px;
    color: rgb(255, 255, 255);
    margin: 0;
    font-weight: 700;
    text-align: center;
}
.our-yeti-token-security-first .security-first-title-extra{
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    filter: drop-shadow(0 0 2px rgba(0, 0, 0, 1));
    background: linear-gradient(rgb(87, 255, 216), rgb(0, 170, 255) 68.27%, rgb(116, 230, 255)) text;
}
.our-yeti-token-security-first .security-first-desc{
    font-size: 20px;
    color: #ffffff;
    margin: 0;
    text-align: center;
    font-weight: 500;
    filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.8));
    line-height: 1.5;
    margin-top: 10px;
    max-width: 800px;
}
.our-yeti-token-security-first .security-first-icons{
    width: 100%;
    margin-top: 40px;
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}
.our-yeti-token-security-first .security-first-icons img{
    height: 30px;
}
.our-yeti-token-bottom-gradient{
    position: absolute;
    bottom: 0;
    height: 200px;
    width: 100%;
    background: #0D1A36;
    background: linear-gradient(0deg, #7FB0FC 0%, rgba(100, 160, 225, 0) 100%);
    z-index: 1;
}
@media (max-width: 1440px){
    .our-yeti-token-content{
        width: calc(90% - 40px);
        padding: 20px;
        gap: 30px;
    }
    .our-yeti-token-content .our-yeti-token-left .our-yeti-token-title{
        font-size: 34px;
    }
    .our-yeti-token-content .our-yeti-token-left .our-yeti-token-desc{
        font-size: 20px;
    }
    .our-yeti-token-security-first{
        width: calc(90% - 40px);
    }
}
@media (max-height: 900px) {
    .our-yeti-token-content .our-yeti-token-right img{
        width: 60%!important;
        height: auto!important;
    }
    .our-yeti-token-content .our-yeti-token-left .our-yeti-token-title{
        font-size: 36px;
    }
    .our-yeti-token-content .our-yeti-token-left .our-yeti-token-desc{
        font-size: 19px;
    }
    .our-yeti-token-security-first .security-first-title{
        font-size: 28px;
    }
    .our-yeti-token-security-first .security-first-desc{
        font-size: 18px;
    }
}

@media (max-width: 768px){
    .our-yeti-token{
        padding: 60px 20px;
        max-height: none;
    }
    .our-yeti-token-top-gradient{
        height: 150px;
    }
    .our-yeti-token-content{
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: 140px;
        gap: 0;
        width: calc(100% - 40px);
    }
    .our-yeti-token-content .our-yeti-token-left{
        width: 100%;
        text-align: center;
    }
    .our-yeti-token-content .our-yeti-token-left .our-yeti-token-title{
        font-size: 32px;
    }
    .our-yeti-token-content .our-yeti-token-left .our-yeti-token-desc{
        font-size: 18px;
    }
    .our-yeti-token-content .our-yeti-token-right{
        width: 80%;
    }
    .our-yeti-token-content .our-yeti-token-right .yeti-token-image{
        height: auto;
        width: 70%;
    }
    .our-yeti-token-security-first{
        width: calc(100% - 40px);
        padding: 20px 10px;
    }
    .our-yeti-token-security-first .security-first-title{
        font-size: 23px;
    }
    .our-yeti-token-security-first .security-first-desc{
        font-size: 16px;
    }
    .our-yeti-token-security-first .security-first-icons img{
        height: 26px;
    }
}
.join-yield-yeti{
    background: url('../images/iglobg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.join-yield-yeti-content{
    width: 1300px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    box-sizing: border-box;
}
.join-yield-yeti .join-yield-yeti-tv{
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    box-sizing: border-box;
    gap: 40px;
}
.join-yield-yeti-tv .join-yield-yeti-title{
    font-size: 45px;
    color: rgb(0, 0, 0);
    margin: 0;  
    font-weight: 700;
    text-align: left;
}
.join-yield-yeti-tv .join-yield-yeti-title-extra{
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.7));
    background: linear-gradient(rgb(87, 255, 216), rgb(0, 170, 255) 68.27%, rgb(116, 230, 255)) text;
}
.join-yield-yeti-tv .join-yield-yeti-video{
    width: calc(100% - 32px);
    border-radius: 16px;
    /* From https://css.glass */
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}
.join-yield-yeti .grab-your-code{
    padding: 20px;
    width: 50%;
    height: 343px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    box-sizing: border-box;
    position: relative;
    gap: 20px;
    /* From https://css.glass */
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgb(0, 225, 255);
    z-index: 2;
}
.grab-your-code p{
    font-size: 22px;
    color: rgb(48, 48, 48);
    font-weight: 500;
    text-align: center;
}
.grab-your-code a{
    display: inline-block;
    padding: 12px 20px;
    height: 25px;
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(90deg, #52a9ff, #68faff);
    border-radius: 25px;
    color: rgb(0, 0, 0);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: -24.5px;
    border: 1px solid rgb(0, 225, 255);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.grab-your-code a.hovered{
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
    transform: translate3d(0, -3px, 0) scale(1.03);
}
.grab-your-code img{
    height: auto;
    width: 100%;
    position: absolute;
    top: -30%;
}
.join-yield-yeti-bottom-gradient{
    position: absolute;
    bottom: 0;
    height: 200px;
    width: 100%;
    background: #0D1A36;
    background: linear-gradient(0deg, #8FB8FB 0%, rgba(100, 160, 225, 0) 100%);
    z-index: 1;
}
@media (max-width: 1440px){
    .join-yield-yeti-content{
        width: calc(90% - 40px);
        gap: 30px;
    }
    .join-yield-yeti .join-yield-yeti-tv .join-yield-yeti-title{
        font-size: 36px;
    }
    .grab-your-code{
        height: 23vw!important;
    }
    .grab-your-code p{
        font-size: 20px;
    }
    .grab-your-code a{
        font-size: 16px;
    }
    .grab-your-code img{
        width: 80%;
    }
}
@media (max-height: 900px) {
    .join-yield-yeti .join-yield-yeti-tv .join-yield-yeti-title{
        font-size: 38px;
    }
    .grab-your-code p{
        font-size: 19px;
    }
    .grab-your-code a{
        font-size: 15px;
    }
}
@media (max-width: 1000px){
    .join-yield-yeti-content{
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: calc(100% - 80px);
    }
    .join-yield-yeti-tv{
        width: 100%!important;
        align-items: center!important;
        justify-content: center!important;
        text-align: center;
    }
    .join-yield-yeti-tv .join-yield-yeti-video{
        width: 60%!important;
    }
    .join-yield-yeti .join-yield-yeti-tv .join-yield-yeti-title{
        font-size: 32px;
        text-align: center;
    }
    .grab-your-code{
        width: calc(60% + 30px)!important;
        height: auto!important;
    }
    .grab-your-code img{
        width: 70%;
        margin-bottom: 10px;
    }
    .grab-your-code a{
    }
    .grab-your-code p{
        padding-top: 80px;
        font-size: 18px;
        height: 60%;
    }
}
@media (max-width: 768px){
    .join-yield-yeti{
        min-height: 100dvh;
    }
    .join-yield-yeti-content{
        padding: 80px 0;
    }
    .join-yield-yeti-content .join-yield-yeti-tv .join-yield-yeti-video{
        width: calc(100% - 30px)!important;
    }
    .grab-your-code{
        width: 100%!important;
    }
    .grab-your-code img{
        width: 90%;
        top: -30px;
    }
}
.three-box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: #8FB8FB;
    background: linear-gradient(180deg, #8DB7F5 0%, rgba(58, 97, 158, 1) 48%, #8DB7F5 100%);
    background: url('../images/icewall.png');
    background-size: cover;
    background-position: center;
    position: relative;
    border-bottom: 3px solid #052146;
}
.three-box-top-gradient{
    position: absolute;
    top: -1px;
    height: 150px;
    width: 100%;
    background: #0D1A36;
    background: linear-gradient(180deg, #8DB7F5 37%, rgba(100, 160, 225, 0) 100%);
    z-index: 1;
}
.three-box-bottom-gradient{
    position: absolute;
    bottom: 0;
    height: 50px;
    width: 100%;
    background: #0D1A36;
    background: linear-gradient(0deg, #8DB7F5 37%, rgba(100, 160, 225, 0) 100%);
    z-index: 1;
}
.three-box-content {
    width: calc(1300px - 40px);
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 20px 0;
    z-index: 15;
    /* From https://css.glass */
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 0, 0, 0.3);
}
.three-box-content .box {
    width: 32%;
    height: 100%;
    border-radius: 16px;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}
.box-separator{
    width: 3px;
    height: 300px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
}
.three-box-content .box .box-image {
    width: auto;
    height:35%;
}
.three-box-content .box .box-title {
    font-size: 24px;
    color: rgb(255, 255, 255);
    margin: 0;
    font-weight: 600;
    text-align: center;
}
.three-box-content .box .box-desc {
    font-size: 16px;
    color: #ffffff;
    filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.377));
    margin: 0;
    font-weight: 500;
    text-align: center;
    line-height: 1.5;
}
.three-box-content .box .box-button {
    margin-top: 10px;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(90deg, #52a9ff, #68faff);
    border-radius: 25px;
    color: rgb(0, 0, 0);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.three-box-content .box .box-button:hover{
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
    transform: translate3d(0, -3px, 0) scale(1.03);
}
.three-box-content .box .box-buttons{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.three-box-content .box .box-buttons .buttonsbtn{
    padding: 10px 15px;
    font-size: 16px;
    font-weight: 600;
    /* From https://css.glass */
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 0, 0, 0.3); 
    color: rgb(255, 255, 255);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.three-box-content .box .box-buttons .buttonsbtn:hover{
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
    transform: translate3d(0, -3px, 0) scale(1.03);
}
.three-box-content .box .box-buttons .buttonsbtn i{
    font-size: 18px;
}
@media (max-width: 1440px){
    .three-box-content{
        width: calc(90% - 40px);
        height: 400px;
        gap: 15px;
    }
    .three-box-content .box {
        width: 30%;
        height: 100%;
        padding: 15px;
    }
    .three-box-content .box .box-image {
        height: 30%;
    }
    .three-box-content .box .box-title {
        font-size: 20px;
    }
    .three-box-content .box .box-desc {
        font-size: 14px;
    }
    .three-box-content .box .box-button {
        font-size: 14px;
        padding: 8px 12px;
    }
    .three-box-content .box .box-buttons .buttonsbtn{
        font-size: 14px;
        padding: 8px 12px;
    }
    .three-box-content .box .box-buttons .buttonsbtn i{
        font-size: 16px;
    }
}
@media (max-height: 900px) {
    .three-box-content{
        height: 350px;
    }
    .three-box-content .box .box-image {
        height: 28%;
    }
    .three-box-content .box .box-title {
        font-size: 19px;
    }
    .three-box-content .box .box-desc {
        font-size: 13px;
    }
    .three-box-content .box .box-button {
        font-size: 13px;
        padding: 7px 10px;
    }
    .three-box-content .box .box-buttons .buttonsbtn{
        font-size: 13px;
        padding: 7px 10px;
    }
    .three-box-content .box .box-buttons .buttonsbtn i{
        font-size: 15px;
    }
}
@media (max-width: 900px){
    .three-box-content{
        flex-direction: column;
        height: auto;
        padding: 100px 20px;
        width: calc(100% - 40px);
        background: none;
        box-shadow: none;
        border: none;
        backdrop-filter: none;
    }
    .three-box-content .box {
        width: 100%;
        height: auto;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 16px;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        border: 1px solid rgba(0, 0, 0, 0.3);
    }
    .three-box-content .box + .box{
        margin-top: 20px;
    }
    .three-box-content .box .box-image {
        width: 80%;
        height: auto;
    }
    .box-separator{
        display: none;
    }
}
.footer{
    background: #0D1A36;
    position:relative;
    z-index: 10;
    display: flex;
    width: 100%;;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: url('../images/icewall.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
}
.footer-bg{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: -1;
}
.footer-divider{
    width: 1300px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
}
.footer-top-gradient{
    position: absolute;
    top: -1px;
    height: 50px;
    width: 100%;
    background: linear-gradient(180deg, #8DB7F5 37%, rgba(100, 160, 225, 0) 100%);
}
.footer-content{
    width: 1300px;
    padding: 40px 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    /* From https://css.glass */
    
}
.footer-content .footer-left{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    width: 50%;
}
.footer-content .footer-left .footer-logo{
    height: 50px;
    width: auto;
}
.footer-content .footer-left .footer-desc{
    font-size: 16px;
    color: #000000;
    margin: 0;
    font-weight: 500;
    line-height: 1.5;
}
.footer-content .footer-left .footer-socials{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    margin-top: 10px;

}
.footer-content .footer-left .footer-socials a{
    text-decoration: none;
}
.footer-content .footer-left .footer-socials a i{
    font-size: 20px;
    color: #000000;
    transition: color 0.3s ease;
    /* From https://css.glass */
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 0, 0, 0.3);
    padding: 3px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}
.footer-content .footer-left .footer-socials a i:hover{
    color: #003c79;
    transform: scale(1.1);
}
.footer-content .footer-right{
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 50px;
    width: 45%;
    flex-wrap: wrap;
}
.footer-content .footer-right .footer-links-column{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
}
.footer-content .footer-right .footer-links-column .footer-links-title{
    font-size: 21px;
    color: #2d47bb;
    margin: 0;
    font-weight: 700;
}
.footer-content .footer-right .footer-links-column a{
    font-size: 18px;
    color: #000000;
    margin: 0;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-content .footer-right .footer-links-column a:hover{
    color: #003c79;
}
.footer-copy{
    width: 100%;
    padding: 20px 0;
    box-sizing: border-box;
    text-align: center;
    font-size: 16px;
    color: #000000;
    margin: 0;
    font-weight: 500;
}
@media (max-width: 1440px){
    .footer-divider{
        width: calc(90% - 40px);
    }
    .footer-content{
        width: calc(90% - 40px);
        gap: 15px;
    }
    .footer-content .footer-left{
        width: 60%;
    }
    .footer-content .footer-left .footer-desc{
        font-size: 14px;
    }
    .footer-content .footer-right{
        width: 35%;
        gap: 30px;
    }
    .footer-content .footer-right .footer-links-column .footer-links-title{
        font-size: 18px;
    }
    .footer-content .footer-right .footer-links-column a{
        font-size: 16px;
    }
    .footer-copy{
        font-size: 14px;
    }
}
@media (max-width: 900px){
    .footer-content{
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: calc(100% - 40px);
        gap: 30px;
    }
    .footer-content .footer-left{
        width: 100%;
        align-items: center;
        text-align: center;
    }
    .footer-content .footer-right{
        width: 100%;
        justify-content: center;
        gap: 30px;
    }
    .footer-copy{
        font-size: 13px;
    }
}
@media (max-height: 900px) {
    .footer-content .footer-left .footer-desc{
        font-size: 15px;
    }
    .footer-content .footer-right .footer-links-column .footer-links-title{
        font-size: 20px;
    }
    .footer-content .footer-right .footer-links-column a{
        font-size: 17px;
    }
    .footer-copy{
        font-size: 15px;
    }
}
@media (max-height: 768px) {
    .footer{
        padding-bottom: env(safe-area-inset-bottom);
    }
}
.header .nav-links .nav-socials{
    display: none;
    
}
.header.toggle{
    border-radius: 20px;
    height: auto;
    align-items: flex-start;
    /* From https://css.glass */
    background-color: unset;
    background: rgba(18, 30, 73, 0.5);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
.header.toggle .nav-links{
    padding: 35px 0;
    flex-direction: column;
    justify-content: flex-start;
}
.header.toggle .nav-links .nav-socials{
    display: flex;
    margin-top: 20px;
    gap: 15px;
}
.header.toggle .menu-icon{
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}
.header.toggle .menu-icon .bar{
    width: 30px;
    height: 4px;
    background-color: #ffffff;
    position: absolute;
    transition: all 0.3s ease;
}
.header.toggle .menu-icon .firstbar{
    transform: rotate(45deg);
}
.header.toggle .menu-icon .middlebar{
    display: none;
}
.header.toggle .menu-icon .lastbar{
    transform: rotate(-45deg);
}
@media (max-width: 1440px){
    .header.toggle .nav-links{
        display: flex;
        padding: 30px 0;
    }
}
@media (max-width: 768px){
    .header.toggle{
        width: calc(100% - 40px);
        padding: 20px;
    }
    .header.toggle .nav-links{
        display: flex;

    }
}
