@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Roboto:wght@300;400;500;700&display=swap');

:root {
    --clr-bg: #1A1429;
    --clr-header: #1C142F;
    --clr-btn-login: #2D1239;
    --clr-btn-reg: #613225;
    --clr-accent: #c07a3a;
    --clr-text: #e8e0f0;
    --clr-text-muted: #a89bbf;
    --clr-border: #2e2050;
    --clr-card: #221838;
    --clr-card2: #27183f;
    --clr-gold: #e8b84b;
    --clr-green: #2ecc71;
    --clr-red: #e74c3c;
    --radius: 10px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .45);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: 'Inter', 'Roboto', Arial, sans-serif;
    background: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased
}

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

a {
    color: var(--clr-accent);
    text-decoration: none;
    transition: color .2s
}

a:hover {
    color: var(--clr-gold)
}

ul {
    list-style: none
}

.xw3k9 {
    display: none
}

.qp7m2r {
    visibility: hidden;
    height: 0;
    overflow: hidden
}

.zv4b1 {
    position: absolute;
    left: -9999px
}

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

.h5q2t {
    display: flex;
    align-items: center
}

.r9k4l {
    display: flex;
    flex-direction: column
}

.lbhdr {
    background: var(--clr-header);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .5);
    border-bottom: 1px solid var(--clr-border)
}

.lbhdr-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 20px;
    max-width: 1200px;
    margin: 0 auto
}

.lbhdr-logo {
    flex-shrink: 0
}

.lbhdr-logo img {
    height: 42px;
    width: auto;
    border-radius: 6px
}

.lbhdr-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center
}

.lbhdr-nav a {
    color: var(--clr-text);
    font-size: .88rem;
    font-weight: 500;
    padding: 7px 13px;
    border-radius: 6px;
    transition: background .2s, color .2s;
    white-space: nowrap
}

.lbhdr-nav a:hover {
    background: rgba(255, 255, 255, .07);
    color: #fff
}

.lbhdr-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0
}

.lbhdr-online {
    font-size: .75rem;
    color: var(--clr-text-muted);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px
}

.lbhdr-online-dot {
    width: 7px;
    height: 7px;
    background: var(--clr-green);
    border-radius: 50%;
    animation: pulse 2s infinite
}

@keyframes pulse {
    0%, 100% {
        opacity: 1
    }
    50% {
        opacity: .4
    }
}

.lbhdr-btns {
    display: flex;
    gap: 8px;
    align-items: center
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: inherit;
    font-weight: 600;
    font-size: .88rem;
    padding: 9px 20px;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    transition: transform .15s, box-shadow .15s, filter .2s;
    text-decoration: none;
    white-space: nowrap
}

.btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.15)
}

.btn:active {
    transform: translateY(0)
}

.btn-login {
    background: var(--clr-btn-login);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .15)
}

.btn-reg {
    background: var(--clr-btn-reg);
    color: #fff
}

.btn-hero {
    background: var(--clr-btn-reg);
    color: #fff;
    font-size: 1.1rem;
    padding: 14px 38px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(97, 50, 37, .6)
}

.btn-download {
    background: var(--clr-btn-login);
    color: #fff;
    border: 1px solid var(--clr-border);
    padding: 10px 18px;
    font-size: .85rem
}

.btn-slot {
    background: linear-gradient(135deg, #7b2ff7, #c07a3a);
    color: #fff;
    font-size: 1rem;
    padding: 12px 32px;
    border-radius: 8px;
    box-shadow: 0 4px 18px rgba(123, 47, 247, .4)
}

.btn-win {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: #fff;
    padding: 12px 28px;
    font-size: 1rem
}

.btn-widget {
    background: var(--clr-btn-reg);
    color: #fff;
    padding: 11px 24px;
    font-size: .95rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(97, 50, 37, .5)
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: transparent;
    border: none
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: transform .3s, opacity .3s
}

.burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.burger.open span:nth-child(2) {
    opacity: 0
}

.burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.mob-menu {
    display: none;
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    background: var(--clr-header);
    border-bottom: 1px solid var(--clr-border);
    padding: 16px 20px;
    z-index: 99;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .5)
}

.mob-menu.open {
    display: flex
}

.mob-menu a {
    color: var(--clr-text);
    padding: 10px 14px;
    border-radius: 7px;
    font-size: .95rem;
    transition: background .2s
}

.mob-menu a:hover {
    background: rgba(255, 255, 255, .07)
}

.mob-menu-btns {
    display: flex;
    gap: 8px;
    margin-top: 4px;
    flex-wrap: wrap
}

.lbhero {
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center
}

.lbhero-bg {
    position: absolute;
    inset: 0;
    background: url('/hero.jpg') center/cover no-repeat;
    filter: brightness(.55)
}

.lbhero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(26, 20, 41, .92) 40%, rgba(26, 20, 41, .3) 100%)
}

.lbhero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    max-width: 600px
}

.lbhero-content h1 {
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 14px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .5)
}

.lbhero-content p {
    font-size: 1.05rem;
    color: #d0c4e8;
    margin-bottom: 28px;
    line-height: 1.65
}

.lbhero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(232, 184, 75, .15);
    border: 1px solid rgba(232, 184, 75, .35);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: .8rem;
    color: var(--clr-gold);
    margin-bottom: 18px;
    font-weight: 600
}

.lb-section {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto
}

.lb-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px
}

.lb-section-sub {
    font-size: .9rem;
    color: var(--clr-text-muted);
    margin-bottom: 28px
}

.lb-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow)
}

.lb-card + .lb-card {
    margin-top: 16px
}

.jackpots-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px
}

.jackpot-item {
    flex: 1 1 180px;
    background: var(--clr-card2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 20px 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform .2s
}

.jackpot-item:hover {
    transform: translateY(-3px)
}

.jackpot-name {
    font-size: .8rem;
    color: var(--clr-text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: .05em
}

.jackpot-amount {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--clr-gold);
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 14px rgba(232, 184, 75, .4)
}

.jackpot-currency {
    font-size: .75rem;
    color: var(--clr-text-muted);
    margin-top: 4px
}

.mirrors-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px
}

.mirrors-datetime {
    font-size: .82rem;
    color: var(--clr-text-muted);
    display: flex;
    align-items: center;
    gap: 6px
}

.mirrors-datetime-dot {
    width: 6px;
    height: 6px;
    background: var(--clr-green);
    border-radius: 50%
}

.tbl-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius)
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 480px
}

thead th {
    background: rgba(45, 18, 57, .7);
    color: #fff;
    font-weight: 600;
    font-size: .85rem;
    padding: 12px 16px;
    text-align: left;
    border-bottom: 2px solid var(--clr-border)
}

tbody tr {
    transition: background .15s
}

tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, .03)
}

tbody tr:hover {
    background: rgba(255, 255, 255, .06)
}

tbody td {
    padding: 12px 16px;
    font-size: .88rem;
    color: var(--clr-text);
    border-bottom: 1px solid var(--clr-border)
}

.tbl-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .78rem;
    font-weight: 600
}

.tbl-status.ok {
    color: var(--clr-green)
}

.tbl-status.ok::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: var(--clr-green);
    border-radius: 50%
}

.tbl-link {
    color: var(--clr-accent);
    font-weight: 500
}

.tbl-link:hover {
    color: var(--clr-gold)
}

.tbl-badge {
    background: rgba(46, 204, 113, .15);
    color: var(--clr-green);
    border: 1px solid rgba(46, 204, 113, .3);
    border-radius: 4px;
    padding: 2px 8px;
    font-size: .75rem;
    font-weight: 600
}

.app-info-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: flex-start
}

.app-info-tbl {
    flex: 2 1 340px
}

.app-info-btns {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 180px
}

.app-tbl {
    width: 100%;
    border-collapse: collapse
}

.app-tbl tr td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--clr-border);
    font-size: .88rem
}

.app-tbl tr td:first-child {
    color: var(--clr-text-muted);
    font-weight: 500;
    width: 45%
}

.app-tbl tr td:last-child {
    color: #fff;
    font-weight: 500
}

.app-tbl tr:last-child td {
    border-bottom: none
}

.btn-store {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--clr-card2);
    border: 1px solid var(--clr-border);
    border-radius: 9px;
    padding: 11px 16px;
    color: #fff;
    font-size: .85rem;
    font-weight: 600;
    transition: transform .15s, border-color .2s;
    text-decoration: none
}

.btn-store:hover {
    transform: translateY(-2px);
    border-color: var(--clr-accent);
    color: #fff
}

.btn-store svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0
}

.btn-store-label {
    display: flex;
    flex-direction: column;
    line-height: 1.2
}

.btn-store-label small {
    font-weight: 400;
    font-size: .7rem;
    color: var(--clr-text-muted)
}

.slot-game {
    text-align: center;
    padding: 32px 20px
}

.slot-reels {
    display: inline-flex;
    gap: 10px;
    background: rgba(0, 0, 0, .4);
    border: 2px solid var(--clr-border);
    border-radius: 14px;
    padding: 18px 24px;
    margin-bottom: 24px;
    box-shadow: inset 0 2px 12px rgba(0, 0, 0, .5)
}

.slot-reel {
    width: 80px;
    height: 90px;
    background: var(--clr-header);
    border: 1px solid var(--clr-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    overflow: hidden;
    position: relative;
    transition: all .2s
}

.slot-reel.spinning {
    animation: reel-spin .12s linear infinite
}

@keyframes reel-spin {
    0% {
        transform: translateY(0)
    }
    25% {
        transform: translateY(-4px)
    }
    75% {
        transform: translateY(4px)
    }
    100% {
        transform: translateY(0)
    }
}

.slot-result {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px
}

.slot-win-msg {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--clr-gold);
    animation: fadeIn .4s ease
}

.slot-lose-msg {
    font-size: 1rem;
    color: var(--clr-text-muted)
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(.9)
    }
    to {
        opacity: 1;
        transform: scale(1)
    }
}

.slot-controls {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap
}

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

.faq-item {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color .2s
}

.faq-item.open {
    border-color: rgba(192, 122, 58, .5)
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 18px 20px;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-family: inherit;
    transition: background .15s
}

.faq-q:hover {
    background: rgba(255, 255, 255, .04)
}

.faq-arrow {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s, background .2s
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
    background: rgba(192, 122, 58, .25)
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .3s
}

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

.faq-a p {
    color: var(--clr-text-muted);
    font-size: .9rem;
    line-height: 1.7
}

.content-body {
    padding: 8px 0
}

.content-body h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin: 24px 0 10px;
    border-bottom: 1px solid var(--clr-border);
    padding-bottom: 8px
}

.content-body h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e0d0f8;
    margin: 18px 0 8px
}

.content-body p {
    color: var(--clr-text-muted);
    margin-bottom: 12px;
    font-size: .93rem;
    line-height: 1.7
}

.content-body ul, .content-body ol {
    margin: 10px 0 14px 18px;
    color: var(--clr-text-muted);
    font-size: .93rem
}

.content-body li {
    margin-bottom: 5px;
    line-height: 1.6
}

.content-body ul li {
    list-style: disc
}

.content-body ol li {
    list-style: decimal
}

.content-body table {
    min-width: 320px;
    margin-bottom: 16px
}

.content-body table th {
    background: rgba(45, 18, 57, .6);
    color: #fff;
    font-weight: 600;
    padding: 10px 14px;
    text-align: left;
    border-bottom: 2px solid var(--clr-border);
    font-size: .85rem
}

.content-body table td {
    padding: 9px 14px;
    border-bottom: 1px solid var(--clr-border);
    font-size: .87rem;
    color: var(--clr-text-muted)
}

.content-body a {
    color: var(--clr-accent)
}

.content-body blockquote {
    border-left: 3px solid var(--clr-accent);
    padding: 10px 16px;
    background: rgba(192, 122, 58, .08);
    border-radius: 0 6px 6px 0;
    margin: 14px 0;
    color: var(--clr-text-muted);
    font-style: italic;
    font-size: .9rem
}

.content-body strong {
    color: #fff;
    font-weight: 600
}

.content-body em {
    font-style: italic
}

.content-body img {
    border-radius: 8px;
    margin: 10px 0;
    max-width: 100%
}

.content-body hr {
    border: none;
    border-top: 1px solid var(--clr-border);
    margin: 20px 0
}

.lbfooter {
    background: var(--clr-header);
    border-top: 1px solid var(--clr-border);
    padding: 48px 20px 24px;
    margin-top: 40px
}

.lbfooter-inner {
    max-width: 1200px;
    margin: 0 auto
}

.lbfooter-top {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 36px
}

.lbfooter-brand {
    flex: 1 1 220px
}

.lbfooter-brand img {
    height: 36px;
    width: auto;
    border-radius: 5px;
    margin-bottom: 14px
}

.lbfooter-brand p {
    font-size: .83rem;
    color: var(--clr-text-muted);
    line-height: 1.65
}

.lbfooter-col {
    flex: 1 1 150px
}

.lbfooter-col h4 {
    font-size: .88rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: .06em
}

.lbfooter-col ul {
    display: flex;
    flex-direction: column;
    gap: 7px
}

.lbfooter-col ul a {
    font-size: .83rem;
    color: var(--clr-text-muted);
    transition: color .2s
}

.lbfooter-col ul a:hover {
    color: #fff
}

.lbfooter-payments {
    margin-bottom: 28px
}

.lbfooter-payments h4 {
    font-size: .88rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: .06em
}

.lbfooter-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center
}

.lbfooter-logo-badge {
    background: rgba(255, 255, 255, .07);
    border: 1px solid var(--clr-border);
    border-radius: 7px;
    padding: 6px 14px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--clr-text-muted)
}

.lbfooter-bottom {
    border-top: 1px solid var(--clr-border);
    padding-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    justify-content: space-between
}

.lbfooter-copy {
    font-size: .75rem;
    color: var(--clr-text-muted);
    line-height: 1.6
}

.lbfooter-legal {
    font-size: .73rem;
    color: rgba(168, 155, 191, .5);
    line-height: 1.6;
    max-width: 700px
}

.lbfooter-license {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .75rem;
    color: var(--clr-text-muted)
}

.lbfooter-license-dot {
    width: 6px;
    height: 6px;
    background: var(--clr-green);
    border-radius: 50%
}

.lb-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: linear-gradient(90deg, #1C142F, #2D1239);
    border-top: 1px solid rgba(97, 50, 37, .5);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .5)
}

.lb-widget-text {
    font-size: .9rem;
    color: #fff;
    font-weight: 500
}

.lb-widget-bonus {
    color: var(--clr-gold);
    font-weight: 700
}

.lb-widget-close {
    background: none;
    border: none;
    color: var(--clr-text-muted);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 4px;
    line-height: 1;
    margin-left: 8px;
    flex-shrink: 0
}

.lb-widget-close:hover {
    color: #fff
}

body {
    padding-bottom: 64px
}

.sep {
    height: 1px;
    background: var(--clr-border);
    opacity: .5;
    margin: 0 20px
}

.author-block {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 32px
}

.author-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--clr-btn-login);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-gold);
    flex-shrink: 0;
    border: 2px solid var(--clr-border)
}

.author-info h4 {
    font-size: .95rem;
    font-weight: 700;
    color: #fff
}

.author-info p {
    font-size: .8rem;
    color: var(--clr-text-muted);
    margin-top: 3px;
    line-height: 1.5
}

.author-info a {
    font-size: .8rem;
    color: var(--clr-accent)
}

.rating-stars {
    display: inline-flex;
    gap: 2px
}

.star {
    color: var(--clr-gold);
    font-size: 1.1rem
}

.rating-num {
    font-size: .85rem;
    color: var(--clr-text-muted);
    margin-left: 6px;
    vertical-align: middle
}

@media (max-width: 900px) {
    .lbhdr-nav {
        display: none
    }

    .burger {
        display: flex
    }

    .lbhdr-btns {
    }
}

@media (max-width: 600px) {
    .lbhdr-inner {
        padding: 10px 14px
    }

    .btn {
        font-size: .82rem;
        padding: 8px 14px
    }

    .jackpot-item {
        flex: 1 1 140px
    }

    .app-info-grid {
        flex-direction: column
    }

    .slot-reel {
        width: 68px;
        height: 78px;
        font-size: 2.2rem
    }

    .lbfooter-top {
        gap: 20px
    }

    .lb-widget {
        padding: 10px 14px;
        gap: 10px
    }

    .lb-widget-text {
        font-size: .8rem
    }
}

.wp-block-separator {
    border: none;
    border-top: 1px solid var(--clr-border);
    margin: 24px 0
}

.entry-content {
}

.post-template-default {
}

.wp-site-blocks {
}

.single-post {
}

.n4x2a, .b7k3q {
    position: relative;
    overflow: hidden
}

.m6p9w, .e3r7t, .y1u8i {
    display: block
}

.c5v2b, .f8n1m {
    opacity: 1
}

@media (max-width: 600px) {
    #app.lb-section {
        padding: 28px 12px;
    }

    #app .lb-card {
        padding: 18px 14px;
        border-radius: 12px;
    }

    #app .lb-section-title {
        font-size: 1.18rem;
        line-height: 1.25;
    }

    #app .lb-section-sub {
        font-size: .84rem;
        margin-bottom: 18px;
    }

    #app .app-info-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    #app .app-info-tbl,
    #app .app-info-btns {
        width: 100%;
        flex: none;
        min-width: 0;
    }

    #app .tbl-wrap {
        overflow: visible;
    }

    #app .app-tbl {
        min-width: 0;
    }

    #app .app-tbl tr {
        display: grid;
        grid-template-columns: 1fr;
        gap: 3px;
        padding: 10px 0;
        border-bottom: 1px solid var(--clr-border);
    }

    #app .app-tbl tr:last-child {
        border-bottom: none;
    }

    #app .app-tbl tr td {
        display: block;
        padding: 0;
        border-bottom: none;
        width: 100%;
        font-size: .86rem;
    }

    #app .app-tbl tr td:first-child {
        width: 100%;
        font-size: .76rem;
    }

    #app .app-tbl tr td:last-child {
        font-size: .9rem;
    }

    #app .app-info-btns {
        gap: 9px;
    }

    #app .btn-store {
        width: 100%;
        min-height: 52px;
        padding: 12px 14px;
        border-radius: 10px;
    }

    #app .btn-store svg {
        width: 24px;
        height: 24px;
    }
}