.card3d {
        width: 64px;
        height: 90px;
        perspective: 600px;
        display: inline-block;
        flex-shrink: 0;
        margin-left: -14px;
        opacity: 1
      }

      .card3d:first-child {
        margin-left: 0
      }

      .card3d-inner {
        width: 100%;
        height: 100%;
        position: relative;
        transform-style: preserve-3d;
        transition: transform .6s cubic-bezier(.4, 0, .2, 1);
        transform: rotateY(180deg)
      }

      .card3d-inner.flipped {
        transform: rotateY(0deg)
      }

      .card3d-face,
      .card3d-back {
        position: absolute;
        inset: 0;
        backface-visibility: hidden;
        border-radius: 7px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 3px 10px rgba(0, 0, 0, .4)
      }

      .card3d-face {
        background: linear-gradient(180deg, #fafafa, #e4e4e4);
        border: 1px solid rgba(200, 200, 200, .3);
        flex-direction: column;
        color: #111
      }

      .card3d-face.red-card {
        color: #cc1133
      }

      .card3d-face .cv {
        font-size: 22px;
        font-weight: 800;
        line-height: 1
      }

      .card3d-face .cs {
        font-size: 16px;
        margin-top: 1px
      }

      .card3d-face .cc {
        position: absolute;
        top: 3px;
        left: 5px;
        font-size: 8px;
        font-weight: 700;
        line-height: 1.1
      }

      .card3d-back {
        background: linear-gradient(135deg, #0a0040, #1a0060);
        border: 1px solid rgba(0, 255, 204, .08);
        transform: rotateY(180deg);
        overflow: hidden
      }

      .card3d-back::before {
        content: '';
        position: absolute;
        inset: 4px;
        border: 1px solid rgba(0, 255, 204, .06);
        border-radius: 4px;
        background: repeating-linear-gradient(45deg, transparent, transparent 3px, rgba(0, 255, 204, .02) 3px, rgba(0, 255, 204, .02) 6px)
      }

      .card3d-back::after {
        content: 'W';
        position: absolute;
        font-size: 18px;
        color: rgba(0, 255, 204, .06);
        font-family: 'Orbitron';
        font-weight: 900
      }

      /* DECK VISUAL */
      .deck-stack {
        position: relative;
        width: 68px;
        height: 94px;
        flex-shrink: 0
      }

      .deck-card {
        position: absolute;
        width: 64px;
        height: 90px;
        border-radius: 7px;
        background: linear-gradient(135deg, #0a0040, #1a0060);
        border: 1px solid rgba(0, 255, 204, .08);
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, .4)
      }

      .deck-card::before {
        content: '';
        position: absolute;
        inset: 4px;
        border: 1px solid rgba(0, 255, 204, .06);
        border-radius: 4px;
        background: repeating-linear-gradient(45deg, transparent, transparent 3px, rgba(0, 255, 204, .02) 3px, rgba(0, 255, 204, .02) 6px)
      }

      .deck-card::after {
        content: 'W';
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        color: rgba(0, 255, 204, .06);
        font-family: 'Orbitron';
        font-weight: 900
      }

      .deck-card:nth-child(1) {
        top: 0;
        left: 0
      }

      .deck-card:nth-child(2) {
        top: -2px;
        left: 2px
      }

      .deck-card:nth-child(3) {
        top: -4px;
        left: 4px
      }

      .deck-card:nth-child(4) {
        top: -6px;
        left: 6px
      }

      .crash-d {
        width: 100%;
        height: 100%;
        min-height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative
      }

      #crashCanvas {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%
      }

      .crash-m {
        position: relative;
        z-index: 2;
        font-size: 64px;
        font-weight: 900;
        transition: .3s;
        text-shadow: 0 0 40px rgba(0, 255, 204, .3)
      }

      .crash-m.x {
        color: var(--red) !important;
        text-shadow: 0 0 40px rgba(255, 77, 77, .4) !important;
        animation: crashShake .5s ease
      }

      @keyframes crashShake {

        0%,
        100% {
          transform: translateX(0)
        }

        20% {
          transform: translateX(-8px)
        }

        40% {
          transform: translateX(8px)
        }

        60% {
          transform: translateX(-5px)
        }

        80% {
          transform: translateX(5px)
        }
      }

      .crash-s {
        position: absolute;
        bottom: 16px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
        font-size: 12px;
        color: var(--t3)
      }

      .dice-d {
        width: 100%;
        height: 100%;
        min-height: 400px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px
      }

      .dice-v {
        font-size: 72px;
        font-weight: 900;
        margin-bottom: 16px;
        transition: .3s
      }

      .dice-bw {
        width: 100%;
        max-width: 480px;
        position: relative
      }

      .dice-bar {
        width: 100%;
        height: 10px;
        border-radius: 5px;
        overflow: hidden;
        margin-top: 14px
      }

      .dice-ptr {
        position: absolute;
        top: -6px;
        width: 3px;
        height: 24px;
        background: #fff;
        border-radius: 2px;
        box-shadow: 0 0 14px rgba(255, 255, 255, .7);
        z-index: 2;
        display: none;
        transition: left .9s cubic-bezier(.22, 1, .36, 1)
      }

      .dice-lb {
        display: flex;
        justify-content: space-between;
        margin-top: 6px;
        font-size: 9px;
        color: var(--t3);
        width: 100%;
        max-width: 480px
      }

      .plinko-d {
        width: 100%;
        height: 100%;
        min-height: 540px;
        position: relative
      }

      #plinkoCanvas {
        width: 100%;
        height: 100%;
        display: block
      }

      .mines-d {
        width: 100%;
        min-height: 400px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 14px
      }

      .mines-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 7px;
        width: 100%;
        max-width: 340px
      }

      .mc {
        aspect-ratio: 1;
        background: rgba(0, 255, 204, .02);
        border: 2px solid rgba(0, 255, 204, .06);
        border-radius: 10px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        transition: .3s
      }

      .mc:hover:not(.rv) {
        transform: scale(1.08);
        border-color: rgba(0, 255, 204, .2)
      }

      .mc.rv {
        cursor: default;
        transform: none
      }

      .mc.rv.sf {
        background: rgba(57, 255, 20, .06);
        border-color: rgba(57, 255, 20, .15)
      }

      .mc.rv.mn {
        background: rgba(255, 77, 77, .06);
        border-color: rgba(255, 77, 77, .15)
      }

      .mines-coeff-strip {
        display: flex;
        gap: 3px;
        overflow-x: auto;
        padding: 6px 0;
        width: 100%;
        max-width: 340px;
        margin-bottom: 10px
      }

      .mines-coeff-item {
        min-width: 40px;
        padding: 4px 5px;
        border-radius: 6px;
        text-align: center;
        font-size: 8px;
        font-weight: 700;
        background: rgba(255, 255, 255, .02);
        border: 1px solid rgba(255, 255, 255, .04);
        color: var(--t3);
        transition: .3s;
        flex-shrink: 0
      }

      .mines-coeff-item.active {
        background: rgba(0, 255, 204, .1);
        border-color: var(--cyan);
        color: var(--cyan);
        transform: scale(1.12)
      }

      .mines-coeff-item.passed {
        background: rgba(57, 255, 20, .06);
        border-color: rgba(57, 255, 20, .1);
        color: var(--grn)
      }

      .ms {
        font-size: 12px;
        margin-bottom: 8px;
        display: flex;
        gap: 20px;
        align-items: center
      }

      .ms span {
        font-weight: 700
      }

      .hilo-d {
        width: 100%;
        height: 100%;
        min-height: 400px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px;
        gap: 16px
      }

      .hilo-cr {
        display: flex;
        align-items: center;
        gap: 16px
      }

      .ha {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center
      }

      .hbtn {
        padding: 10px 20px;
        border-radius: var(--r);
        font-weight: 700;
        font-size: 12px;
        transition: .3s;
        min-width: 90px;
        text-align: center
      }

      .hbtn.hi {
        background: linear-gradient(135deg, var(--grn), #22cc00);
        color: #000
      }

      .hbtn.lo {
        background: linear-gradient(135deg, var(--red), #cc2233);
        color: #fff
      }

      .hbtn.eq {
        background: linear-gradient(135deg, var(--gold), #cc8800);
        color: #000
      }

      .hbtn:hover {
        transform: translateY(-2px)
      }

      .hbtn .hb-c {
        display: block;
        font-size: 8px;
        opacity: .7;
        margin-top: 2px
      }

      .wheel-d {
        width: 360px;
        height: 360px;
        position: relative;
        margin: 0 auto
      }

      .wptr {
        position: absolute;
        top: -2px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 5;
        width: 0;
        height: 0;
        border-left: 12px solid transparent;
        border-right: 12px solid transparent;
        border-top: 24px solid var(--red);
        filter: drop-shadow(0 3px 12px rgba(255, 77, 77, .6))
      }

      .roul-d {
        width: 100%;
        height: 100%;
        min-height: 460px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 14px;
        gap: 10px
      }

      .roul-top {
        position: relative
      }

      .roul-num {
        font-size: 48px;
        font-weight: 900;
        min-height: 56px;
        transition: .3s
      }

      .roul-timer {
        font-size: 12px;
        color: var(--t2);
        display: flex;
        align-items: center;
        gap: 8px
      }

      .rt-bar {
        width: 200px;
        height: 6px;
        border-radius: 3px;
        background: rgba(255, 255, 255, .05);
        overflow: hidden
      }

      .rt-fill {
        height: 100%;
        border-radius: 3px;
        transition: width 1s linear
      }

      .roul-bets-area {
        display: flex;
        gap: 6px
      }

      .rbb {
        padding: 12px 22px;
        border-radius: var(--r);
        font-weight: 700;
        font-size: 13px;
        transition: .3s;
        border: 2px solid transparent;
        cursor: pointer
      }

      .rbb.red {
        background: rgba(220, 50, 50, .15);
        color: #ff6666;
        border-color: rgba(220, 50, 50, .2)
      }

      .rbb.red.sel {
        background: rgba(220, 50, 50, .35);
        border-color: #ff4444
      }

      .rbb.blk {
        background: rgba(255, 255, 255, .04);
        color: #ccc;
        border-color: rgba(255, 255, 255, .08)
      }

      .rbb.blk.sel {
        background: rgba(255, 255, 255, .12);
        border-color: #aaa
      }

      .rbb.grn {
        background: rgba(57, 255, 20, .06);
        color: var(--grn);
        border-color: rgba(57, 255, 20, .1)
      }

      .rbb.grn.sel {
        background: rgba(57, 255, 20, .15);
        border-color: var(--grn)
      }

      .rbb:hover {
        transform: translateY(-2px)
      }

      .roul-hist {
        display: flex;
        gap: 4px;
        flex-wrap: wrap;
        justify-content: center
      }

      .rhi {
        width: 28px;
        height: 28px;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 9px;
        font-weight: 700;
        color: #fff
      }

      .bj-d {
        width: 100%;
        height: 100%;
        min-height: 480px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 16px;
        gap: 14px;
        position: relative
      }

      .bj-table {
        width: 100%;
        max-width: 520px;
        min-height: 320px;
        background: radial-gradient(ellipse at 50% 60%, #082a15, #051a0c, #030f06);
        border: 3px solid #1a6a30;
        border-radius: 180px/100px;
        position: relative;
        padding: 28px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        box-shadow: inset 0 0 60px rgba(0, 0, 0, .5)
      }

      .bj-table::before {
        content: 'ONLYBET · BLACKJACK PAYS 3:2';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 9px;
        letter-spacing: 3px;
        color: rgba(255, 215, 0, .08);
        font-weight: 700;
        pointer-events: none
      }

      .bj-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        z-index: 2
      }

      .bj-label {
        font-size: 8px;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: rgba(255, 255, 255, .25);
        font-weight: 700
      }

      .bj-hand {
        display: flex;
        min-height: 94px;
        align-items: center;
        justify-content: center
      }

      .bj-hands-row {
        display: flex;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap
      }

      .bj-hand-box {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        padding: 4px;
        border-radius: 8px;
        border: 2px solid transparent;
        transition: .3s
      }

      .bj-score {
        font-size: 12px;
        font-weight: 700;
        padding: 3px 12px;
        border-radius: 14px;
        background: rgba(0, 0, 0, .6);
        color: #fff;
        border: 1px solid rgba(255, 255, 255, .1);
        min-width: 32px;
        text-align: center;
        transition: .3s
      }

      .bj-score.bust {
        background: rgba(255, 77, 77, .25);
        color: var(--red)
      }

      .bj-score.bjn {
        background: rgba(255, 215, 0, .15);
        color: var(--gold);
        border-color: rgba(255, 215, 0, .3)
      }

      .bj-actions {
        display: flex;
        gap: 6px;
        flex-wrap: wrap;
        justify-content: center
      }

      .bj-abtn {
        padding: 9px 16px;
        border-radius: var(--r);
        font-weight: 700;
        font-size: 11px;
        transition: .3s;
        text-transform: uppercase
      }

      .bj-abtn.hit {
        background: linear-gradient(135deg, var(--cyan), #00cc99);
        color: #000
      }

      .bj-abtn.stand {
        background: linear-gradient(135deg, var(--red), #cc2233);
        color: #fff
      }

      .bj-abtn.double {
        background: linear-gradient(135deg, var(--gold), #cc8800);
        color: #000
      }

      .bj-abtn.split {
        background: linear-gradient(135deg, var(--mag), #9900cc);
        color: #fff
      }

      .bj-abtn:hover {
        transform: translateY(-2px)
      }

      .bj-abtn:disabled {
        opacity: .25;
        cursor: not-allowed;
        transform: none !important
      }

      .bj-result-overlay {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        pointer-events: none;
        opacity: 0;
        transition: opacity .4s
      }

      .bj-result-overlay.show {
        opacity: 1
      }

      .bj-result-text {
        font-size: 24px;
        font-weight: 900;
        padding: 12px 32px;
        border-radius: 14px;
        backdrop-filter: blur(10px)
      }

      .bj-result-text.win {
        background: rgba(57, 255, 20, .12);
        color: var(--grn);
        border: 2px solid rgba(57, 255, 20, .25)
      }

      .bj-result-text.lose {
        background: rgba(255, 77, 77, .12);
        color: var(--red);
        border: 2px solid rgba(255, 77, 77, .25)
      }

      .bj-result-text.push {
        background: rgba(255, 215, 0, .1);
        color: var(--gold);
        border: 2px solid rgba(255, 215, 0, .2)
      }

      .bj-result-text.blackjack {
        background: rgba(255, 215, 0, .15);
        color: var(--gold);
        border: 2px solid rgba(255, 215, 0, .3);
        font-size: 28px
      }

      .bj-deck-pos {
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
        z-index: 3
      }

      .hilo-deck-pos {
        flex-shrink: 0
      }

      .info-page {
        padding: 20px 0;
        width: 100%
      }

      .info-page h2 {
        font-size: 28px;
        font-weight: 900;
        margin-bottom: 18px;
        background: linear-gradient(135deg, var(--cyan), var(--mag));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        display: inline-block
      }

      .info-page .info-sub {
        color: var(--t2);
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 20px
      }

      .info-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 14px;
        margin-bottom: 24px
      }

      .info-card {
        background: linear-gradient(135deg, rgba(0, 255, 204, .02), rgba(195, 0, 255, .02));
        border: 1px solid rgba(0, 255, 204, .06);
        border-radius: 16px;
        padding: 22px;
        transition: .3s
      }

      .info-card:hover {
        border-color: rgba(0, 255, 204, .15);
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, .3)
      }

      .info-card h4 {
        font-size: 15px;
        font-weight: 700;
        margin-bottom: 8px;
        color: var(--cyan)
      }

      .info-card p {
        font-size: 12px;
        color: var(--t2);
        line-height: 1.7
      }

      .info-card .tag {
        display: inline-block;
        background: rgba(0, 255, 204, .08);
        color: var(--cyan);
        font-size: 9px;
        font-weight: 700;
        padding: 3px 8px;
        border-radius: 6px;
        margin-top: 8px;
        text-transform: uppercase
      }

      .faq-list {
        display: flex;
        flex-direction: column;
        gap: 2px
      }

      .faq-item {
        border: 1px solid rgba(255, 255, 255, .04);
        border-radius: 12px;
        overflow: hidden;
        background: rgba(255, 255, 255, .01)
      }

      .faq-q {
        font-weight: 700;
        font-size: 14px;
        cursor: pointer;
        color: var(--t1);
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 20px
      }

      .faq-q::after {
        content: '▸';
        transition: .3s;
        color: var(--cyan)
      }

      .faq-item.open .faq-q::after {
        transform: rotate(90deg)
      }

      .faq-a {
        color: var(--t2);
        font-size: 13px;
        line-height: 1.8;
        max-height: 0;
        overflow: hidden;
        transition: max-height .4s;
        padding: 0 20px
      }

      .faq-item.open .faq-a {
        max-height: 300px;
        padding: 0 20px 16px
      }

      .ref-tiers {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 12px;
        margin-top: 18px;
        margin-bottom: 24px
      }

      .ref-tier {
        background: linear-gradient(135deg, rgba(0, 255, 204, .02), rgba(255, 215, 0, .02));
        border: 1px solid rgba(0, 255, 204, .06);
        border-radius: 14px;
        padding: 20px;
        text-align: center;
        transition: .3s
      }

      .ref-tier:hover {
        border-color: rgba(255, 215, 0, .2);
        transform: translateY(-3px)
      }

      .ref-tier h4 {
        font-size: 32px;
        font-weight: 900;
        margin-bottom: 4px
      }

      .ref-tier h4.t1 {
        color: var(--cyan)
      }

      .ref-tier h4.t2 {
        color: #c0c0c0
      }

      .ref-tier h4.t3 {
        color: var(--gold)
      }

      .ref-tier h4.t4 {
        color: #ff66cc
      }

      .ref-tier .tname {
        font-size: 13px;
        font-weight: 700;
        margin-bottom: 4px
      }

      .ref-tier p {
        font-size: 10px;
        color: var(--t2);
        line-height: 1.6
      }

      .modal-ov {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .8);
        backdrop-filter: blur(16px);
        z-index: 2000;
        display: none;
        align-items: center;
        justify-content: center;
        padding: 20px
      }

      .modal-ov.ac {
        display: flex
      }

      .modal {
        background: linear-gradient(180deg, rgba(10, 0, 31, .98), rgba(0, 0, 21, .98));
        border: 1px solid rgba(0, 255, 204, .08);
        border-radius: 20px;
        width: 100%;
        max-width: 480px;
        overflow: hidden;
        animation: modalIn .4s
      }

      @keyframes modalIn {
        from {
          opacity: 0;
          transform: scale(.92) translateY(20px)
        }

        to {
          opacity: 1;
          transform: scale(1) translateY(0)
        }
      }

      .modal-hd {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 22px;
        border-bottom: 1px solid rgba(255, 255, 255, .04)
      }

      .modal-hd h3 {
        font-size: 18px;
        font-weight: 800
      }

      .modal-x {
        background: none;
        color: var(--t2);
        font-size: 20px;
        cursor: pointer;
        width: 32px;
        height: 32px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center
      }

      .modal-x:hover {
        color: var(--t1);
        background: rgba(255, 255, 255, .05)
      }

      .modal-bd {
        padding: 22px
      }

      .dep-methods {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 7px;
        margin-bottom: 16px
      }

      .dep-m {
        padding: 14px 8px;
        background: rgba(255, 255, 255, .02);
        border: 2px solid rgba(255, 255, 255, .04);
        border-radius: 12px;
        cursor: pointer;
        text-align: center;
        transition: .3s
      }

      .dep-m:hover {
        border-color: rgba(0, 255, 204, .15)
      }

      .dep-m.sel {
        border-color: var(--cyan);
        background: rgba(0, 255, 204, .04)
      }

      .dep-m .dm-i {
        font-size: 26px;
        margin-bottom: 4px
      }

      .dep-m .dm-n {
        font-size: 12px;
        font-weight: 600
      }

      .dep-m .dm-d {
        font-size: 8px;
        color: var(--t3);
        margin-top: 2px
      }

      .dep-input {
        margin-bottom: 16px
      }

      .dep-input label {
        display: block;
        font-size: 9px;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--t3);
        font-weight: 700;
        margin-bottom: 6px
      }

      .dep-input input {
        width: 100%;
        background: rgba(0, 0, 21, .6);
        border: 1px solid rgba(0, 255, 204, .08);
        color: var(--t1);
        padding: 12px;
        border-radius: var(--rs);
        font-size: 16px;
        font-weight: 600
      }

      .dep-amounts {
        display: flex;
        gap: 5px;
        margin-bottom: 16px
      }

      .dep-amounts button {
        flex: 1;
        padding: 10px;
        background: rgba(0, 255, 204, .03);
        border: 1px solid rgba(0, 255, 204, .08);
        border-radius: var(--rs);
        color: var(--cyan);
        font-size: 13px;
        font-weight: 600;
        transition: .3s
      }

      .dep-amounts button:hover {
        background: rgba(0, 255, 204, .08);
        transform: translateY(-1px)
      }

      .dep-info {
        background: rgba(0, 255, 204, .03);
        border: 1px solid rgba(0, 255, 204, .08);
        border-radius: var(--rs);
        padding: 12px;
        margin-bottom: 16px;
        font-size: 11px;
        color: var(--cyan);
        line-height: 1.6
      }

      .dep-btn {
        width: 100%;
        padding: 14px;
        background: linear-gradient(135deg, var(--cyan), #00cc99);
        color: #000;
        font-weight: 800;
        font-size: 15px;
        border-radius: var(--r);
        transition: .3s;
        text-transform: uppercase
      }

      .dep-btn:hover {
        box-shadow: 0 6px 25px rgba(0, 255, 204, .4);
        transform: translateY(-2px)
      }

      .so,
      .co2 {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .5);
        z-index: 898
      }

      .so.ac,
      .co2.ac {
        display: block
      }

      .bnav {
        display: none;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(0, 0, 21, .96);
        backdrop-filter: blur(24px);
        border-top: 1px solid rgba(0, 255, 204, .06);
        z-index: 1000;
        padding: 5px 0 calc(5px + env(safe-area-inset-bottom))
      }

      .bni {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1px;
        color: var(--t3);
        font-size: 8px;
        padding: 3px 6px;
        background: none;
        border: none;
        font-weight: 600;
        cursor: pointer;
        transition: .3s
      }

      .bni.ac,
      .bni:hover {
        color: var(--cyan)
      }

      .bni .bi {
        font-size: 18px
      }

      @media(max-width:1100px) {
        .chat {
          transform: translateX(100%)
        }

        .chat.open {
          transform: translateX(0)
        }

        .main {
          margin-right: 0
        }
      }

      @media(max-width:1024px) {
        .nav-links {
          display: none
        }

        .ham {
          display: block
        }

        .side {
          transform: translateX(-100%)
        }

        .side.open {
          transform: translateX(0)
        }

        .chat {
          transform: translateX(100%)
        }

        .chat.open {
          transform: translateX(0)
        }

        .main {
          margin-left: 0;
          margin-right: 0
        }

        .gl {
          grid-template-columns: 1fr
        }

        .gca {
          order: 1
        }

        .gcp {
          order: 2
        }

        .bnav {
          display: flex;
          justify-content: space-around
        }

        .main {
          padding-bottom: 70px
        }
      }

      @media(max-width:768px) {
        .hero {
          padding: 24px 18px
        }

        .hero h1 {
          font-size: 26px
        }

        .og {
          grid-template-columns: repeat(2, 1fr)
        }

        .info-grid {
          grid-template-columns: 1fr
        }

        .lbh,
        .lbr {
          grid-template-columns: 2fr 1.1fr 1fr 1fr;
          font-size: 9px
        }

        .lbh>:last-child,
        .lbr>:last-child {
          display: none
        }

        .crash-m {
          font-size: 46px
        }

        .dice-v {
          font-size: 54px
        }

        .card3d {
          width: 50px;
          height: 70px
        }

        .card3d-face .cv {
          font-size: 16px
        }

        .card3d-face .cs {
          font-size: 12px
        }

        .wheel-d {
          width: 280px;
          height: 280px
        }

        .bj-deck-pos {
          right: 8px
        }

        .deck-stack {
          width: 54px;
          height: 74px
        }

        .deck-card {
          width: 50px;
          height: 70px
        }
      }
