:root {
    --green: #34e88f;
    --green-2: #32f1df;
    --orange: #ffa62b;
    --bg: #14151a;
    --bg-soft: #1b1c22;
    --card: rgba(28, 29, 36, 0.82);
    --card-border: rgba(255, 255, 255, 0.08);
    --text: #ffffff;
    --muted: #a7a8b0;
    --danger: #ff5277;
    --warning: #ffb13b;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    background: var(--bg);

}

.hero {
    position: relative;
    min-height: 520px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-bg::before {
    display: none;
    content: "";
    position: absolute;
    right: 80px;
    bottom: -90px;
    width: 620px;
    height: 190px;
    background: linear-gradient(90deg, transparent, rgba(118, 63, 255, 0.32), transparent);
    filter: blur(22px);
    transform: skewX(-18deg);
}



.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1840px;
    min-height: 520px;
    margin: 0 auto;
    padding: 72px 56px 52px;
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    align-items: center;
    gap: 48px;
}

.hero-left h1 {
    max-width: 760px;
    font-size: clamp(48px, 5.2vw, 84px);
    line-height: 1.13;
    letter-spacing: 4px;
    font-weight: 900;
    color: #f6f6f7;
}

.hero-left h1 span {
    color: var(--orange);
}


.stat strong {
    display: block;
    font-size: 29px;
    line-height: 1;
    font-weight: 900;
    color: #ffffff;
}

.stat small {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
}

.hero-form {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 72px;
}

.hero-form input {
    width: 314px;
    height: 70px;
    padding: 0 14px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    outline: none;
    background: #2a2b30;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.hero-form input::placeholder {
    color: #a8a8ad;
}

.hero-form input:focus {
    border-color: rgba(52, 232, 143, 0.65);
    background: #2f3036;
    box-shadow: 0 0 0 4px rgba(52, 232, 143, 0.08);
}

.hero-form button {
    height: 70px;
    padding: 0 38px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #32f16d, var(--green));
    color: #020403;
    font-size: 17px;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.hero-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(52, 232, 143, 0.22);
    filter: brightness(1.04);
}

.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 380px;
}

.market-card {
    position: relative;
    width: min(720px, 100%);
    padding: 22px;
    border-radius: 28px;
    background:
            linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 36%),
            rgba(24, 25, 32, 0.88);
    border: 1px solid var(--card-border);
    box-shadow:
            0 32px 90px rgba(0, 0, 0, 0.45),
            0 0 0 1px rgba(255, 255, 255, 0.03) inset;
    backdrop-filter: blur(18px);
    animation: floatCard 4.8s ease-in-out infinite;
}

.market-card::before {
    content: "";
    inset: -2px;
    z-index: -1;
    border-radius: 30px;

    opacity: 0.55;
    filter: blur(1px);
}

.market-card::after {
    display: none;
    content: "";
    position: absolute;
    right: -54px;
    top: 52px;
    width: 120px;
    height: 120px;
    border-radius: 28px;
    background:
            linear-gradient(135deg, rgba(52, 232, 143, 0.96), rgba(50, 241, 223, 0.9));
    opacity: 0.9;
    z-index: -2;
    transform: rotate(14deg);
    box-shadow: 0 28px 60px rgba(52, 232, 143, 0.14);
}

.market-card-glow {
    display: none;
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: -38px;
    height: 70px;
    border-radius: 50%;
    filter: blur(28px);
    z-index: -3;
}

.market-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.market-header span {
    display: block;
    color: var(--green);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.market-header strong {
    display: block;
    margin-top: 5px;
    font-size: 25px;
    letter-spacing: -0.5px;
}

.market-badge {
    min-width: 58px;
    height: 38px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(52, 232, 143, 0.12);
    border: 1px solid rgba(52, 232, 143, 0.26);
    color: var(--green);
    font-weight: 900;
    font-size: 13px;
}

.coin-table {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.coin-row {
    display: grid;
    grid-template-columns: 1.45fr 1fr 0.9fr 0.75fr;
    align-items: center;
    min-height: 62px;
    padding: 12px 14px;
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.055);
    color: #f4f4f5;
    font-size: 14px;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.coin-row:not(.coin-head):hover {
    transform: translateX(4px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(52, 232, 143, 0.2);
}

.coin-head {
    min-height: auto;
    padding-top: 4px;
    padding-bottom: 4px;

    border-color: transparent;
    color: #858790;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.coin-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.coin-info strong {
    display: block;
    font-size: 14px;
    line-height: 1.1;
}

.coin-info span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.coin-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 900;
    color: #111;
}

.coin-icon.btc {
    background: linear-gradient(135deg, #ffd36a, #ff9f21);
}

.coin-icon.eth {
    background: linear-gradient(135deg, #f2f2f2, #9da3ff);
}

.coin-icon.usdt {
    background: linear-gradient(135deg, #64f6c3, #28d79c);
}

.coin-icon.sol {
    background: linear-gradient(135deg, #a471ff, #35f0c2);
}

.coin-icon.bnb {
    background: linear-gradient(135deg, #ffe072, #f2b51f);
}

.change {
    width: fit-content;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
}

.change.up {
    color: var(--green);
    background: rgba(52, 232, 143, 0.1);
}

.change.down {
    color: var(--danger);
    background: rgba(255, 82, 119, 0.1);
}

.change.stable {
    color: var(--warning);
    background: rgba(255, 177, 59, 0.1);
}

.market-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 17px;
    padding: 0 4px;
}

.market-footer span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.market-footer button {
    height: 42px;
    padding: 0 18px;
    border: 1px solid rgba(52, 232, 143, 0.24);
    border-radius: 999px;
    background: rgba(52, 232, 143, 0.1);
    color: var(--green);
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.market-footer button:hover {
    background: rgba(52, 232, 143, 0.17);
    transform: translateY(-1px);
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        padding: 58px 28px;
    }

    .hero-left h1 {
        max-width: 900px;
    }

    .hero-form {
        margin-top: 48px;
    }

    .hero-right {
        justify-content: flex-start;
    }

}

@media (max-width: 768px) {
    .hero-content {
        padding: 42px 18px;
    }

    .hero-left h1 {
        font-size: 42px;
        line-height: 1.15;
        letter-spacing: 1.5px;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        margin-top: 22px;
    }

    .stat strong {
        font-size: 20px;
    }

    .stat small {
        font-size: 11px;
    }

    .hero-form {
        flex-direction: column;
        align-items: stretch;
        margin-top: 34px;
    }

    .hero-form input,
    .hero-form button {
        width: 100%;
        height: 58px;
    }

    .market-card {
        padding: 16px;
        border-radius: 22px;
    }

    .market-header strong {
        font-size: 20px;
    }

    .coin-row {
        grid-template-columns: 1.35fr 0.9fr 0.85fr;
        gap: 8px;
        font-size: 12px;
    }

    .coin-row > div:nth-child(2) {
        display: none;
    }

    .coin-head > div:nth-child(2) {
        display: none;
    }

    .coin-icon {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
        font-size: 17px;
    }

    .coin-info strong {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hero-left h1 {
        font-size: 34px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .coin-row {
        grid-template-columns: 1.3fr 0.9fr 0.8fr;
        padding: 10px;
    }

    .market-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .market-footer button {
        width: 100%;
    }
}

@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        padding: 58px 28px;
    }

    .hero-left h1 {
        max-width: 900px;
    }

    .hero-form {
        margin-top: 48px;
    }

    .hero-right {
        justify-content: flex-start;
    }
}

.hero {
    min-height: 470px;
}

.hero-content {
    max-width: 1680px;
    min-height: 470px;
    padding: 54px 56px 42px;
    gap: 38px;
}

.hero-left h1 {
    font-size: clamp(42px, 4.4vw, 70px);
    line-height: 1.12;
    letter-spacing: 3px;
}

.hero-stats {
    gap: 42px;
    margin-top: 14px;
}

.stat strong {
    font-size: 24px;
}

.stat small {
    font-size: 12px;
}

.hero-form {
    margin-top: 52px;
}

.hero-form input {
    height: 58px;
    font-size: 14px;
}

.hero-form button {
    height: 58px;
    padding: 0 32px;
    font-size: 15px;
}

.hero-right {
    min-height: 340px;
}

.market-card {
    width: min(640px, 100%);
    padding: 18px;
    border-radius: 24px;
}

.market-header {
    margin-bottom: 14px;
}

.market-header strong {
    font-size: 22px;
}

.market-header span {
    font-size: 12px;
}

.market-badge {
    height: 34px;
    min-width: 52px;
    font-size: 12px;
}

.coin-table {
    gap: 7px;
}

.coin-row {
    padding: 10px 12px;
    border-radius: 15px;
    font-size: 13px;
}

.coin-head {
    font-size: 10px;
}

.coin-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    font-size: 18px;
    border-radius: 10px;
}

.coin-info strong {
    font-size: 13px;
}

.coin-info span {
    font-size: 11px;
}

.change {
    padding: 6px 9px;
    font-size: 12px;
}

.market-footer {
    margin-top: 14px;
}

.market-footer button {
    height: 38px;
    padding: 0 16px;
    font-size: 12px;
}

.coin-switch {
    display: inline-block;
    min-width: 150px;
    transition: color 0.25s ease, text-shadow 0.25s ease;
}

.coin-switch.coin-btc {
    color: #f7931a;
    text-shadow: 0 0 28px rgba(247, 147, 26, 0.22);
}

.coin-switch.coin-eth {
    color: #8b9cff;
    text-shadow: 0 0 28px rgba(139, 156, 255, 0.24);
}

.coin-switch.coin-sol {
    color: #34e88f;
    text-shadow: 0 0 28px rgba(52, 232, 143, 0.24);
}

.coin-switch.coin-xrp {
    color: #474646;
    text-shadow: 0 0 28px rgba(215, 221, 232, 0.22);
}

.coin-switch.is-changing {
    animation: coinSwitch 0.45s ease;
}

@keyframes coinSwitch {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }

    45% {
        opacity: 0;
        transform: translateY(-12px) scale(0.96);
        filter: blur(4px);
    }

    55% {
        opacity: 0;
        transform: translateY(12px) scale(0.96);
        filter: blur(4px);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.exchange-stats {
    width: 100%;
    background: #07090b;
    padding: 30px 22px;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 42px;
}

.exchange-stat {
    min-width: 0;
}

.exchange-stat strong {
    display: block;
    color: #ffffff;
    font-size: clamp(26px, 2.1vw, 34px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.8px;
    text-shadow: 0 0 22px rgba(52, 232, 143, 0.08);
}

.exchange-stat span {
    margin-top: 14px;
    color: rgba(190, 202, 229, 0.82);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
}

.exchange-stat-divider {
    width: 1px;
    height: 52px;
    background: linear-gradient(
            180deg,
            transparent,
            rgba(52, 232, 143, 0.42),
            rgba(255, 255, 255, 0.16),
            transparent
    );
}

@media (max-width: 900px) {
    .exchange-stats {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        padding: 28px 18px;
    }

    .exchange-stat-divider {
        display: none;
    }

    .exchange-stat {
        padding: 18px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.035);
        border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .exchange-stat span {
        margin-top: 10px;
        font-size: 14px;
    }
}

@media (max-width: 520px) {
    .exchange-stats {
        grid-template-columns: 1fr;
    }

    .exchange-stat strong {
        font-size: 28px;
    }
}

.exchange-stat strong {
    white-space: nowrap;
}

.counter {
    display: inline-block;
    min-width: 0.65em;
}

.exchange-stat.is-visible strong {
    animation: statPop 0.55s ease both;
}

@keyframes statPop {
    0% {
        opacity: 0.55;
        transform: translateY(8px) scale(0.96);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.platform-section {
    position: relative;
    padding: 92px 24px 78px;
    overflow: hidden;
}

.platform-section::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 92px;
    width: 520px;
    height: 180px;
    transform: translateX(-50%);
    pointer-events: none;
}

.platform-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}

.platform-container h2 {
    color: #ffffff;
    text-align: center;
    font-size: clamp(32px, 3vw, 44px);
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -1px;
}

.platform-grid {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
}

.platform-card {
    position: relative;
    min-height: 334px;
    padding: 28px 26px;
    border-radius: 22px;
    background:
            linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 42%),
            #151719;
    border: 1px solid rgba(255, 255, 255, 0.035);
    overflow: hidden;
    cursor: pointer;
    isolation: isolate;
    transition:
            transform 0.28s ease,
            border-color 0.28s ease,
            background 0.28s ease,
            box-shadow 0.28s ease;
}

.platform-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
            135deg,
            rgba(52, 232, 143, 0.55),
            transparent 34%,
            rgba(52, 232, 143, 0.08)
    );
    opacity: 0;
    transition: opacity 0.28s ease;
    pointer-events: none;
    z-index: -1;
    -webkit-mask:
            linear-gradient(#000 0 0) content-box,
            linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.platform-card::after {
    content: "";
    position: absolute;
    left: -40%;
    top: -90%;
    width: 85%;
    height: 220%;
    background: linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.06),
            transparent
    );
    transform: rotate(18deg) translateX(-120%);
    transition: transform 0.7s ease;
    pointer-events: none;
}

.platform-card h3 {
    position: relative;
    z-index: 3;
    color: rgba(255, 255, 255, 0.94);
    font-size: 21px;
    line-height: 1.2;
    font-weight: 850;
    letter-spacing: -0.4px;
    transition: color 0.28s ease, transform 0.28s ease;
}

.platform-card-glow {
    position: absolute;
    left: 50%;
    bottom: 46px;
    width: 180px;
    height: 90px;
    border-radius: 50%;
    background: rgba(52, 232, 143, 0.12);
    filter: blur(34px);
    opacity: 0;
    transform: translateX(-50%) scale(0.78);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.platform-image {
    position: absolute;
    left: 50%;
    top: 58%;
    width: 72%;
    max-width: 210px;
    transform: translate(-50%, -50%);
    transition: transform 0.35s ease, filter 0.35s ease;
}

.platform-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    user-select: none;
    pointer-events: none;
    filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.36));
}

.platform-card:hover {
    transform: translateY(-12px);
    border-color: rgba(52, 232, 143, 0.22);
    background:
            linear-gradient(145deg, rgba(52, 232, 143, 0.08), transparent 44%),
            #171a1c;
    box-shadow:
            0 28px 70px rgba(0, 0, 0, 0.38),
            0 0 44px rgba(52, 232, 143, 0.055);
}

.platform-card:hover::before {
    opacity: 1;
}

.platform-card:hover::after {
    transform: rotate(18deg) translateX(245%);
}

.platform-card:hover h3 {
    color: var(--green);
    transform: translateY(-2px);
}

.platform-card:hover .platform-card-glow {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.platform-card:hover .platform-image {
    transform: translate(-50%, -54%) scale(1.07);
    filter: brightness(1.08);
}

.platform-card:active {
    transform: translateY(-7px) scale(0.99);
}

@media (max-width: 1150px) {
    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .platform-card {
        min-height: 310px;
    }
}

@media (max-width: 620px) {
    .platform-section {
        padding: 64px 16px 56px;
    }

    .platform-grid {
        grid-template-columns: 1fr;
        margin-top: 38px;
    }

    .platform-card {
        min-height: 270px;
        padding: 24px;
        border-radius: 20px;
    }

    .platform-image {
        width: 62%;
        max-width: 190px;
    }

    .platform-container h2 {
        font-size: 30px;
    }
}

.platform-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

.exchange-stats {
    background: rgba(7, 9, 11, 0.48);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
@media (prefers-reduced-motion: reduce) {
    .site-bg::before,
    .site-bg-orb {
        animation: none;
    }
}

.site-bg {
    position: fixed;
    inset: 0;
    z-index: -10;
    overflow: hidden;
    background:
            radial-gradient(circle at 16% 10%, rgba(52, 232, 143, 0.055), transparent 24%),
            radial-gradient(circle at 86% 20%, rgba(52, 232, 143, 0.025), transparent 28%),
            linear-gradient(180deg, #07090b 0%, #050607 100%);
    pointer-events: none;
}

.site-bg::before {
    content: "";
    position: absolute;
    inset: -80px;
    background:
            linear-gradient(115deg, transparent 0%, rgba(52, 232, 143, 0.035) 28%, transparent 54%),
            linear-gradient(245deg, transparent 0%, rgba(118, 63, 255, 0.045) 34%, transparent 62%);
    animation: siteBgShift 14s ease-in-out infinite alternate;
}

.site-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
            radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.36) 78%);
    pointer-events: none;
}

.site-bg-orb {
    position: absolute;
    display: block;
    border-radius: 999px;
    filter: blur(46px);
    opacity: 0.55;
    transform: translate3d(0, 0, 0);
}

.site-bg-orb-1 {
    width: 360px;
    height: 360px;
    left: -90px;
    top: 170px;
    background: rgba(52, 232, 143, 0.16);
    animation: orbFloatOne 13s ease-in-out infinite;
}

.site-bg-orb-2 {
    width: 420px;
    height: 420px;
    right: -120px;
    top: 360px;
    background: rgba(117, 67, 255, 0.16);
    animation: orbFloatTwo 16s ease-in-out infinite;
}

.site-bg-orb-3 {
    width: 300px;
    height: 300px;
    left: 44%;
    bottom: -120px;
    background: rgba(50, 241, 223, 0.10);
    animation: orbFloatThree 18s ease-in-out infinite;
}

.site-bg-grid {
    position: absolute;
    inset: 0;
    display: block;
    opacity: 0.16;
    background-image:
            linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(circle at center, black 0%, transparent 72%);
}

@keyframes siteBgShift {
    0% {
        transform: translate3d(-24px, -18px, 0) scale(1);
    }

    100% {
        transform: translate3d(28px, 22px, 0) scale(1.04);
    }
}

@keyframes orbFloatOne {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(70px, -34px, 0) scale(1.12);
    }
}

@keyframes orbFloatTwo {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(-86px, 42px, 0) scale(1.08);
    }
}

@keyframes orbFloatThree {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(36px, -72px, 0) scale(1.16);
    }
}

.trade-platforms-section {
    position: relative;
    z-index: 1;
    padding: 86px 24px 92px;
    background: transparent;
    overflow: hidden;
}

.trade-platforms-container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
}

.trade-platforms-head {
    text-align: center;
}

.trade-platforms-head h2 {
    color: #ffffff;
    font-size: clamp(34px, 3.4vw, 46px);
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -1.2px;
}

.trade-platforms-head p {
    margin-top: 22px;
    color: rgba(215, 220, 230, 0.72);
    font-size: clamp(17px, 1.6vw, 22px);
    line-height: 1.45;
    font-weight: 500;
}

.trade-platforms-preview {
    position: relative;
    width: min(830px, 100%);
    margin: 68px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trade-platforms-device-glow {
    position: absolute;
    left: 50%;
    bottom: 4%;
    width: 78%;
    height: 26%;
    border-radius: 999px;
    background: rgba(52, 232, 143, 0.08);
    filter: blur(42px);
    transform: translateX(-50%);
    pointer-events: none;
}

.trade-platforms-preview::before {
    content: "";
    position: absolute;
    inset: 10% 8% 4%;
    border-radius: 34px;
    background:
            radial-gradient(circle at 50% 10%, rgba(52, 232, 143, 0.11), transparent 38%),
            radial-gradient(circle at 75% 70%, rgba(52, 232, 143, 0.055), transparent 34%);
    filter: blur(24px);
    opacity: 0.7;
    pointer-events: none;
}

.trade-platforms-image {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    user-select: none;
    pointer-events: none;
    filter:
            drop-shadow(0 30px 55px rgba(0, 0, 0, 0.44))
            drop-shadow(0 0 22px rgba(52, 232, 143, 0.045));
    animation: platformsFloat 5.4s ease-in-out infinite;
}

.trade-platforms-links {
    width: min(560px, 100%);
    margin: 58px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.trade-platform-link {
    position: relative;
    min-height: 92px;
    padding: 14px 10px 12px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    text-decoration: none;

    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.045);

    transition:
            transform 0.25s ease,
            border-color 0.25s ease,
            background 0.25s ease,
            box-shadow 0.25s ease;
}

.trade-platform-link::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 50% 0%, rgba(52, 232, 143, 0.16), transparent 58%);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.platform-icon {
    position: relative;
    z-index: 2;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 31px;
    line-height: 1;
    transition:
            color 0.25s ease,
            transform 0.25s ease,
            text-shadow 0.25s ease;
}

.trade-platform-link strong {
    position: relative;
    z-index: 2;
    display: block;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.2;
    font-weight: 800;
    transition: color 0.25s ease;
}

.trade-platform-link:hover {
    transform: translateY(-8px);
    border-color: rgba(52, 232, 143, 0.24);
    background: rgba(52, 232, 143, 0.055);
    box-shadow:
            0 22px 44px rgba(0, 0, 0, 0.28),
            0 0 34px rgba(52, 232, 143, 0.055);
}

.trade-platform-link:hover::before {
    opacity: 1;
}

.trade-platform-link:hover .platform-icon {
    color: var(--green);
    transform: translateY(-2px) scale(1.08);
    text-shadow: 0 0 22px rgba(52, 232, 143, 0.22);
}

.trade-platform-link:hover strong {
    color: #ffffff;
}

.trade-platform-link:active {
    transform: translateY(-4px) scale(0.98);
}

@keyframes platformsFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@media (max-width: 768px) {
    .trade-platforms-section {
        padding: 68px 18px 72px;
    }

    .trade-platforms-preview {
        margin-top: 48px;
    }

    .trade-platforms-links {
        margin-top: 42px;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .trade-platform-link {
        min-height: 86px;
    }
}

@media (max-width: 460px) {
    .trade-platforms-head h2 {
        font-size: 30px;
    }

    .trade-platforms-head p {
        margin-top: 16px;
        font-size: 16px;
    }

    .trade-platforms-links {
        grid-template-columns: 1fr;
    }

    .trade-platform-link {
        flex-direction: row;
        justify-content: flex-start;
        gap: 16px;
        padding: 16px 18px;
        min-height: 70px;
    }

    .trade-platform-link strong {
        margin-top: 0;
    }

    .platform-icon {
        width: 36px;
        font-size: 28px;
    }
}

.faq-section {
    position: relative;
    z-index: 1;
    padding: 86px 24px 96px;
    background: transparent;
}

.faq-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}

.faq-container h2 {
    color: #ffffff;
    text-align: center;
    font-size: clamp(36px, 3.2vw, 46px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -1px;
}

.faq-list {
    margin-top: 54px;
}

.faq-item {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.25s ease;
}

.faq-item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background:
            linear-gradient(135deg, rgba(52, 232, 143, 0.055), transparent 42%),
            rgba(255, 255, 255, 0.018);
    opacity: 0;
    transform: scaleY(0.96);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
}

.faq-item.is-open {
    border-color: rgba(52, 232, 143, 0.18);
}

.faq-item.is-open::before {
    opacity: 1;
    transform: scaleY(1);
}

.faq-question {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 112px;
    padding: 0 0;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.92);
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;

    text-align: left;
    font: inherit;
}

.faq-question span:first-child {
    font-size: clamp(18px, 1.45vw, 22px);
    line-height: 1.35;
    font-weight: 850;
    letter-spacing: -0.45px;
    transition: color 0.25s ease, transform 0.25s ease;
}

.faq-icon {
    position: relative;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.095);
    transition:
            background 0.25s ease,
            transform 0.25s ease,
            box-shadow 0.25s ease;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 13px;
    height: 2px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    transform: translate(-50%, -50%);
    transition: background 0.25s ease, transform 0.25s ease;
}

.faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item:hover .faq-question span:first-child {
    color: #ffffff;
    transform: translateX(4px);
}

.faq-item:hover .faq-icon {
    background: rgba(52, 232, 143, 0.14);
    box-shadow: 0 0 24px rgba(52, 232, 143, 0.12);
}

.faq-item:hover .faq-icon::before,
.faq-item:hover .faq-icon::after {
    background: var(--green);
}

.faq-item.is-open .faq-question span:first-child {
    color: var(--green);
}

.faq-item.is-open .faq-icon {
    background: rgba(52, 232, 143, 0.16);
    transform: rotate(180deg);
    box-shadow: 0 0 28px rgba(52, 232, 143, 0.12);
}

.faq-item.is-open .faq-icon::before {
    background: var(--green);
}

.faq-item.is-open .faq-icon::after {
    background: var(--green);
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 0;
}

.faq-answer {
    position: relative;
    z-index: 2;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition:
            max-height 0.38s ease,
            opacity 0.28s ease,
            transform 0.28s ease;
}

.faq-item.is-open .faq-answer {
    opacity: 1;
    transform: translateY(0);
}

.faq-answer-inner {
    max-width: 860px;
    padding: 0 64px 34px 0;
    color: rgba(210, 216, 226, 0.72);
    font-size: 16px;
    line-height: 1.75;
    font-weight: 500;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 68px 18px 74px;
    }

    .faq-list {
        margin-top: 38px;
    }

    .faq-question {
        min-height: 88px;
        gap: 18px;
    }

    .faq-answer-inner {
        padding: 0 44px 28px 0;
        font-size: 15px;
        line-height: 1.65;
    }
}

@media (max-width: 480px) {
    .faq-container h2 {
        font-size: 34px;
    }

    .faq-question span:first-child {
        font-size: 17px;
    }

    .faq-icon {
        width: 26px;
        height: 26px;
        flex-basis: 26px;
    }

    .faq-answer-inner {
        padding-right: 0;
    }
}

/* ================================
   Landing final fixes
   - compact exchange stats card
   - safe shared background
   - footer isolation
================================ */

/* Keep the shared landing background behind landing content without touching footer */
html,
body {
    min-height: 100%;
    background: #07090b;
}

body {
    position: relative;
    overflow-x: hidden;

}

/* More restrained shared background */
.site-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    background:
            radial-gradient(circle at 16% 10%, rgba(52, 232, 143, 0.045), transparent 24%),
            radial-gradient(circle at 84% 22%, rgba(52, 232, 143, 0.025), transparent 26%),
            linear-gradient(180deg, #07090b 0%, #050607 100%);
}

.site-bg::before {
    content: "";
    position: absolute;
    inset: -80px;
    background:
            linear-gradient(115deg, transparent 0%, rgba(52, 232, 143, 0.018) 30%, transparent 56%);
    animation: siteBgShift 22s ease-in-out infinite alternate;
}

.site-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.42) 78%);
    pointer-events: none;
}

.site-bg-orb {
    opacity: 0.26;
    filter: blur(58px);
}

.site-bg-orb-1 {
    background: rgba(52, 232, 143, 0.10);
    animation-duration: 22s;
}

.site-bg-orb-2 {
    background: rgba(52, 232, 143, 0.06);
    animation-duration: 26s;
}

.site-bg-orb-3 {
    background: rgba(50, 241, 223, 0.055);
    animation-duration: 28s;
}

.site-bg-grid {
    opacity: 0.055;
}

/* Main landing sections stay above the shared background */
.hero,
.exchange-stats,
.platform-section,
.trade-platforms-section,
.faq-section {
    position: relative;
    z-index: 1;
    background: transparent;
}

/* Footer fragment must stay independent from landing background/layers */
.obx-ourbit-footer-root {
    position: relative;
    z-index: 5;
    isolation: isolate;
    background: #10141b;
}

/* Market card pseudo-element fix */
.market-card::before {
    position: absolute;
    pointer-events: none;
}

/* Compact exchange stats card instead of full-width stripe */
.exchange-stats {
    width: min(1320px, calc(100% - 48px));
    margin: 28px auto 40px;
    padding: 28px 34px;

    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 34px;

    background:
            linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 42%),
            rgba(12, 15, 18, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.065);
    border-radius: 26px;

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow:
            0 24px 70px rgba(0, 0, 0, 0.26),
            inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.exchange-stat {
    min-width: 0;
}

.exchange-stat strong {
    display: block;
    color: #ffffff;
    font-size: clamp(24px, 1.9vw, 31px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.7px;
    white-space: nowrap;
    text-shadow: 0 0 22px rgba(52, 232, 143, 0.08);
}

.exchange-stat span {
    display: block;
    margin-top: 12px;
    color: rgba(190, 202, 229, 0.76);
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
}

.exchange-stat-divider {
    width: 1px;
    height: 46px;
    background: linear-gradient(
            180deg,
            transparent,
            rgba(52, 232, 143, 0.28),
            rgba(255, 255, 255, 0.12),
            transparent
    );
}

@media (max-width: 900px) {
    .exchange-stats {
        width: min(720px, calc(100% - 36px));
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        padding: 20px;
        margin: 22px auto 34px;
    }

    .exchange-stat-divider {
        display: none;
    }

    .exchange-stat {
        padding: 16px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.035);
        border: 1px solid rgba(255, 255, 255, 0.055);
    }

    .exchange-stat span {
        margin-top: 9px;
        font-size: 13px;
    }
}

@media (max-width: 520px) {
    .exchange-stats {
        width: calc(100% - 28px);
        grid-template-columns: 1fr;
        padding: 16px;
        border-radius: 22px;
    }

    .exchange-stat strong {
        font-size: 26px;
    }
}

.coin-icon-img {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: block;
    border-radius: 50%;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.06);
}

/* ================================
   Scroll reveal animations
================================ */

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(34px) scale(0.985);
    filter: blur(8px);
    transition:
            opacity 0.75s ease,
            transform 0.75s ease,
            filter 0.75s ease;
    will-change: opacity, transform, filter;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.reveal-delay-1 {
    transition-delay: 0.08s;
}

.reveal-delay-2 {
    transition-delay: 0.16s;
}

.reveal-delay-3 {
    transition-delay: 0.24s;
}

.reveal-delay-4 {
    transition-delay: 0.32s;
}

/* Чуть красивее для карточек */
.platform-card.reveal-on-scroll,
.trade-platform-link.reveal-on-scroll,
.faq-item.reveal-on-scroll,
.exchange-stat.reveal-on-scroll {
    transform: translateY(38px) scale(0.97);
}

.platform-card.reveal-on-scroll.is-visible,
.trade-platform-link.reveal-on-scroll.is-visible,
.faq-item.reveal-on-scroll.is-visible,
.exchange-stat.reveal-on-scroll.is-visible {
    transform: translateY(0) scale(1);
}

/* Чтобы hero красиво появился сразу при загрузке */
.hero .hero-left,
.hero .hero-right,
.market-card {
    animation: heroReveal 0.9s ease both;
}

.hero .hero-right {
    animation-delay: 0.16s;
}

.market-card {
    animation-delay: 0.24s;
}

@keyframes heroReveal {
    0% {
        opacity: 0;
        transform: translateY(28px) scale(0.985);
        filter: blur(8px);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

/* Уважение настроек пользователя */
@media (prefers-reduced-motion: reduce) {
    .reveal-on-scroll,
    .reveal-on-scroll.is-visible,
    .hero .hero-left,
    .hero .hero-right,
    .market-card {
        opacity: 1;
        transform: none;
        filter: none;
        animation: none;
        transition: none;
    }
}

/* ================================
   Theme support: light / dark
   Works with: th:attr="data-theme=${theme}"
================================ */

/* Можно оставить dark по умолчанию */
:root,
html[data-theme="dark"] {
    --green: #34e88f;
    --green-2: #32f1df;
    --orange: #ffa62b;

    --bg: #07090b;
    --bg-soft: #10141b;
    --card: rgba(28, 29, 36, 0.82);
    --card-solid: #151719;
    --card-border: rgba(255, 255, 255, 0.08);

    --text: #ffffff;
    --muted: #a7a8b0;
    --soft-text: rgba(215, 220, 230, 0.72);

    --section-bg: transparent;
    --input-bg: #2a2b30;
    --input-bg-focus: #2f3036;

    --danger: #ff5277;
    --warning: #ffb13b;

    --page-gradient:
            radial-gradient(circle at 16% 10%, rgba(52, 232, 143, 0.045), transparent 24%),
            radial-gradient(circle at 84% 22%, rgba(52, 232, 143, 0.025), transparent 26%),
            linear-gradient(180deg, #07090b 0%, #050607 100%);
}

/* Светлая тема */
html[data-theme="light"] {
    --green: #12b86f;
    --green-2: #12c7b4;
    --orange: #f59b18;

    --bg: #f5f7fb;
    --bg-soft: #ffffff;
    --card: rgba(255, 255, 255, 0.82);
    --card-solid: #ffffff;
    --card-border: rgba(15, 23, 42, 0.09);

    --text: #111827;
    --muted: #64748b;
    --soft-text: rgba(51, 65, 85, 0.72);

    --section-bg: transparent;
    --input-bg: #ffffff;
    --input-bg-focus: #ffffff;

    --danger: #e11d48;
    --warning: #d97706;

    --page-gradient:
            radial-gradient(circle at 16% 10%, rgba(18, 184, 111, 0.13), transparent 25%),
            radial-gradient(circle at 84% 22%, rgba(18, 199, 180, 0.10), transparent 28%),
            linear-gradient(180deg, #f7fafc 0%, #eef3f8 100%);
}

/* Base */
html[data-theme="light"],
html[data-theme="light"] body {
    background: var(--bg);

}



/* Shared background */
html[data-theme="light"] .site-bg,
html[data-theme="dark"] .site-bg {
    background: var(--page-gradient);
}

html[data-theme="light"] .site-bg::before {
    background:
            linear-gradient(115deg, transparent 0%, rgba(18, 184, 111, 0.09) 30%, transparent 56%),
            linear-gradient(245deg, transparent 0%, rgba(18, 199, 180, 0.055) 34%, transparent 62%);
}

html[data-theme="light"] .site-bg::after {
    background:
            radial-gradient(circle at center, transparent 0%, rgba(255, 255, 255, 0.28) 74%);
}

html[data-theme="light"] .site-bg-orb-1 {
    background: rgba(18, 184, 111, 0.22);
}

html[data-theme="light"] .site-bg-orb-2 {
    background: rgba(18, 199, 180, 0.16);
}

html[data-theme="light"] .site-bg-orb-3 {
    background: rgba(245, 155, 24, 0.10);
}

html[data-theme="light"] .site-bg-grid {
    opacity: 0.18;
    background-image:
            linear-gradient(rgba(15, 23, 42, 0.055) 1px, transparent 1px),
            linear-gradient(90deg, rgba(15, 23, 42, 0.055) 1px, transparent 1px);
}

/* Text */
html[data-theme="light"] .hero-left h1,
html[data-theme="light"] .market-header strong,
html[data-theme="light"] .platform-container h2,
html[data-theme="light"] .trade-platforms-head h2,
html[data-theme="light"] .faq-container h2,
html[data-theme="light"] .exchange-stat strong {
    color: #101827;
}

html[data-theme="light"] .stat strong,
html[data-theme="light"] .stat small {
    color: #101827;
}

html[data-theme="light"] .trade-platforms-head p,
html[data-theme="light"] .faq-answer-inner,
html[data-theme="light"] .exchange-stat span,
html[data-theme="light"] .market-footer span,
html[data-theme="light"] .coin-info span {
    color: var(--soft-text);
}

/* Form */
html[data-theme="light"] .hero-form input {
    background: var(--input-bg);
    color: #101827;
    border-color: rgba(15, 23, 42, 0.10);
    box-shadow: 0 14px 38px rgba(15, 23, 42, 0.06);
}

html[data-theme="light"] .hero-form input::placeholder {
    color: #94a3b8;
}

html[data-theme="light"] .hero-form input:focus {
    background: var(--input-bg-focus);
    border-color: rgba(18, 184, 111, 0.55);
    box-shadow:
            0 0 0 4px rgba(18, 184, 111, 0.10),
            0 16px 42px rgba(15, 23, 42, 0.08);
}

html[data-theme="light"] .hero-form button {
    background: linear-gradient(135deg, #18d680, #12b86f);
    color: #ffffff;
}

/* Market card */
html[data-theme="light"] .market-card {
    background:
            linear-gradient(145deg, rgba(18, 184, 111, 0.10), transparent 38%),
            rgba(255, 255, 255, 0.88);
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow:
            0 32px 90px rgba(15, 23, 42, 0.13),
            0 0 0 1px rgba(255, 255, 255, 0.75) inset;
}

html[data-theme="light"] .market-header span,
html[data-theme="light"] .market-badge {
    color: var(--green);
}

html[data-theme="light"] .market-badge {
    background: rgba(18, 184, 111, 0.10);
    border-color: rgba(18, 184, 111, 0.22);
}

html[data-theme="light"] .coin-row {
    background: rgba(15, 23, 42, 0.035);
    border-color: rgba(15, 23, 42, 0.055);
    color: #101827;
}

html[data-theme="light"] .coin-row:not(.coin-head):hover {
    background: rgba(18, 184, 111, 0.065);
    border-color: rgba(18, 184, 111, 0.20);
}

html[data-theme="light"] .coin-head {
    color: #7c8798;
    background: transparent;
}

html[data-theme="light"] .market-footer button {
    background: rgba(18, 184, 111, 0.10);
    border-color: rgba(18, 184, 111, 0.22);
    color: var(--green);
}

/* Exchange stats */
html[data-theme="light"] .exchange-stats {
    background:
            linear-gradient(145deg, rgba(255, 255, 255, 0.70), transparent 42%),
            rgba(255, 255, 255, 0.78);
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow:
            0 24px 70px rgba(15, 23, 42, 0.10),
            inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

html[data-theme="light"] .exchange-stat {
    color: #101827;
}

html[data-theme="light"] .exchange-stat-divider {
    background: linear-gradient(
            180deg,
            transparent,
            rgba(18, 184, 111, 0.34),
            rgba(15, 23, 42, 0.12),
            transparent
    );
}

/* Platform cards */
html[data-theme="light"] .platform-card {
    background:
            linear-gradient(145deg, rgba(18, 184, 111, 0.07), transparent 42%),
            rgba(255, 255, 255, 0.84);
    border-color: rgba(15, 23, 42, 0.07);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.07);
}

html[data-theme="light"] .platform-card::before {
    background: linear-gradient(
            135deg,
            rgba(18, 184, 111, 0.50),
            transparent 34%,
            rgba(18, 184, 111, 0.12)
    );
}

html[data-theme="light"] .platform-card h3 {
    color: #101827;
}

html[data-theme="light"] .platform-card:hover {
    background:
            linear-gradient(145deg, rgba(18, 184, 111, 0.13), transparent 44%),
            rgba(255, 255, 255, 0.96);
    border-color: rgba(18, 184, 111, 0.25);
    box-shadow:
            0 28px 70px rgba(15, 23, 42, 0.12),
            0 0 44px rgba(18, 184, 111, 0.08);
}

html[data-theme="light"] .platform-card:hover h3 {
    color: var(--green);
}

/* Trade platform links */
html[data-theme="light"] .trade-platform-link {
    color: #101827;
    background: rgba(255, 255, 255, 0.74);
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 16px 42px rgba(15, 23, 42, 0.06);
}

html[data-theme="light"] .platform-icon {
    color: #101827;
}

html[data-theme="light"] .trade-platform-link strong {
    color: rgba(15, 23, 42, 0.86);
}

html[data-theme="light"] .trade-platform-link:hover {
    background: rgba(18, 184, 111, 0.075);
    border-color: rgba(18, 184, 111, 0.24);
    box-shadow:
            0 22px 44px rgba(15, 23, 42, 0.11),
            0 0 34px rgba(18, 184, 111, 0.09);
}

html[data-theme="light"] .trade-platform-link:hover strong {
    color: #101827;
}

/* FAQ */
html[data-theme="light"] .faq-item {
    border-bottom-color: rgba(15, 23, 42, 0.10);
}

html[data-theme="light"] .faq-item::before {
    background:
            linear-gradient(135deg, rgba(18, 184, 111, 0.075), transparent 42%),
            rgba(255, 255, 255, 0.58);
}

html[data-theme="light"] .faq-question {
    color: rgba(15, 23, 42, 0.92);
}

html[data-theme="light"] .faq-question span:first-child {
    color: rgba(15, 23, 42, 0.92);
}

html[data-theme="light"] .faq-item:hover .faq-question span:first-child {
    color: #101827;
}

html[data-theme="light"] .faq-item.is-open .faq-question span:first-child {
    color: var(--green);
}

html[data-theme="light"] .faq-icon {
    background: rgba(15, 23, 42, 0.08);
}

html[data-theme="light"] .faq-icon::before,
html[data-theme="light"] .faq-icon::after {
    background: rgba(15, 23, 42, 0.62);
}

