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

html {
    scroll-behavior: smooth;
}

body {
    background: #080b11;
    color: #fff;
    font-family: "DM Sans", sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button {
    font: inherit;
}

.orbit-shell {
    min-height: 100vh;
    overflow: hidden;
}

.content-stage {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
}

.section-kicker {
    display: inline-block;
    color: #31ea77;
    font-family: "Space Grotesk", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    display: grid;
    grid-template-columns: 220px 1fr 220px;
    align-items: center;
    min-height: 78px;
    padding: 0 38px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(8, 11, 17, 0.94);
    backdrop-filter: blur(18px);
}

.identity-mark {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    width: fit-content;
}

.identity-mark__symbol {
    display: grid;
    place-items: center;
    width: 35px;
    height: 35px;
    border: 1px solid rgba(49, 234, 119, 0.55);
    border-radius: 50%;
    color: #31ea77;
    font-family: "Space Grotesk", sans-serif;
    font-size: 15px;
    font-weight: 700;
}

.identity-mark__name {
    font-family: "Space Grotesk", sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.desktop-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.desktop-links__item {
    position: relative;
    padding: 9px 15px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.desktop-links__item::after {
    position: absolute;
    right: 15px;
    bottom: 2px;
    left: 15px;
    height: 1px;
    background: #31ea77;
    content: "";
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.desktop-links__item:hover,
.desktop-links__item.is-current {
    color: #fff;
}

.desktop-links__item:hover::after,
.desktop-links__item.is-current::after {
    transform: scaleX(1);
}

.topbar__action {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 17px;
    border: 1px solid rgba(49, 234, 119, 0.4);
    border-radius: 8px;
    color: #31ea77;
    font-size: 13px;
    font-weight: 700;
    transition: background 0.2s ease, color 0.2s ease;
}

.topbar__action:hover {
    background: #31ea77;
    color: #080b11;
}

.topbar__action span {
    font-size: 16px;
}

.burger-toggle {
    display: none;
    justify-self: end;
    width: 43px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
}

.burger-toggle span {
    display: block;
    width: 19px;
    height: 2px;
    margin: 4px auto;
    background: #fff;
}
.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 200;
    display: flex;
    flex-direction: column;
    width: min(390px, 88%);
    height: 100vh;
    padding: 28px;
    background: #0c1119;
    border-left: 1px solid rgba(49, 234, 119, 0.16);
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-drawer.is-open {
    transform: translateX(0);
}

.mobile-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.mobile-drawer__label {
    color: #31ea77;
    font-family: "Space Grotesk", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.drawer-dismiss {
    position: relative;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
}

.drawer-dismiss span {
    position: absolute;
    top: 19px;
    left: 10px;
    width: 19px;
    height: 2px;
    background: #fff;
}

.drawer-dismiss span:first-child {
    transform: rotate(45deg);
}

.drawer-dismiss span:last-child {
    transform: rotate(-45deg);
}

.mobile-drawer__links {
    display: flex;
    flex-direction: column;
    margin-top: 25px;
}

.mobile-drawer__links a {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 17px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
    font-weight: 600;
}

.mobile-drawer__links a:hover {
    color: #31ea77;
}

.mobile-drawer__links span {
    width: 25px;
    color: #ebb849;
    font-family: "Space Grotesk", sans-serif;
    font-size: 10px;
}

.mobile-drawer__register {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding: 16px 18px;
    border-radius: 9px;
    background: #31ea77;
    color: #080b11;
    font-size: 14px;
    font-weight: 800;
}

.drawer-backdrop {
    position: fixed;
    inset: 0;
    z-index: 150;
    background: rgba(0, 0, 0, 0.65);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.drawer-backdrop.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.launch-panel {
    min-height: 650px;
    padding: 70px 0 40px;
    gap: 70px;
}

.launch-panel__main {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.launch-panel__crumbs {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
}

.launch-panel__crumbs a:hover {
    color: #31ea77;
}

.launch-panel__crumbs span:last-child {
    color: rgba(255, 255, 255, 0.7);
}


.launch-panel__title {
    max-width: 700px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(48px, 6vw, 82px);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.launch-panel__title strong {
    display: block;
    color: #31ea77;
    font-weight: 600;
}

.launch-panel__description {
    max-width: 610px;
    margin-top: 28px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 16px;
    line-height: 1.75;
}

.launch-panel__buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 35px;
}

.green-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 14px 19px;
    border-radius: 8px;
    background: #31ea77;
    color: #080b11;
    font-size: 13px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.green-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(49, 234, 119, 0.16);
}

.green-link span {
    font-size: 17px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 700;
    transition: color 0.2s ease;
}

.text-link:hover {
    color: #31ea77;
}
.opening-note {
    gap: 45px;
    max-width: 940px;
    margin: 15px auto 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}


.opening-note__body {
    max-width: 760px;
}

.opening-note h2 {
    margin-top: 13px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.opening-note p {
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 15px;
    line-height: 1.8;
}
.section-intro {
    display: grid;
    grid-template-columns: 70px 1fr 360px;
    gap: 30px;
    align-items: end;
    margin-bottom: 42px;
}

.section-intro__index,
.facts-heading__count {
    color: #ebb849;
    font-family: "Space Grotesk", sans-serif;
    font-size: 13px;
    font-weight: 700;
}

.section-intro h2,
.library-header h2,
.facts-heading h2,
.context-area__heading h2,
.safety-area h2,
.closing-panel h2 {
    margin-top: 10px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(31px, 4vw, 48px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.section-intro > p {
    color: rgba(255, 255, 255, 0.48);
    font-size: 13px;
    line-height: 1.7;
}
.safety-area {
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: 60px;
    margin-bottom: 50px;
    padding: 55px;
    border: 1px solid rgba(235, 184, 73, 0.18);
    border-radius: 22px;
    background: rgba(235, 184, 73, 0.025);
}

.safety-area__side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.safety-area__age {
    color: #ebb849;
    font-family: "Space Grotesk", sans-serif;
    font-size: 65px;
    font-weight: 600;
    line-height: 1;
}

.safety-area__content {
    max-width: 750px;
}

.safety-area h2 {
    margin-top: 0;
}

.safety-area__content > p {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.53);
    font-size: 14px;
    line-height: 1.8;
}

.safety-area__notice {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 28px;
    padding: 14px 17px;
    border-left: 2px solid #ebb849;
    background: rgba(235, 184, 73, 0.04);
}

.safety-area__notice > span {
    color: #ebb849;
    font-weight: 800;
}

.safety-area__notice p {
    color: rgba(255, 255, 255, 0.48);
    font-size: 12px;
}
.closing-panel {
    display: grid;
    grid-template-columns: 130px 1fr auto;
    align-items: center;
    gap: 35px;
    margin-bottom: 50px;
    padding: 38px;
    border-radius: 20px;
    background: #31ea77;
    color: #080b11;
}

.closing-panel__mark {
    font-family: "Space Grotesk", sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.closing-panel .section-kicker {
    color: rgba(8, 11, 17, 0.55);
}

.closing-panel h2 {
    margin-top: 5px;
    font-size: 32px;
}

.closing-panel__content p {
    max-width: 600px;
    margin-top: 8px;
    color: rgba(8, 11, 17, 0.65);
    font-size: 13px;
}

.closing-panel__actions {
    display: flex;
    gap: 10px;
}

.closing-panel__button {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    padding: 13px 17px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
}

.closing-panel__button--outline {
    border: 1px solid rgba(8, 11, 17, 0.25);
}

.closing-panel__button--green {
    background: #080b11;
    color: #31ea77;
}
.bottom-footer {
    padding: 0 0 35px;
}

.bottom-footer__main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.identity-mark--footer {
    flex: 0 0 auto;
}

.bottom-footer__navigation {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 20px;
}

.bottom-footer__navigation a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    transition: color 0.2s ease;
}

.bottom-footer__navigation a:hover {
    color: #31ea77;
}

.bottom-footer__legal {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    padding-top: 22px;
}

.bottom-footer__legal p {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.28);
    font-size: 10px;
    line-height: 1.6;
}

.bottom-footer__legal > div {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 16px;
}

.bottom-footer__legal a,
.bottom-footer__legal span {
    color: rgba(255, 255, 255, 0.32);
    font-size: 10px;
}

.bottom-footer__legal a:hover {
    color: #31ea77;
}

.return-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 80;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(49, 234, 119, 0.3);
    border-radius: 50%;
    background: #0c1118;
    color: #31ea77;
    font-size: 18px;
    transition: background 0.2s ease, color 0.2s ease;
}

.return-top:hover {
    background: #31ea77;
    color: #080b11;
}
@media (max-width: 1050px) {

    .topbar {
        grid-template-columns: 180px 1fr 180px;
        padding: 0 24px;
    }

    .desktop-links__item {
        padding-right: 9px;
        padding-left: 9px;
    }

    .launch-panel {
        gap: 40px;
    }

    .visual-stamp {
        right: -10px;
    }

    .section-intro {
        grid-template-columns: 55px 1fr 300px;
    }

    .promotion-board,
    .library-layout {
        grid-template-columns: 1fr 0.8fr;
    }

    .closing-panel {
        grid-template-columns: 90px 1fr;
    }

    .closing-panel__actions {
        grid-column: 2;
    }

}


@media (max-width: 800px) {

    .topbar {
        display: flex;
        justify-content: space-between;
        min-height: 70px;
    }

    .desktop-links,
    .topbar__action {
        display: none;
    }

    .burger-toggle {
        display: block;
    }

    .content-stage {
        width: min(100% - 32px, 680px);
    }

    .launch-panel {
        grid-template-columns: 1fr;
        padding-top: 40px;
    }

    .launch-panel__main {
        min-height: auto;
    }

    .launch-panel__visual {
        min-height: 500px;
    }

    .visual-frame {
        height: 500px;
    }

    .visual-stamp {
        right: 15px;
    }

    .section-intro,
    .library-header {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .section-intro__index {
        margin-bottom: -5px;
    }

    .promotion-board,
    .library-layout {
        grid-template-columns: 1fr;
    }

    .library-primary {
        grid-template-rows: 280px auto;
    }

    .context-grid {
        grid-template-columns: 1fr;
    }

    .context-card {
        min-height: auto;
    }

    .context-card__number {
        margin-bottom: 45px;
    }

    .safety-area {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 35px;
    }

    .safety-area__age {
        font-size: 50px;
    }

    .closing-panel {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px;
    }

    .closing-panel__actions {
        grid-column: auto;
    }

    .bottom-footer__main,
    .bottom-footer__legal {
        flex-direction: column;
    }

    .bottom-footer__navigation,
    .bottom-footer__legal > div {
        justify-content: flex-start;
    }

}


@media (max-width: 560px) {

    .topbar {
        padding: 0 16px;
    }

    .content-stage {
        width: calc(100% - 24px);
    }

    .launch-panel {
        padding-top: 30px;
        padding-bottom: 60px;
        gap: 35px;
    }

    .launch-panel__crumbs {
        margin-bottom: 20px;
    }

    .launch-panel__title {
        font-size: clamp(42px, 13vw, 62px);
    }

    .launch-panel__description {
        font-size: 14px;
    }

    .launch-panel__buttons {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .launch-panel__visual {
        min-height: 390px;
    }

    .visual-frame {
        height: 390px;
        border-radius: 20px 20px 20px 3px;
    }

    .visual-stamp {
        right: 8px;
        bottom: 20px;
        min-width: 165px;
        padding: 14px;
    }

    .visual-stamp strong {
        font-size: 30px;
    }

    .opening-note {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 30px;
        padding-top: 20px;
    }

    .opening-note h2 {
        font-size: 30px;
    }

    .metric-strip {
        grid-template-columns: 1fr;
        margin-bottom: 80px;
    }

    .metric-strip__cell {
        padding: 22px 18px;
    }

    .metric-strip__cell + .metric-strip__cell {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-left: 0;
    }

    .promotion-area,
    .library-area,
    .facts-area,
    .context-area {
        margin-bottom: 85px;
    }

    .section-intro h2,
    .library-header h2,
    .facts-heading h2,
    .context-area__heading h2,
    .safety-area h2 {
        font-size: 31px;
    }

    .promotion-feature {
        min-height: 430px;
        padding: 22px;
    }

    .promotion-feature__value {
        margin-top: 60px;
    }

    .promotion-feature__value strong {
        font-size: 68px;
    }

    .promotion-line {
        grid-template-columns: 55px 1fr 35px;
        padding: 17px;
    }

    .promotion-line__content strong {
        font-size: 22px;
    }

    .library-secondary {
        grid-template-columns: 1fr;
    }

    .library-card {
        grid-template-columns: 120px 1fr;
        grid-template-rows: 105px;
    }

    .library-card__body {
        padding: 15px;
    }

    .library-primary {
        grid-template-rows: 230px auto;
    }

    .library-primary__body {
        padding: 20px;
    }

    .facts-heading {
        gap: 15px;
        margin-bottom: 25px;
    }

    .facts-table-wrap table {
        min-width: 680px;
    }

    .facts-table-wrap th {
        padding: 13px 16px;
    }

    .facts-table-wrap td {
        padding: 16px;
        font-size: 13px;
    }

    .safety-area {
        margin-bottom: 70px;
        padding: 25px 20px;
        border-radius: 16px;
    }

    .closing-panel {
        margin-bottom: 50px;
        padding: 25px 20px;
    }

    .closing-panel h2 {
        font-size: 29px;
    }

    .closing-panel__actions {
        flex-direction: column;
    }

    .closing-panel__button {
        justify-content: center;
    }

    .bottom-footer__navigation {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .return-top {
        right: 14px;
        bottom: 14px;
        width: 38px;
        height: 38px;
    }

}
.launch-panel__main {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border-radius: 24px;
    padding: 42px;
}

.launch-panel__banner {
    position: absolute;
    inset: 0;
    z-index: -2;
    overflow: hidden;
}

.launch-panel__banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.launch-panel__banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgb(8 11 17 / 18%) 0%, rgb(8 11 17 / 57%) 48%, rgba(8, 11, 17, 0.48) 100%), linear-gradient(180deg, rgba(8, 11, 17, 0.25), rgb(8 11 17 / 24%));
}

.launch-panel__content {
    position: relative;
    z-index: 2;
    /*min-height: 560px;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 800px) {

    .launch-panel__main {
        padding: 28px;
        border-radius: 20px;
    }

    .launch-panel__content {
        min-height: 500px;
    }

    .launch-panel__banner img {
        opacity: 0.9;
    }

    .launch-panel__banner-overlay {
                background: linear-gradient(180deg, rgb(8 11 17 / 50%), rgb(8 11 17 / 50%));
    }

}

@media (max-width: 560px) {

    .launch-panel__main {
        padding: 22px;
    }

    .launch-panel__content {
        min-height: 470px;
    }

}
.bonus-dock {
    position: fixed;
    left: 50%;
    bottom: 20px;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    width: min(620px, calc(100% - 40px));
    min-height: 68px;
    padding: 9px 9px 9px 22px;
    border: 1px solid rgba(49, 234, 119, 0.3);
    border-radius: 14px;
    background: rgba(8, 11, 17, 0.95);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(16px);
    transform: translateX(-50%);
}

.bonus-dock__info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.bonus-dock__label {
    color: #ebb849;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.13em;
    line-height: 1.2;
}

.bonus-dock__info strong {
    margin-top: 3px;
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-size: 18px;
    line-height: 1.2;
    white-space: nowrap;
}

.bonus-dock__link {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 9px;
    background: #31ea77;
    color: #080b11;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bonus-dock__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(49, 234, 119, 0.2);
}

.bonus-dock__link span {
    font-size: 16px;
}
.bonus-dock {
    left: 0;
    bottom: 0;
    width: 100%;
    min-height: 66px;
    padding: 9px 12px;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 14px 14px 0 0;
    transform: none;
}

.bonus-dock__info strong {
    font-size: 16px;
}

.bonus-dock__link {
    min-height: 46px;
    padding: 0 14px;
}

.bonus-dock__link span {
    display: none;
}
ul,
ol {
    margin: 22px 0;
    padding-left: 0;
    list-style: none;
}

ul li,
ol li {
    position: relative;
    margin-bottom: 12px;
    padding: 14px 18px 14px 48px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.025);
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.65;
}

ul li:last-child,
ol li:last-child {
    margin-bottom: 0;
}

ul li::before {
    position: absolute;
    top: 23px;
    left: 20px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #31ea77;
    box-shadow: 0 0 10px rgba(49, 234, 119, 0.35);
    content: "";
}

ol {
    counter-reset: custom-list;
}

ol li {
    counter-increment: custom-list;
}

ol li::before {
    position: absolute;
    top: 14px;
    left: 17px;
    color: #ebb849;
    font-family: "Space Grotesk", sans-serif;
    font-size: 11px;
    font-weight: 700;
    content: counter(custom-list, decimal-leading-zero);
}

ul li strong,
ol li strong {
    color: #fff;
}

ul li a,
ol li a {
    color: #31ea77;
    text-decoration: underline;
    text-decoration-color: rgba(49, 234, 119, 0.35);
    text-underline-offset: 3px;
}

ul li a:hover,
ol li a:hover {
    color: #ebb849;
    text-decoration-color: #ebb849;
}

@media (max-width: 560px) {

    ul li,
    ol li {
        padding: 13px 14px 13px 42px;
        font-size: 13px;
    }

    ul li::before {
        left: 17px;
    }

    ol li::before {
        left: 14px;
    }

}
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: #0c1118;
    overflow: hidden;
}

table th {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(49, 234, 119, 0.15);
    background: rgba(49, 234, 119, 0.045);
    color: #31ea77;
    font-family: "Space Grotesk", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-align: left;
    text-transform: uppercase;
    white-space: nowrap;
}

table td {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.58);
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
    vertical-align: top;
}

table tr:last-child td {
    border-bottom: 0;
}

table td:first-child {
    color: #fff;
    font-weight: 600;
}

table tbody tr:hover {
    background: rgba(49, 234, 119, 0.025);
}

@media (max-width: 700px) {

    table {
        display: block;
        width: 100%;
        min-width: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: #31ea77 rgba(255, 255, 255, 0.06);
    }

    table::-webkit-scrollbar {
        height: 6px;
    }

    table::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
    }

    table::-webkit-scrollbar-thumb {
        border-radius: 10px;
        background: #31ea77;
    }

    table thead,
    table tbody {
        width: max-content;
        min-width: 650px;
    }

    table th {
        padding: 14px 16px;
    }

    table td {
        padding: 15px 16px;
        font-size: 13px;
    }

}