@font-face {
    font-family: 'LA REZOLT';
    src: url(../fonts/LA.html\ REZOLT.woff2) format('woff2'),
        url(../fonts/LA.html\ REZOLT.woff) format('woff');
    font-style: normal;
    font-optical-sizing: auto;
}

@font-face {
    font-family: 'PalypenSans';
    src: url('../fonts/PlaypenSans-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-stretch: 75% 125%;
    font-style: normal;
}

:root {
    --base-color: #65D4F1;
    --dark-color: #002133;
    --White-color: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'PalypenSans', sans-serif;
    font-weight: 400;
    font-stretch: 100%;
    background-color: var(--base-color);
}



h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-family: 'LA REZOLT';
}

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

img {
    width: 100%;
}

/* Header= */
header {
    padding: 20px 0;
    position: absolute;
    top: 0;
    width: 100%;
    max-height: 94px;
    z-index: 9999;
}

.brand-logo {
    max-width: 240px;
    width: 100%;
    display: block;
    outline: none;
}

.social-media {
    width: 64px;
    height: 64px;
    display: block;
}

/* Hero= */
.hero-banner {
    padding-top: 100px;
    background-color: #000717;
    overflow: hidden;
}

.hero-elements {
    padding: 180px 0 600px 0;
}

.sky {
    height: 60%;
    width: 100%;
    background-image: url(../images/star-overlay.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.moon {
    max-width: 268px;
    aspect-ratio: 1/1;
    width: 100%;
    animation: moon-rotate 50s linear infinite both;
    transition: .3s linear;
    position: absolute;
    left: 50%;
    top: -60px;
    transform: translate(-50%, -0%);
}

.moon:hover {
    filter: brightness(1.1) saturate(10);
    scale: 1.02;
}

@keyframes moon-rotate {
    from {
        transform: translate(-50%, 0) rotate(0deg);
    }

    to {
        transform: translate(-50%, 0) rotate(360deg);
    }
}

.hero-title {
    font-size: 120px;
    color:#c1e5ff;
    opacity: .6;
    line-height: 90%;
    position: relative;
    mix-blend-mode: color-dodge;

}

.dolphine-float {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 40%;
    user-select: none;
}

.dolphine-float img {
    position: absolute;
    width: 100%;
}

.dolphine-top {
    max-width: 736px;
    width: 100%;
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
    animation: jump 2s linear infinite alternate;
}

.sea-top, .sea-ovelay {
    bottom: 0;
    left: 0;
    right: 0;
}

@keyframes jump {
    0% {
        transform: translate(-50%, 0);
    }

    100% {
        transform: translate(-50%, 5%);
    }
}

/* Static= */
.static-section {
    padding: 140px 0 120px 0;
}

.static-section>img {
    width: 100%;
    position: absolute;
    top: -106px;
}

.static-wrapper {
    max-width: 1260px;
    margin: 0 auto;
}

.static-card {
    position: relative;
}

.static-card img {
    transition: .3s linear;
}

.static-card:hover img {
    scale: 1.04;
}

.static-data {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -20%);
}

.static-data h3 {
    font-size: 60px;
    color: var(--White-color);
    text-shadow: 2px 2px 0px #002E47;
    text-align: center;
    line-height: 80%;
}

.static-data h3 span {
    font-size: 26px;
    display: block;
}

/* About= */
.about-section {
    padding: 100px 0 100px 0px;
    overflow: hidden;
}

.about-content {
    max-width: 600px;
}

.section-title {
    font-size: 74px;
    line-height: 120%;
    color: var(--White-color);
    text-shadow: 3px 3px 0px var(--dark-color);
    margin-bottom: 40px;
}

.web-content {
    font-weight: 600;
    font-size: 20px;
    line-height: 140%;
    color: #002133;
}

.cloud-img {
    max-width: 660px;
    width: 100%;
    top: 0;
    animation: move 80s linear infinite alternate;
}

.cloud-img-sm {
    max-width: 303px;
    top: 0;
    right: 0;
    animation: move-left 80s linear infinite alternate;
}

@keyframes move {
    0% {
        left: -20%;
    }

    100% {
        left: 100%;
    }
}

@keyframes move-left {
    0% {
        right: 0%;
    }

    100% {
        right: 100%;
    }
}

.seating-dol-img {
    width: 100%;
    max-width: 710px;
    height: 705px;
    position: relative;
}

.seating-dol-img img {
    position: absolute;
}

.seating-dol {
    bottom: 0;
    width: 100%;
    transition: linear .5s;
}


.tree-lg {
    max-width: 410px;
    right: 0;
    bottom: 80px;
    animation: motion 3s ease-in infinite alternate;
    transform-origin: bottom center;
}

.tree {
    max-width: 250px;
    right: 50%;
    bottom: 200px;
    animation: motion 4s ease-in-out infinite alternate;
    animation-delay: 1s;
    transform-origin: bottom center;
}

@keyframes motion {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(10deg);
    }
}

/* Exchange======== */
.exchange-section {
    background-image: url(../images/exchange-bg.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100%;
    background-color: var(--base-color);
    background-blend-mode: luminosity;
}

.exchange-heading {
    max-width: 580px;
}

.light-wrapper {
    position: absolute;
    left: 50%;
    top: 50px;
    transform: translate(-50%, -00%);
    width: 100%;
    max-width: 793px;
    height: 189px;
    background: #17B0DA;
    filter: blur(100px);

}

.exchange-oct {
    width: 100%;
    max-width: 120px;
    position: absolute;
    animation: bounce 10s ease-in-out infinite both;
}

@keyframes bounce {
    0% {
        top: 0%;
        left: 40%;
        transform: rotate(150deg);
    }

    100% {
        top: 80%;
        left: 70%;
        transform: rotate(135deg);
        opacity: 0;
    }
}

.exchange-container {
    padding: 100px 0 180px 0;
    max-width: 1290px;
    margin-top: 78px;

}

.holding-dol {
    max-width: 350px;
    position: relative;
}

.exchange-item-wrapper {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    background: var(--White-color);
    border: 10px solid #167FB7;
    box-shadow: 3px 3px 0px var(--dark-color);
    border-radius: 24px;
    margin-top: -78px;
    padding: 4px;

}

.exchange-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 40px;
    width: calc(100%/3 - 4px);
    flex-grow: 1;
    border: 4px solid #8BBFDB;
    border-radius: 12px;
}

.exchange-item img {
    object-fit: contain;
    max-height: 50px;
}

/* Tokon===== */

.tokono-wrapper {
    padding: 80px 0;
}

/* Ensure chart image fills its column and is centered */
.chart-img{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
}
.chart-img img{
    width:100%;
    max-width:100%;
    height:auto;
    display:block;
}

.token-info {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    max-width: 589px;
    background: #FD9D75;
    border: 5px solid var(--dark-color);
    border-radius: 50px;
    font-size: 28px;
    font-weight: 600;
    margin-top: 40px;
}
.token-ca {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    max-width: 900px;
    width: 100%;
    background: #FD9D75;
    border: 5px solid var(--dark-color);
    border-radius: 50px;
    font-size: 28px;
    font-weight: 600;
    margin-top: 40px;
    box-sizing: border-box;
    text-align: center;
    /* allow very long strings (no spaces) to break/wrap inside the pill */
    word-break: break-all;
    overflow-wrap: anywhere;
}

.dol-family {
    width: 100%;
    max-width: 630px;
    animation: jumping 1.8s linear infinite alternate;

}

@keyframes jumping {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(20px);
    }
}

.bubble {
    width: 50px;
    height: 54px;
    position: absolute;
    mix-blend-mode: luminosity;
}

.bbl-1 {
    animation: bbl 3s linear infinite both;
}

.bbl-2 {
    animation: bbl 3s linear infinite both;
    animation-delay: 2s;
}

.bbl-3 {
    animation: bbl 3s linear infinite both;
    animation-delay: 3s;
}

@keyframes bbl {
    0% {
        transform: scale(.0);
        top: 46%;
        right: 42%;
    }

    10% {
        transform: scale(.2);
        top: 46%;
        right: 42%;
    }

    90% {
        transform: scale(1.2);
        top: 30%;
        right: 40%;
    }

    100% {
        top: 29%;
        right: 40%;
        opacity: 0;
    }
}

/* Buy== */
.buy-section {
    padding: 80px 0 180px 0;
}

.buy-card-container {
    max-width: 830px;
    width: 100%;
    margin-top: 50px;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.buy-card {
    background: #FFFFFF;
    border: 5px solid #FFFFFF;
    box-shadow: 2.5px 2.5px 0px #002E47;
    border-radius: 16px;
    flex-grow: 1;
    position: relative;
    overflow: hidden;
    transition: .3s cubic-bezier(0.755, 0.05, 0.855, 0.06);
    width: calc(100% / 2 - 30px);
}

.buy-card:hover {
    transform: rotate(5deg);
}

.b-img {
    width: 100%;
}

.b-card-content {
    position: absolute;
    width: 100%;
    bottom: 0;
    background: linear-gradient(180deg, rgba(101, 211, 241, 0) 7.72%, #056888 28.46%);
    padding: 40px 18px 18px 18px;

}

.b-card-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--White-color);
    text-align: center;
    text-shadow: 2.55172px 2.55172px 0px #002E47;
}

.b-card-copy {
    font-weight: 600;
    font-size: 13px;
    text-align: center;
    color: #fffffff2;
    margin-top: 4px;
}

.float-oct {
    max-width: 160px;
    position: absolute;
}

.oct-1 {
    animation: float 40s linear infinite both;
}


@keyframes float {
    0% {
        bottom: 0%;
        right: 100px;
        transform: rotate(-45deg) scale(.3);

    }

    100% {
        bottom: 70%;
        right: 80%;
        transform: rotate(-30deg) scale(1);
        opacity: 0;
    }
}

/* Social Proof= */
.social-proof-section {
    padding: 100px 0;
    overflow: hidden;
}

.social-proof-container {
    width: 100%;
    max-width: 980px;
    aspect-ratio: 1/1;
    position: relative;
}

.social-title-center {
    max-width: 460px;
    aspect-ratio: 1/1;
    padding: 40px;
    background-color: #0083AD;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.social-title-center::before {
    content: "";
    display: block;
    position: absolute;
    width: 500px;
    height: 500px;
    background-color: #3DBDE3;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    pointer-events: none;
    animation: scale-1 2s linear infinite both;
}

@keyframes scale-1 {
    0% {
        transform: translate(-50%, -50%) scale(.0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.card-container {
    position: relative;
    width: 100%;
    height: 100%;
    animation: rotate-card 20s linear infinite both;
}

.card-container:has(.s-card:hover) {
    animation-play-state: paused;
}

@keyframes rotate-card {
    0% {
        transform: rotate(0deg) scale(1);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}


.s-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scaleY(0);
    height: 250px;
    width: 303px;
    background-color: #167FB7;
    border-radius: 22px;
    transform-origin: center;

}

.s-card img {
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
    border: 4px solid var(--White-color);
}

.rotate-1 {
    transform: translate(-50%, -50%) rotate(0deg) translate(360px);
}

.rotate-2 {
    transform: translate(-50%, -50%) rotate(60deg) translate(360px);
}

.rotate-3 {
    transform: translate(-50%, -50%) rotate(120deg) translate(360px);
}

.rotate-4 {
    transform: translate(-50%, -50%) rotate(180deg) translate(360px);
}

.rotate-5 {
    transform: translate(-50%, -50%) rotate(240deg) translate(360px);
}

.rotate-6 {
    transform: translate(-50%, -50%) rotate(300deg) translate(360px);
}

.rotate-7 {
    transform: translate(-50%, -50%) rotate(360deg) translate(360px);
}

/* Footer= */
.footer-section {
    padding: 180px 0 140px 0;
    background-image: url(../images/footer-bg.svg);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: 100%;
}

.footer-wrapper {
    background: rgba(0, 59, 92, 0.6);
    border: 4px solid #FFFFFF;
    backdrop-filter: blur(5px);
    border-radius: 50px;
    padding: 90px;
}

.footer-wrapper p {
    font-size: 20px;
    font-weight: 600;
    color: var(--White-color);
}

.social-media-group-wrapper {
    max-width: 374px;
}

.social-media-lg {
    width: 100%;
    max-width: 148px;
    display: block;
}

.ft-dol {
    width: 100%;
    max-width: 340px;
    mix-blend-mode: multiply;
    position: absolute;
    top: -180px;
    left: 50%;
    transform: translate(-50%, 0%);
}

.bubble-lg {
    width: 50px;
    height: 54px;
    position: absolute;
    mix-blend-mode: luminosity;
    top: -200px;
    left: 51%;
    pointer-events: none;
}


.bbl-lg-1 {
    animation: bbl-lg 3s linear infinite both;
    animation-delay: 0s;
}

.bbl-lg-2 {
    animation: bbl-lg 3s linear infinite both;
    animation-delay: 2s;
}

.bbl-lg-3 {
    animation: bbl-lg 2s linear infinite both;
    animation-delay: 4s;
}

@keyframes bbl-lg {
    0% {
        transform: scale(.0);
        top: -200px;
        left: 51%;
    }

    10% {
        transform: scale(.4);
        top: -200px;
        left: 51%;
    }

    90% {
        transform: scale(1.3);
        top: -300px;
        left: 51%;
    }

    100% {
        top: -400px;
        left: 51%;
        opacity: 0;
    }
}