* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-family: "Inter", "Britti Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1882352941);
    border-radius: 5px;
}

::-webkit-scrollbar-track-piece {
    background: rgba(255, 255, 255, 0.1882352941);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0);
    border-radius: 10px;
}

::-webkit-scrollbar-corner {
    background: rgba(0, 0, 0, 0);
    border-radius: 10px;
}

::-webkit-resizer {
    background: rgba(0, 0, 0, 0);
    border-radius: 10px;
}

html {
    height: 100%;
}

body {
    min-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: url("bg.jpg"), #151515;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: contain;
}

a, button, textarea, input {
    outline: none;
    text-decoration: none;
}

.responsive-main {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.responsive-wrapper {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background: url("bg.jpg"), #151515;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: contain;
}

.responsive-wrapper::before {
    position: fixed;
    content: "";
    inset: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    background: #151515;
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
}
.responsive-wrapper.mount::before {
    opacity: 0;
    pointer-events: none;
}

.container {
    max-width: 1450px;
    width: 100%;
    padding: 0px 20px;
    margin: 0px auto;
}

.responsive-time {
    padding: 12px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: #40ACFD;
    gap: 12px;
}

.time-event {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    position: relative;
}
.time-event::before {
    position: relative;
    content: "";
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 24px;
    height: 24px;
    background: url("clock.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.time-event > p {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.time {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 3px;
}
.time > span {
    color: rgba(255, 255, 255, 0.3);
    font-size: 20.773px;
    font-style: normal;
    font-weight: 500;
    line-height: 15.58px;
}
.time > .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 3px;
}
.time > .item > p {
    color: #FFF;
    font-size: 20.773px;
    font-style: normal;
    font-weight: 500;
    line-height: 15.58px;
    width: 21px;
    height: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    border-radius: 2.597px;
    background: rgba(0, 0, 0, 0.12);
}
.time > .item.left > p {
    color: rgba(212, 226, 239, 0.6);
}

nav > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    gap: 48px;
}
nav > ul > li {
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}
nav > ul > li:hover {
    opacity: 0.6;
}
nav > ul > li > p {
    white-space: nowrap;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.navigation > .item {
    width: 100%;
}

.logo {
    max-width: 178px;
    height: 38px;
}
.logo > img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}

.button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    border: none;
    outline: none;
    background-color: transparent;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.button-a {
    border-radius: 8px;
    background: #1B1B1B;
    -webkit-box-shadow: 0px 0px 0px 4px #3A3A3A;
            box-shadow: 0px 0px 0px 4px #3A3A3A;
    height: 56px;
    padding: 0px 24px;
}
.button-a > p {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.button-a:hover {
    -webkit-box-shadow: none;
            box-shadow: none;
    background: #242424;
}

.navigate-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}

.navigation {
    padding: 26px 0;
}

.welcome-head-event {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    padding: 0px 24px;
    height: 52px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.04);
}
.welcome-head-event::before {
    position: relative;
    content: "";
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 20px;
    height: 20px;
    background-image: url("c033aa5013bfcc352136932c5706d2ed84b1e3ba.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.welcome-head-event > p {
    color: #A1A2A4;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 110.574%;
}

.welcome-head {
    padding: 0px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 22px;
}

.welcome-head-text > h1 {
    color: #FFF;
    text-align: center;
    font-family: "Britti Sans";
    font-size: 64px;
    font-style: normal;
    font-weight: 500;
    line-height: 72px;
}

.welcome-links {
    padding: 0px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.button-b {
    padding: 0px 24px;
    border-radius: 8px;
    background: #40ACFD;
    height: 56px;
}
.button-b:hover {
    opacity: 0.6;
}
.button-b > p {
    color: #1B1B1B;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.button-c {
    padding: 0px 24px;
    height: 56px;
    border-radius: 8px;
    background: #242424;
}
.button-c:hover {
    opacity: 0.6;
}
.button-c > p {
    color: #A1A2A4;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.welcome {
	margin-bottom: 60px;
    padding: 0px 4px;
    padding-top: 88px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
    border-radius: 24px;
    background: #1B1B1B;
    -webkit-box-shadow: 0px 0px 0px 1px #3A3C40 inset;
            box-shadow: 0px 0px 0px 1px #3A3C40 inset;
}

.welcome-image {
    background: url("welcome-image.png");
    height: 153px;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
}

.responsive-welcome {
    padding: 30px 0;
}

.rule-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
}
.rule-info > h1 {
    color: #FFF;
    font-family: "Britti Sans";
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
}
.rule-info > p {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
}

.rule-content {
    max-width: 914px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
}

.rule-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 14px;
}
.rule-items > .item {
    width: 100%;
    padding: 32px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.74);
    -webkit-box-shadow: 0px 0px 0px 1px #FFF inset;
            box-shadow: 0px 0px 0px 1px #FFF inset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}
.rule-items > .item:hover {
    background: rgba(255, 255, 255, 0.94);
}
.rule-items > .item > h1 {
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.rule-items > .item > p {
    color: #242424;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.rule {
    padding: 38px 48px;
    background: url("rule-bg.jpg");
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    border-radius: 24px;
}

.responsive-info {
    padding: 68px 0;
}

.ico-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.ico-a {
    background-image: url("");
}

.ico-b {
    background-image: url("e766e6cd5ecf80c9674f5af21e47d6a5d0354ba0.svg");
}

.ico-c {
    background-image: url("e766e6cd5ecf80c9674f5af21e47d6a5d0354ba0.svg");
}

.info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.info > .item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 320px;
            flex: 1 1 320px;
    padding: 32px;
    border-radius: 16px;
    background: #1B1B1B;
    -webkit-box-shadow: 0px 0px 0px 1px #3A3C40 inset;
            box-shadow: 0px 0px 0px 1px #3A3C40 inset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 24px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}
.info > .item:hover {
    background: #242424;
}
.info > .item > h1 {
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.info > .item > p {
    color: #A1A2A4;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
}

.trust-items {
    max-width: 674px;
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 14px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.trust-items > .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 64px;
    padding: 32px;
    border-radius: 16px;
    background: #1B1B1B;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}
.trust-items > .item > h1 {
    color: #A1A2A4;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
}
.trust-items > .item > p {
    color: #FFF;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
}
.trust-items > .item:hover {
    background: #242424;
}
.trust-items > .item.h-type {
    background: #171C1A;
}
.trust-items > .item.h-type > h1 {
    color: #53B66F;
}
.trust-items > .item.h-type > p {
    color: #53B66F;
}
.trust-items > .item.h-type:hover {
    background: #1E2623;
}

.trust {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 20px;
}

.trust-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}
.trust-info > h1 {
    color: #FFF;
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.trust-info-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 32px;
    max-width: 458px;
    width: 100%;
}
.trust-info-text > p {
    color: #A1A2A4;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.responsive-airdrop-footer {
    margin-top: 112px;
    background: #1B1B1B;
    border-radius: 40px 40px 0 0;
    padding-top: 74px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 96px;
}

.banners {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 20px;
}
.banners > .item {
    opacity: 0.18;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}
.banners > .item:hover {
    opacity: 0.32;
}
.banners > .item > img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    -o-object-fit: scale-down;
       object-fit: scale-down;
}

.airdrop-info-head {
    max-width: 472px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}
.airdrop-info-head > h1 {
    color: #FFF;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.airdrop-info-head > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.airdrop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 56px;
}

.airdrop-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.message {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
}
.message::before {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    content: "";
    width: 24px;
    height: 24px;
    background-image: url("");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.message > p {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 38.275px;
}

.airdrop-info-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 26px;
}

.claim {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    background: url("");
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    border-radius: 10px;
    padding: 40px;
}
.claim > p {
    color: rgba(255, 255, 255, 0.48);
    font-family: "Britti Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
}
.claim > h1 {
    color: #FFF;
    font-family: "Britti Sans";
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
}

.button-d {
    height: 56px;
    padding: 0px 24px;
    border-radius: 8px;
    background: #FFF;
}
.button-d > p {
    -webkit-transition: 0.2s;
    transition: 0.2s;
    color: #40ACFD;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.button-d:hover > p {
    color: #3A1929;
}

.airdrop-info {
    padding: 48px;
    background: #242424;
    border: 1px solid #3A3C40;
    border-radius: 16px;
}

.airdrop-live {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.head-live {
    padding: 48px;
    padding-bottom: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 20px;
    position: relative;
}
.head-live::after {
    position: relative;
    content: "";
    width: 24px;
    height: 24px;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    background-image: url("");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.head-live > p {
    color: #FFF;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.live {
    overflow: hidden;
    background: #242424;
    border: 1px solid #3A3C40;
    border-radius: 16px;
}

.live-header {
    padding: 20px 48px;
    background: rgba(58, 60, 64, 0.24);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 20px;
}
.live-header > .item > p {
    color: #A1A2A4;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

@-webkit-keyframes show {
    0% {
        -webkit-transform: scale(0);
                transform: scale(0);
        opacity: 0;
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
                transform: scale(1);
    }
}

@keyframes show {
    0% {
        -webkit-transform: scale(0);
                transform: scale(0);
        opacity: 0;
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
                transform: scale(1);
    }
}
.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 20px;
    padding: 14px 48px;
    overflow: hidden;
    -webkit-animation: 0.2s show;
            animation: 0.2s show;
}
.row > .item > p {
    color: #A1A2A4;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.row > .item:first-child {
    overflow: hidden;
    width: 100%;
}
.row > .item:first-child > p {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.row > .item:last-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    position: relative;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.row > .item:last-child::after {
    position: relative;
    content: "";
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 24px;
    height: 24px;
    background-image: url("");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.row > .item:last-child > p {
    white-space: nowrap;
    color: #FFF;
    text-align: right;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.responsive-info-footer {
    background: #232323;
    padding: 16px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.responsive-info-footer > p {
    color: #A1A2A4;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

@media screen and (max-width: 1450px) {
    .navigation {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .rule-items {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .trust {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .airdrop-live {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
    .rule {
        padding: 20px;
        border-radius: 20px;
        background: radial-gradient(19.36% 92.98% at -5.89% 82.21%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 100%), radial-gradient(13.17% 90.64% at 52.13% 129.87%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 100%), radial-gradient(11.31% 62.83% at 104.75% 29.19%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 100%), radial-gradient(20.2% 111.07% at 58.51% -4.36%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 100%), #40ACFD;
    }
    nav > ul {
        gap: 16px;
    }
    .navigation {
        gap: 20px;
    }
    .navigation > .item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    .navigation > .item:last-child {
        display: none;
    }
    .welcome-head-text > h1 {
        font-size: 30px;
        line-height: 140%;
    }
    .welcome-head-text > h1 > br {
        display: none;
    }
    .info > .item {
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        text-align: center;
    }
    .rule-items > .item {
        text-align: center;
        padding: 20px;
    }
    .trust-info > h1 {
        font-size: 32px;
    }
    .rule-content {
        max-width: 100%;
    }
    .trust-items {
        max-width: 100%;
    }
    .airdrop-info-head {
        max-width: 100%;
    }
    .info {
        gap: 20px;
    }
    .button-a {
        height: 48px;
        padding: 0px 16px;
    }
    .button-a > p {
        font-size: 14px;
    }
    .button-b {
        height: 48px;
        padding: 0px 16px;
    }
    .button-b > p {
        font-size: 14px;
    }
    .button-d {
        height: 48px;
        padding: 0px 16px;
    }
    .button-d > p {
        font-size: 14px;
    }
    .button-c {
        height: 48px;
        padding: 0px 16px;
    }
    .button-c > p {
        font-size: 14px;
    }
    .welcome-head-event > p {
        font-size: 14px;
    }
    .welcome {
        padding: 0px;
        padding-top: 44px;
    }
    .info > .item {
        padding: 20px;
    }
    .trust-items > .item {
        padding: 20px;
        gap: 32px;
    }
    .trust-items > .item > h1 {
        font-size: 16px;
    }
    .trust-items > .item > p {
        font-size: 22px;
    }
    .banners {
        display: none;
    }
    .responsive-airdrop-footer {
        padding-top: 20px;
        margin-top: 44px;
    }
    .airdrop-info {
        padding: 20px;
    }
    .claim {
        padding: 20px;
    }
    .claim > h1 {
        font-size: 26px;
    }
    .rule-info {
        text-align: center;
    }
    .trust-info {
        text-align: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    .trust-info-text {
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    .trust-items > .item {
        text-align: center;
    }
    .airdrop-info-head {
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        text-align: center;
    }
    .message {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    .claim {
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    .head-live {
        padding: 20px;
    }
    .head-live > p {
        font-size: 26px;
    }
    .live-header {
        padding: 20px;
    }
    .row {
        padding: 14px 20px;
    }
    .row > .item > p {
        font-size: 14px;
    }
    .row > .item:last-child > p {
        font-size: 14px;
    }
    .responsive-airdrop-footer {
        gap: 44px;
    }
    .responsive-info-footer > p {
        font-size: 14px;
    }
}
@media screen and (max-width: 769px) {
    .trust-items {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}
.site-footer {
  background-color: #0d0f14;
  color: #ffffffcc;
  padding: 60px 20px 30px;
  font-family: sans-serif;
  border-top: 1px solid #1a1a1a;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left {
  flex: 1 1 250px;
  margin-bottom: 20px;
}

.footer-logo {
  width: 140px;
  margin-bottom: 10px;
}

.footer-tagline {
  font-size: 14px;
  opacity: 0.7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 150px;
}

.footer-links a {
  color: #ffffffcc;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 10px;
}

.footer-social img {
  width: 20px;
  height: 20px;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.footer-social img:hover {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  font-size: 12px;
  opacity: 0.5;
  margin-top: 40px;
}
.top-menu {
  list-style: none;
  display: flex;
  gap: 30px;
  padding: 0;
  margin: 0;
  align-items: center;
}

.top-menu li {
  display: inline-block;
}

.top-menu .menu-link {
  color: white;
  font-size: 16px;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.top-menu .menu-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
