/* Izzi Casino Mirror - style.css?ver=1.7 */

/* === WP compat stubs (запутывание) === */
.wp-block-group {
    display: block
}

.wp-block-image img {
    max-width: 100%
}

.entry-content, .post-content, .page-content {
    display: block
}

.elementor-widget-wrap, .elementor-section, .elementor-container {
    display: block
}

.yoast-breadcrumb {
    font-size: 13px;
    color: #999
}

.wp-pagenavi {
    text-align: center;
    margin: 20px 0
}

/* === end WP stubs === */

/* unused styles for uniqualization */
.xq7r2-hd8 {
    opacity: 0;
    pointer-events: none;
}

.b3k9z-wrap {
    display: none;
}

.nw4p1-el {
    visibility: hidden;
}

/* === end unused === */

:root {
    --clr-bg: #101010;
    --clr-header: #000000;
    --clr-primary: #00AEEF;
    --clr-primary-dark: #008ec0;
    --clr-text: #e8e8e8;
    --clr-text-muted: #a0a0a0;
    --clr-card: #1a1a1a;
    --clr-card2: #161616;
    --clr-border: #2a2a2a;
    --clr-win: #00d68f;
    --radius: 10px;
    --radius-sm: 6px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--clr-bg);
    color: var(--clr-text);
    font-family: 'Open Sans', 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--clr-primary);
    text-decoration: none;
}

a:hover {
    color: #fff;
}

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

/* ========== HEADER ========== */
#site-header {
    background: #000;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #1c1c1c;
    box-shadow: 0 2px 12px rgba(0, 174, 239, .15);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 16px;
    flex-wrap: wrap;
}

.logo-wrap img {
    height: 44px;
    width: auto;
    display: block;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.header-nav a {
    color: #ccc;
    font-size: 14px;
    font-weight: 500;
    transition: color .2s;
}

.header-nav a:hover {
    color: var(--clr-primary);
}

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

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

.online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--clr-win);
    display: inline-block;
    animation: pulse-dot 1.4s infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 214, 143, .5);
    }
    50% {
        box-shadow: 0 0 0 5px rgba(0, 214, 143, 0);
    }
}

/* burger */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all .3s;
}

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

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

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

.mobile-menu {
    display: none;
    background: #000;
    border-top: 1px solid #1c1c1c;
    padding: 14px 16px;
    flex-direction: column;
    gap: 12px;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    color: #ccc;
    font-size: 15px;
    padding: 4px 0;
    border-bottom: 1px solid #1c1c1c;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

/* ========== BUTTONS ========== */
.btn-iz {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: inherit;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: background .2s, transform .15s, box-shadow .2s;
    white-space: nowrap;
}

.btn-iz:active {
    transform: scale(.97);
}

.btn-login {
    background: transparent;
    color: var(--clr-primary);
    border: 1.5px solid var(--clr-primary);
}

.btn-login:hover {
    background: var(--clr-primary);
    color: #fff;
}

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

.btn-signup:hover {
    background: var(--clr-primary-dark);
    box-shadow: 0 0 12px rgba(0, 174, 239, .4);
}

.btn-bonus {
    background: linear-gradient(135deg, #00AEEF, #0077b6);
    color: #fff;
    font-size: 15px;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
}

.btn-bonus:hover {
    background: linear-gradient(135deg, #00c4ff, #0090d0);
    box-shadow: 0 0 18px rgba(0, 174, 239, .5);
}

.btn-lg {
    font-size: 17px;
    padding: 14px 34px;
    border-radius: 8px;
}

/* ========== HERO ========== */
#hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

#hero .hero-bg {
    position: absolute;
    inset: 0;
    background: url('/izzi-banner.jpg') center/cover no-repeat;
    z-index: 0;
}

#hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .85) 40%, rgba(0, 0, 0, .3) 100%);
    z-index: 1;
}

#hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 560px;
    padding: 60px 24px;
}

#hero h1 {
    font-size: clamp(26px, 5vw, 46px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #fff;
}

#hero .hero-sub {
    font-size: 17px;
    color: #ccc;
    margin-bottom: 28px;
    line-height: 1.6;
}

#hero .hero-badge {
    display: inline-block;
    background: rgba(0, 174, 239, .15);
    border: 1px solid var(--clr-primary);
    color: var(--clr-primary);
    font-size: 13px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
}

/* ========== SECTIONS COMMON ========== */
.section-wrap {
    padding: 56px 0;
}

.section-wrap + .section-wrap {
    padding-top: 0;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: clamp(20px, 3vw, 30px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.section-subtitle {
    font-size: 14px;
    color: var(--clr-text-muted);
    margin-bottom: 28px;
}

/* ========== CARD BLOCK ========== */
.iz-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: border-color .2s;
}

.iz-card:hover {
    border-color: rgba(0, 174, 239, .3);
}

/* ========== MIRRORS TABLE ========== */
.mirror-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.mirror-timestamp {
    font-size: 13px;
    color: var(--clr-win);
    display: flex;
    align-items: center;
    gap: 6px;
}

.mirror-timestamp::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--clr-win);
    display: inline-block;
}

.table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.iz-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 480px;
}

.iz-table th {
    background: #0d0d0d;
    color: var(--clr-primary);
    font-weight: 600;
    text-align: left;
    padding: 12px 16px;
    border-bottom: 2px solid var(--clr-border);
}

.iz-table td {
    padding: 11px 16px;
    border-bottom: 1px solid var(--clr-border);
    color: var(--clr-text);
    vertical-align: middle;
}

.iz-table tr:last-child td {
    border-bottom: none;
}

.iz-table tr:hover td {
    background: rgba(255, 255, 255, .03);
}

.badge-active {
    display: inline-block;
    background: rgba(0, 214, 143, .15);
    color: var(--clr-win);
    border: 1px solid rgba(0, 214, 143, .3);
    font-size: 12px;
    padding: 2px 10px;
    border-radius: 20px;
}

.badge-new {
    display: inline-block;
    background: rgba(0, 174, 239, .15);
    color: var(--clr-primary);
    border: 1px solid rgba(0, 174, 239, .3);
    font-size: 12px;
    padding: 2px 10px;
    border-radius: 20px;
}

.mirror-link {
    color: var(--clr-primary);
    font-weight: 600;
}

.mirror-link:hover {
    color: #fff;
}

/* ========== WINNERS ========== */
.winners-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.winner-row {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--clr-card2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    transition: border-color .2s, background .2s;
}

.winner-row:hover {
    background: var(--clr-card);
    border-color: rgba(0, 174, 239, .25);
}

.winner-pos {
    font-size: 13px;
    font-weight: 700;
    color: var(--clr-text-muted);
    min-width: 28px;
}

.winner-pos.gold {
    color: #ffd700;
}

.winner-pos.silver {
    color: #c0c0c0;
}

.winner-pos.bronze {
    color: #cd7f32;
}

.winner-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-primary), #005f82);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.winner-nick {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
}

.winner-game {
    font-size: 12px;
    color: var(--clr-text-muted);
}

.winner-amount {
    font-size: 15px;
    font-weight: 700;
    color: var(--clr-win);
    white-space: nowrap;
}

/* ========== APP INFO ========== */
.app-block-inner {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.app-table-wrap {
    flex: 1;
    min-width: 260px;
}

.app-dl-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 200px;
}

.btn-store {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 12px 18px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    transition: border-color .2s, background .2s;
    cursor: pointer;
}

.btn-store:hover {
    border-color: var(--clr-primary);
    background: #1e1e1e;
}

.btn-store svg {
    flex-shrink: 0;
}

.btn-store-sub {
    font-size: 11px;
    font-weight: 400;
    color: var(--clr-text-muted);
}

/* ========== SLOT GAME ========== */
.slot-machine {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.slot-reels {
    display: flex;
    gap: 12px;
    background: #0a0a0a;
    border: 2px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.slot-reels::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    background: rgba(0, 174, 239, .3);
    pointer-events: none;
}

.reel {
    width: 80px;
    height: 80px;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    transition: transform .1s;
    overflow: hidden;
}

.reel.spinning {
    animation: reel-spin .1s linear infinite;
}

@keyframes reel-spin {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0);
    }
}

.slot-btn {
    background: var(--clr-primary);
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    padding: 14px 48px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background .2s, box-shadow .2s, transform .1s;
    letter-spacing: .5px;
}

.slot-btn:hover {
    background: var(--clr-primary-dark);
    box-shadow: 0 0 20px rgba(0, 174, 239, .5);
}

.slot-btn:active {
    transform: scale(.97);
}

.slot-btn:disabled {
    opacity: .6;
    cursor: not-allowed;
}

.slot-result {
    text-align: center;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.slot-result .win-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--clr-win);
    animation: fadeInUp .4s ease;
}

.slot-result .lose-text {
    font-size: 16px;
    color: var(--clr-text-muted);
    animation: fadeInUp .4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== FAQ ========== */
.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-sm);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    user-select: none;
    gap: 12px;
    transition: background .2s;
}

.faq-question:hover {
    background: #1c1c1c;
}

.faq-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1.5px solid var(--clr-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-primary);
    font-size: 16px;
    transition: transform .3s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s;
    padding: 0 20px;
    font-size: 14px;
    color: var(--clr-text-muted);
    line-height: 1.7;
}

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

/* ========== CONTENT BLOCK ========== */
.content-block {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 32px 28px;
    font-size: 15px;
    line-height: 1.75;
}

.content-block h2 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 20px 0 10px;
}

.content-block h3 {
    font-size: 18px;
    font-weight: 600;
    color: #e0e0e0;
    margin: 16px 0 8px;
}

.content-block p {
    margin: 0 0 14px;
}

.content-block ul, .content-block ol {
    margin: 0 0 14px 20px;
    padding: 0;
}

.content-block ul li, .content-block ol li {
    margin-bottom: 6px;
}

.content-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 14px 0;
}

.content-block table th {
    background: #0d0d0d;
    color: var(--clr-primary);
    padding: 10px 14px;
    text-align: left;
    border-bottom: 2px solid var(--clr-border);
}

.content-block table td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--clr-border);
}

.content-block a {
    color: var(--clr-primary);
}

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

/* ========== AUTHOR ========== */
.author-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--clr-card2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin-top: 24px;
}

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-info .author-name {
    font-weight: 700;
    color: #fff;
    font-size: 15px;
}

.author-info .author-role {
    font-size: 13px;
    color: var(--clr-primary);
}

.author-info .author-bio {
    font-size: 13px;
    color: var(--clr-text-muted);
    margin-top: 4px;
    line-height: 1.5;
}

.author-info a {
    color: var(--clr-primary);
    font-size: 13px;
}

/* ========== FOOTER ========== */
#site-footer {
    background: #000;
    border-top: 1px solid #1c1c1c;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-top {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 32px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-nav a {
    font-size: 14px;
    color: #999;
}

.footer-nav a:hover {
    color: var(--clr-primary);
}

.footer-nav-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: #666;
    margin-bottom: 8px;
}

.footer-divider {
    border: none;
    border-top: 1px solid #1c1c1c;
    margin: 20px 0;
}

.footer-bottom {
    font-size: 12px;
    color: #555;
    text-align: center;
    line-height: 1.8;
}

.footer-bottom a {
    color: #666;
}

.footer-bottom a:hover {
    color: #999;
}

.footer-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin: 16px 0;
}

.footer-logo-badge {
    background: #141414;
    border: 1px solid #252525;
    border-radius: 5px;
    padding: 6px 12px;
    font-size: 12px;
    color: #666;
    font-weight: 600;
}

.footer-logo-badge.active-badge {
    color: #888;
}

/* ========== WIDGET ========== */
#bonus-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: linear-gradient(90deg, #000 0%, #001e2b 50%, #000 100%);
    border-top: 2px solid var(--clr-primary);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    box-shadow: 0 -4px 20px rgba(0, 174, 239, .2);
}

.widget-text {
    font-size: 14px;
    color: #fff;
    white-space: nowrap;
}

.widget-text strong {
    color: var(--clr-primary);
}

.widget-close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
}

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

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn .6s ease both;
}

.iz-card, .winner-row, .faq-item {
    animation: fadeIn .5s ease both;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
    .header-nav {
        display: none;
    }

    .burger {
        display: flex;
    }
}

@media (max-width: 600px) {
    #hero {
        min-height: 380px;
    }

    #hero .hero-content {
        padding: 40px 16px;
    }

    .app-block-inner {
        flex-direction: column;
    }

    .reel {
        width: 64px;
        height: 64px;
        font-size: 30px;
    }

    .slot-btn {
        padding: 12px 30px;
        font-size: 15px;
    }

    .winner-game {
        display: none;
    }
}

@media (max-width: 400px) {
    .btn-iz {
        font-size: 12px;
        padding: 7px 12px;
    }
}

.trsfddg {
    width: 100%;
    max-width: 980px;
    margin: 32px auto;
    padding: 40px;
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 22px;
    color: #e8e8e8;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.trsfddg h1,
.trsfddg h2,
.trsfddg h3,
.trsfddg h4,
.trsfddg h5,
.trsfddg h6 {
    color: #ffffff;
    line-height: 1.3;
    margin: 0 0 18px;
    font-weight: 700;
}

.trsfddg h1 {
    font-size: 38px;
    margin-bottom: 24px;
}

.trsfddg h2 {
    font-size: 28px;
    margin-top: 34px;
}

.trsfddg h3 {
    font-size: 22px;
    margin-top: 28px;
}

.trsfddg p {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.75;
    color: #d7d7d7;
}

.trsfddg a {
    color: #00aeef;
    text-decoration: none;
    word-break: break-word;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.trsfddg a:hover {
    color: #33c7ff;
}

.trsfddg strong,
.trsfddg b {
    color: #ffffff;
    font-weight: 700;
}

.trsfddg ul,
.trsfddg ol {
    margin: 0 0 22px;
    padding-left: 22px;
}

.trsfddg li {
    margin-bottom: 10px;
    color: #d7d7d7;
    line-height: 1.7;
}

.trsfddg blockquote {
    margin: 24px 0;
    padding: 18px 20px;
    background: #1b1b1b;
    border-left: 4px solid #00aeef;
    border-radius: 12px;
}

.trsfddg blockquote p:last-child {
    margin-bottom: 0;
}

.trsfddg hr {
    border: 0;
    border-top: 1px solid #2a2a2a;
    margin: 32px 0;
}

.trsfddg table {
    width: 100%;
    margin: 26px 0;
    border-collapse: collapse;
    background: #181818;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    overflow: hidden;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
}

.trsfddg thead,
.trsfddg tbody,
.trsfddg tr {
    background: transparent;
}

.trsfddg th,
.trsfddg td {
    padding: 14px 16px;
    border: 1px solid #2a2a2a;
    text-align: left;
    vertical-align: top;
    background: #181818;
}

.trsfddg th {
    color: #00aeef;
    font-size: 14px;
    font-weight: 700;
    background: #111111;
}

.trsfddg td {
    color: #d7d7d7;
    font-size: 15px;
}

.trsfddg tr:nth-child(even) td {
    background: #161616;
}

.trsfddg tr:hover td {
    background: #1d1d1d;
}

.trsfddg img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 24px auto;
    border-radius: 16px;
}

@media (max-width: 992px) {
    .trsfddg {
        margin: 24px auto;
        padding: 32px 24px;
        border-radius: 18px;
    }

    .trsfddg h1 {
        font-size: 32px;
    }

    .trsfddg h2 {
        font-size: 24px;
    }

    .trsfddg h3 {
        font-size: 20px;
    }

    .trsfddg p,
    .trsfddg li {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .trsfddg {
        margin: 20px auto;
        padding: 24px 16px;
        border-radius: 16px;
    }

    .trsfddg h1 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .trsfddg h2 {
        font-size: 22px;
        margin-top: 28px;
    }

    .trsfddg h3 {
        font-size: 18px;
        margin-top: 24px;
    }

    .trsfddg p {
        font-size: 15px;
        line-height: 1.7;
    }

    .trsfddg ul,
    .trsfddg ol {
        padding-left: 18px;
    }

    .trsfddg blockquote {
        padding: 16px;
        border-radius: 10px;
    }

    .trsfddg table {
        border-radius: 12px;
    }

    .trsfddg th,
    .trsfddg td {
        padding: 12px 14px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .trsfddg {
        padding: 20px 14px;
    }

    .trsfddg h1 {
        font-size: 24px;
    }

    .trsfddg h2 {
        font-size: 20px;
    }

    .trsfddg h3 {
        font-size: 17px;
    }

    .trsfddg p,
    .trsfddg li,
    .trsfddg td,
    .trsfddg th {
        font-size: 14px;
    }

    .trsfddg th,
    .trsfddg td {
        padding: 10px 12px;
    }
}

.section-wrap#app {
    padding: 56px 0;
}

.section-wrap#app .iz-card {
    background: linear-gradient(180deg, #171717 0%, #111111 100%);
    border: 1px solid #2c2c2c;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.32);
}

.section-wrap#app .section-title {
    font-size: 34px;
    line-height: 1.15;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.section-wrap#app .section-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #9fa6ad;
    margin-bottom: 28px;
}

.section-wrap#app .app-block-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.9fr);
    gap: 24px;
    align-items: stretch;
}

.section-wrap#app .app-table-wrap {
    min-width: 0;
}

.section-wrap#app .table-scroll {
    height: 100%;
    overflow-x: auto;
    border: 1px solid #2b2b2b;
    border-radius: 18px;
    background: #141414;
}

.section-wrap#app .iz-table {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
    background: #141414;
}

.section-wrap#app .iz-table thead tr {
    background: #0e0e0e;
}

.section-wrap#app .iz-table th {
    padding: 16px 18px;
    text-align: left;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #00aeef;
    border-bottom: 1px solid #2b2b2b;
    white-space: nowrap;
}

.section-wrap#app .iz-table td {
    padding: 15px 18px;
    font-size: 15px;
    line-height: 1.5;
    color: #e8e8e8;
    border-bottom: 1px solid #232323;
    background: transparent;
}

.section-wrap#app .iz-table tbody tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.015);
}

.section-wrap#app .iz-table tbody tr:hover td {
    background: rgba(0, 174, 239, 0.05);
}

.section-wrap#app .iz-table tbody tr:last-child td {
    border-bottom: 0;
}

.section-wrap#app .iz-table td:first-child {
    width: 38%;
    color: #b8bec5;
    font-weight: 600;
    white-space: nowrap;
}

.section-wrap#app .app-dl-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    padding: 22px;
    background: linear-gradient(180deg, #121212 0%, #0f0f0f 100%);
    border: 1px solid #2b2b2b;
    border-radius: 20px;
}

.section-wrap#app .btn-store {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 72px;
    padding: 16px 18px;
    border-radius: 16px;
    background: #171717;
    border: 1px solid #2b2b2b;
    color: #ffffff;
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.section-wrap#app .btn-store:hover {
    background: #1b1b1b;
    border-color: #00aeef;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 174, 239, 0.14);
}

.section-wrap#app .btn-store svg {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
}

.section-wrap#app .btn-store > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.section-wrap#app .btn-store-sub {
    font-size: 11px;
    line-height: 1.2;
    color: #8f98a1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-wrap#app .btn-store > div:last-child > div:last-child {
    font-size: 17px;
    line-height: 1.25;
    font-weight: 700;
    color: #ffffff;
}

@media (max-width: 991px) {
    .section-wrap#app .iz-card {
        padding: 24px;
        border-radius: 20px;
    }

    .section-wrap#app .section-title {
        font-size: 28px;
    }

    .section-wrap#app .app-block-inner {
        grid-template-columns: 1fr;
    }

    .section-wrap#app .app-dl-wrap {
        padding: 18px;
    }
}

@media (max-width: 767px) {
    .section-wrap#app {
        padding: 40px 0;
    }

    .section-wrap#app .iz-card {
        padding: 18px;
        border-radius: 18px;
    }

    .section-wrap#app .section-title {
        font-size: 24px;
    }

    .section-wrap#app .section-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .section-wrap#app .table-scroll {
        border-radius: 14px;
    }

    .section-wrap#app .iz-table {
        min-width: 520px;
    }

    .section-wrap#app .iz-table th,
    .section-wrap#app .iz-table td {
        padding: 13px 14px;
        font-size: 14px;
    }

    .section-wrap#app .app-dl-wrap {
        gap: 12px;
        padding: 14px;
        border-radius: 16px;
    }

    .section-wrap#app .btn-store {
        min-height: 64px;
        padding: 14px 14px;
        border-radius: 14px;
    }

    .section-wrap#app .btn-store > div:last-child > div:last-child {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .section-wrap#app .iz-card {
        padding: 16px;
    }

    .section-wrap#app .section-title {
        font-size: 22px;
    }

    .section-wrap#app .iz-table {
        min-width: 460px;
    }

    .section-wrap#app .iz-table th,
    .section-wrap#app .iz-table td {
        padding: 12px;
        font-size: 13px;
    }

    .section-wrap#app .btn-store {
        gap: 12px;
    }

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

    .section-wrap#app .btn-store-sub {
        font-size: 10px;
    }

    .section-wrap#app .btn-store > div:last-child > div:last-child {
        font-size: 14px;
    }
}