:root {
    /* Spacing */
    --space-4xs: clamp(0.31rem, calc(0.21vw + 0.26rem), 0.44rem);
    --space-3xs: clamp(0.38rem, calc(0.38vw + 0.31rem), 0.62rem);
    --space-2xs: clamp(0.48rem, calc(0.65vw + 0.35rem), 0.88rem);
    --space-xs: clamp(0.6rem, calc(1.04vw + 0.39rem), 1.24rem);
    --space-s: clamp(0.75rem, calc(1.63vw + 0.42rem), 1.75rem);
    --space-m: clamp(0.94rem, calc(2.51vw + 0.44rem), 2.47rem);
    --space-l: clamp(1.17rem, calc(3.8vw + 0.41rem), 3.5rem);
    --space-xl: clamp(1.47rem, calc(5.69vw + 0.33rem), 4.95rem);
    --space-2xl: clamp(1.83rem, calc(8.43vw + 0.14rem), 7rem);
    --space-3xl: clamp(2.29rem, calc(12.41vw + -0.19rem), 9.89rem);
    --space-4xl: clamp(2.86rem, calc(18.17vw + -0.77rem), 13.99rem);

    /* Text */
    --text-xs: clamp(0.48rem, calc(0.39vw + 0.4rem), 0.72rem);
    --text-s: clamp(0.6rem, calc(0.49vw + 0.5rem), 0.9rem);
    --text-m: clamp(0.75rem, calc(0.61vw + 0.63rem), 1.13rem);
    --text-l: clamp(0.94rem, calc(0.77vw + 0.78rem), 1.41rem);
    --text-xl: clamp(1.17rem, calc(0.96vw + 0.98rem), 1.76rem);
    --text-2xl: clamp(1.47rem, calc(1.2vw + 1.23rem), 2.2rem);
    --text-3xl: clamp(1.83rem, calc(1.49vw + 1.53rem), 2.75rem);
    --text-4xl: clamp(2.29rem, calc(1.87vw + 1.92rem), 3.43rem);
}

@font-face {
    font-family: 'Roboto';
    src: url('/assets/fonts/Roboto-VariableFont_wdth,wght.woff2') format('woff2');
    font-weight: 300 900;
    font-style: normal;
}

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

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    font-size: 16px;
}

html {
    scroll-behavior: smooth;
}

h1 {
    margin: 0.67em;
    font-size: 2em;
}

ul, ol {
    padding-left: 1.5em;
}

a {
    text-decoration: none;
}

.header-content {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px;
    margin: 0 -10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background-color: #0f0f0f;
    border-bottom: 1px solid rgb(255 255 255 / .05);
    transition: all 0.3s ease
}

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

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #80858f;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s
}

.nav-link:hover {
    transform: scale(1.05);
    color: #fff
}

.nav-icon {
    width: 26px
}

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

.btn {
    white-space: nowrap;
    display: inline-block;
    padding: 8px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s
}

.btn-download, .btn-register, .btn-banner {
    background-color: #921818;
    color: #fff
}

.btn:hover {
    background-color: #a02020;
    transform: translateY(-1px)
}


.page-container {
    display: flex
}

.menu {
    width: 280px;
    background-color: #1a1a1a;
    border-right: 1px solid #333;
    padding: 7px;
    flex-shrink: 0
}

.sidebar-logo-img {
    display: block;
    margin: 0 auto;
    height: 50px;
    width: auto;
    aspect-ratio: auto
}

.mobile-logo {
    display: none;
    height: 30px;
    width: auto
}

.sidebar-menu {
    position: sticky;
    top: 20px;
    z-index: 1000;
    padding: 0 20px
}

.menu-section {
    margin: 20px 0
}

.menu-section-title {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding: 0 10px
}

.menu-list {
    list-style: none
}

.menu-item a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 4px 10px;
    color: #80858f;
    cursor: pointer;
    border-radius: 6px;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s
}

.menu-item a:hover {
    transform: scale(1.05);
    color: #fff
}

.menu-icon {
    width: 26px;
    text-align: center
}

.divider {
    height: 1px;
    background: linear-gradient( 90deg, rgba(233, 192, 95, 0) 0%, rgba(233, 192, 95, .3) 50.5%, rgba(233, 192, 95, 0) 100% );
    margin: 20px 0;
}

.main-content {
    width: 100%;
    flex: 1;
    padding: 0 10px;
    background-color: #0f0f0f
}

.promo-banners {
    margin: 20px 0;
    display: flex;
    gap: 30px
}

.promo-banner {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    width: 100%
}

.promo-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1
}

.banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 15px;
    height: 100%
}

.banner-text {
    position: relative;
    z-index: 3
}

.banner-title {
    font-size: clamp(1.5rem, 5vw, 6rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase
}

.banner-subtitle {
    font-size: clamp(1rem, 2vw, 2rem);
    color: #fff;
    margin-bottom: 10px
}

.banner-highlight {
    background: linear-gradient(180deg, rgb(255 212 2) 0%, rgb(253 155 1) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    font-style: italic;
    font-size: clamp(2rem, 5vw, 6rem);
    font-weight: 900;
    margin-bottom: 10px;
    line-height: 1
}

.btn-banner {
    font-size: clamp(1rem, 2vw, 2rem);
    padding: 15px;
    text-transform: uppercase
}

.btn-outline {
    background-color: #fff0;
    border: 1px solid #e9c05f;
    color: #fff;
}

.btn-outline:hover {
    background: linear-gradient( 180deg, #2b2827 0%, #2b2827 100% );
}

.casino-section, .thematic-section {
    min-height: 350px;
    margin-top: 60px;
    padding: 0 10px
}

.kasino-subtitle-line {
    min-width: 280px;
    position: relative;
    background: linear-gradient( 90deg, rgba(233, 192, 95, 0) 0%, rgba(233, 192, 95, .3) 50.5%, rgba(233, 192, 95, 0) 100% );
    height: 1px;
    margin: 10px 0 25px
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase
}

.section-subtitle {
    font-size: 16px;
    color: #999
}

.section-action {
    text-align: center
}

.kasino-tags-wrap {
    display: flex;
    justify-content: center;
    align-items: baseline
}

.kasino-tags-item {
    text-align: center;
    padding: 0 10px;
    transition: transform .2s ease
}

.kasino-tags-item-text {
    color: #80858f;
    font-size: 15px;
    transition: color .2s ease
}

.kasino-tags-item:hover .kasino-tags-item-text {
    color: #fff
}

.kasino-tags-line {
    position: relative;
    background: linear-gradient( 90deg, rgba(233, 192, 95, 0) 0%, rgba(233, 192, 95, .3) 50.5%, rgba(233, 192, 95, 0) 100% );
    min-width: 100%;
    height: 1px;
    margin: 10px 0 25px
}

.games-grid {
    display: grid;
    grid-template-columns:repeat(5, 1fr);
    gap: 20px;
    margin: 20px auto;
    max-width: 1200px;
    min-height: 350px;
    width: 100%
}

.game-card {
    cursor: pointer;
    aspect-ratio: 250 / 192
}

.game-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    height: 100%;
    background: #1a1a1a
}

.game-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
    aspect-ratio: 250 / 192
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / .7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease
}

.game-card:hover .game-overlay {
    opacity: 1;
    visibility: visible
}

.game-card:hover .game-img {
    transform: scale(1.1)
}

.btn-game {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 120px
}

.btn-play {
    background-color: #921818;
    color: #fff;
    gap: 8px
}

.btn-play:hover {
    background-color: #a02020;
    transform: translateY(-2px)
}

.play-icon {
    font-size: 12px
}

.btn-demo {
    background-color: #fff0;
    border: 2px solid #fff;
    color: #fff
}

.btn-demo:hover {
    background-color: #fff;
    color: #000
}

.thematic-grid {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px
}

.sport-subtitle-line {
    position: relative;
    background: linear-gradient(90deg, #fff0 0%, #921818 50%, #fff0 100%);
    min-width: 280px;
    height: 1px;
    margin: 10px 0 25px
}

.thematic-card {
    display: block;
    position: relative;
    width: 200px;
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 80px 0 10px 0;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #fff0;
    color: inherit;
    flex: 1 1 240px;
    max-width: 280px
}

.thematic-card:hover {
    background-color: #2a2a2a;
    border-color: #921818;
    transform: translateY(-5px)
}

.thematic-icon {
    position: absolute;
    top: -20px;
    left: -50%;
    transform: translateX(50%);
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px
}

.thematic-img {
    max-width: 100px;
    max-height: 115px;
    object-fit: contain
}

.thematic-title {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase
}

.content-article {
    max-width: 1200px;
    margin: 60px auto;
    color: #fff;
    line-height: 1.7;
}

.content-article h1 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.3;
    text-align: center;
}

.content-article h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-top: 50px;
    margin-bottom: 25px;
    line-height: 1.3;
    border-bottom: 2px solid #333;
    padding-bottom: 15px;
}

.content-article p {
    font-size: 16px;
    color: #e0e0e0;
    margin-bottom: 20px;
    line-height: 1.8;
}

.content-article p:last-child {
    margin-bottom: 0;
}

.content-article b {
    font-weight: 600;
    color: #fff;
}

/* Article v2 (reading-friendly layout) */
.content-article.article-v2 {
    max-width: 1100px;
    margin: 60px auto;
    padding: clamp(16px, 2vw, 28px);
    border-radius: 16px;
    background: linear-gradient(180deg, rgb(26 26 26 / .95) 0%, rgb(20 20 20 / .95) 100%);
    border: 1px solid rgb(255 255 255 / .08);
    box-shadow: 0 18px 55px rgb(0 0 0 / .45);
}

.content-article.article-v2 .article-meta {
    max-width: 820px;
    margin: 0 auto 18px;
}

.content-article.article-v2 .update-info {
    display: inline-block;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgb(0 0 0 / .35);
    border: 1px solid rgb(255 255 255 / .08);
    color: #cfcfcf;
    font-size: 13px;
    line-height: 1.6;
}

.content-article.article-v2 .article-prose {
    max-width: 820px;
    margin: 0 auto;
}

.content-article.article-v2 h1 {
    margin: 0 0 18px;
    text-align: left;
    font-size: clamp(1.9rem, 2.8vw, 2.6rem);
    line-height: 1.18;
    letter-spacing: .2px;
}

.content-article.article-v2 h1::after {
    content: "";
    display: block;
    height: 3px;
    width: 70px;
    margin-top: 14px;
    border-radius: 999px;
    background: linear-gradient(90deg, #921818 0%, #e9c05f 100%);
}

.content-article.article-v2 .article-lead {
    font-size: 17px;
    color: #ededed;
    background: rgb(255 255 255 / .03);
    border: 1px solid rgb(255 255 255 / .07);
    border-radius: 14px;
    padding: 14px 16px;
}

.content-article.article-v2 h2 {
    border-bottom: none;
    padding-bottom: 0;
    margin-top: 44px;
    margin-bottom: 18px;
    font-size: clamp(1.45rem, 2.2vw, 2rem);
    line-height: 1.25;
    position: relative;
}

.content-article.article-v2 h2::before {
    content: "";
    position: absolute;
    left: -14px;
    top: .18em;
    width: 4px;
    height: 1.05em;
    border-radius: 999px;
    background: #921818;
}

.content-article.article-v2 h3 {
    margin-top: 26px;
    margin-bottom: 12px;
    color: #fff;
    font-size: 18px;
    line-height: 1.3;
}

.content-article.article-v2 p {
    color: #dedede;
}

.content-article.article-v2 a:hover {
    color: #ffd404;
}

.content-article.article-v2 ul,
.content-article.article-v2 ol {
    margin: 18px 0 22px;
}

.content-article.article-v2 li {
    margin: 8px 0;
}

.content-article.article-v2 .table-wrapper {
    margin: 22px 0;
    border-radius: 12px;
    border: 1px solid rgb(255 255 255 / .08);
    box-shadow: 0 12px 30px rgb(0 0 0 / .35);
}

.content-article.article-v2 table {
    margin: 0;
    box-shadow: none;
}

@media (max-width: 768px) {
    .content-article.article-v2 {
        margin: 40px auto;
        border-radius: 14px;
    }

    .content-article.article-v2 .update-info {
        font-size: 12px;
    }

    .content-article.article-v2 h2::before {
        left: -10px;
    }
}

.content-article table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background-color: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgb(0 0 0 / .3)
}

.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    margin: 20px 0;
    box-shadow: 0 4px 6px rgb(0 0 0 / .3)
}

picture {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%
}

picture img {
    border-radius: 12px;
    max-width: 100%;
    height: auto
}

.content-inline-media {
    margin: 30px 0;
    width: 100%
}

.content-inline-split {
    display: block;
    margin: 20px 0;
}

.content-inline-split__text {
    min-width: 0;
}

.content-inline-split .content-inline-media {
    margin: 16px 0 0;
}

@media (min-width: 900px) {
    .content-inline-split {
        display: flex;
        align-items: flex-start;
        gap: 24px;
    }

    .content-inline-split__text {
        flex: 1 1 auto;
    }

    .content-inline-split .content-inline-media {
        flex: 0 0 320px;
        width: 320px;
        margin: 0;
    }
}

.content-inline-media__img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px
}

.content-inline-media__cta {
    margin-top: 14px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap
}

.btn.btn-link-content {
    color: #fff;
    text-decoration: none;
    padding: 10px
}

.content-article table td, th {
    padding: 18px 24px;
    border-bottom: 1px solid rgb(255 255 255 / .08);
    color: #e0e0e0;
    font-size: 15px;
    vertical-align: top;
    line-height: 1.6
}

.content-article table thead {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%)
}

.content-article table th {
    background-color: #fff0;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .8px;
    border-bottom: 2px solid #e9c05f;
    position: sticky;
    top: 0;
    z-index: 10
}

.content-article table tbody tr:last-child td {
    border-bottom: none
}

.content-article table td:first-child {
    width: 25%;
    font-weight: 600;
    color: #fff;
    background-color: rgb(255 255 255 / .02)
}

.content-article table td b {
    color: #fff;
    font-weight: 700
}

.site-footer {
    background-color: #000;
    border-top: 1px solid #333;
    padding: 60px 20px 40px;
    margin: 0 -10px
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto
}

.footer-apk {
    display: flex;
    justify-content: center;
    margin-bottom: 50px
}

.btn-apk {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #fff;
    border: 2px solid #000;
    border-radius: 8px;
    padding: 15px 30px;
    text-decoration: none;
    transition: all 0.3s ease
}

.btn-apk:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgb(255 255 255 / .2)
}

.apk-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center
}

.apk-icon svg {
    width: 100%;
    height: 100%;
    fill: #000
}

.apk-text {
    display: flex;
    flex-direction: column;
    color: #000
}

.apk-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2
}

.apk-subtitle {
    font-size: 14px;
    font-weight: 500;
    opacity: .8
}

.footer-links {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 50px
}

.footer-support-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-support-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 18px;
    border: 1px solid #333;
    border-radius: 10px;
    background-color: transparent;
    color: #dcdcdc;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.footer-support-btn:hover {
    background-color: #1a1a1a;
    border-color: #555;
    transform: translateY(-1px);
}

.footer-support-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-column-title {
    font-size: 18px;
    font-weight: 700;
    color: #8d8d8d;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0
}

.footer-list li {
    margin-bottom: 12px
}

.footer-list li:last-child {
    margin-bottom: 0
}

.footer-list a {
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block
}

.footer-providers, .footer-payments {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
    margin: 30px 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-gutter: stable;
    padding: 6px 0;
}

.provider-logo, .payment-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    height: 40px;
    flex: 0 0 auto;
}

.provider-logo:hover, .payment-logo:hover {
    transform: scale(1.05)
}

.provider-img, .payment-img {
    max-height: 100%;
    max-width: 120px;
    object-fit: contain
}

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

.footer-legal-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap
}

.footer-gcb-logo {
    display: flex;
    align-items: center;
    justify-content: center
}

.gcb-logo-img {
    max-width: 70px;
    height: auto;
    object-fit: contain
}

.footer-age-icon {
    display: flex;
    align-items: center;
    justify-content: center
}

.age-icon-img {
    width: 30px;
    height: auto;
    object-fit: contain
}

.footer-age-text {
    color: #999;
    font-size: 14px;
    margin: 0;
    text-align: center;
    flex: 1;
    min-width: 250px
}

.footer-legal-text {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.footer-legal-text p {
    color: #999;
    font-size: 12px;
    line-height: 1.6;
    margin: 0;
    text-align: center
}

@media (max-width: 1400px) {
    .games-grid {
        grid-template-columns:repeat(5, 1fr)
    }
}

@media (max-width: 1024px) {
    .footer-links {
        grid-template-columns:repeat(2, 1fr);
        gap: 40px
    }

    .footer-providers, .footer-payments {
        gap: 20px
    }

    .mobile-logo {
        display: block
    }

    .header-content {
        padding: 8px
    }

    .menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        z-index: 2000;
        background-color: #000;
        transition: left 0.3s ease;
        overflow-y: auto;
        box-shadow: 2px 0 10px rgb(0 0 0 / .5);
        padding: 7px
    }

    .menu.active {
        left: 0
    }

    .top-nav {
        display: none
    }

    .games-grid {
        grid-template-columns:repeat(3, 1fr)
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 8px;
        gap: 15px
    }

    .header-actions {
        gap: 8px
    }

    .kasino-tags-wrap {
        overflow-x: scroll;
        width: 100%;
        justify-content: start
    }

    .footer-age-text {
        min-width: 100%
    }

    .footer-legal-text {
        padding: 0 15px
    }

    .footer-legal-text p {
        font-size: 11px
    }

    .promo-banners {
        flex-wrap: wrap
    }

    .site-footer {
        padding: 40px 15px 30px
    }

    .footer-bottom {
        flex-direction: column;
        gap: 30px
    }


    .footer-providers, .footer-payments {
        gap: 15px
    }

    .provider-img, .payment-img {
        max-width: 80px
    }


    .games-grid {
        grid-template-columns:repeat(2, 1fr);
        gap: 15px
    }

    .thematic-grid {
        display: grid;
        justify-items: center;
        grid-template-columns:repeat(2, 1fr);
        gap: 15px
    }

    .thematic-card {
        width: 100%
    }

    .section-title {
        font-size: 28px
    }

    .casino-section, .thematic-section {
        margin-top: 40px
    }

    .content-article h1 {
        font-size: 32px
    }

    .content-article h2 {
        font-size: 26px;
        margin-top: 40px
    }

    .content-article p {
        font-size: 15px
    }

    .content-article table td {
        padding: 12px 15px;
        font-size: 13px;
        min-width: 120px
    }

    .content-article table td:first-child {
        width: auto
    }
}

@media (max-width: 480px) {
    .content-article h1 {
        font-size: 28px
    }

    .content-article h2 {
        font-size: 22px
    }

    .content-article table td {
        padding: 10px 12px;
        font-size: 12px
    }

    .btn-apk {
        padding: 12px 20px
    }

    .apk-icon {
        width: 32px;
        height: 32px
    }

    .apk-title {
        font-size: 14px
    }

    .apk-subtitle {
        font-size: 12px
    }

    .footer-column-title {
        font-size: 16px
    }

}

.mobile-menu {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000;
    border-top: 1px solid #333;
    padding: 5px 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgb(0 0 0 / .5);
    transition: transform 0.3s ease;
    justify-content: space-around;
    align-items: center;
    gap: 5px
}

.mobile-menu.hidden {
    transform: translateY(100%)
}

.mobile-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 60px;
    flex: 1
}

.mobile-menu-item.active {
    color: #00c9d4
}

.mobile-menu-icon {
    width: 26px;
    height: 26px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: center
}

.mobile-menu-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.mobile-menu-label {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px
}

.mobile-menu-toggle .mobile-menu-label {
    color: #ff0404;
    font-weight: 600
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(0 0 0 / .7);
    z-index: 1999;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none
}

.menu-overlay.active {
    display: block;
    opacity: 1;
    pointer-events: all
}


@media (max-width: 1024px) {
    .mobile-menu {
        display: flex
    }
}

@media (min-width: 1025px) {
    .mobile-menu {
        display: none !important
    }
}

/* FAQ Accordion Styles */
.faq-section {
    margin-bottom: 40px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 30px;
    position: relative;
}

.faq-item {
    background: rgb(26 26 26 / .95);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgb(255 255 255 / .1);
    transition: 0.3s;
    position: relative;
    z-index: 1;
}

.faq-item:hover {
    border-color: rgb(146 24 24 / .3);
    box-shadow: 0 4px 12px rgb(0 0 0 / .2);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: 0.3s;
    font-family: inherit;
}

.faq-question-text {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    flex: 1;
    transition: color 0.3s;
}

.faq-question[aria-expanded="true"] .faq-question-text {
    color: #921818;
}

.faq-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(255 255 255 / .15);
    border-radius: 50%;
    flex-shrink: 0;
    transition: 0.3s;
    margin-left: 16px;
}

.faq-icon svg {
    width: 16px;
    height: 16px;
    stroke: #fff;
    stroke-width: 2.5;
    transition: transform 0.3s;
}

.faq-question[aria-expanded="true"] .faq-icon {
    background: rgb(255 255 255 / .25);
}

.faq-question[aria-expanded="true"] .faq-icon svg {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-answer {
    padding: 0 24px 20px;
    max-height: 500px;
}

.faq-answer p {
    color: #e0e0e0;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    padding-top: 8px;
}

.faq-answer strong {
    color: #921818;
    font-weight: 600;
}

.faq-answer a {
    color: #921818;
    text-decoration: underline;
    transition: color 0.3s;
}

.faq-answer a:hover {
    color: #a02020;
}