@font-face {
    font-family: 'Inter';
    src: url(/assets/fonts/ElmsSans-VariableFont_wght.ttf) format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap
}

html {
    scroll-behavior: smooth
}

* {
    font-family: 'Elms Sans', sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

body {
    background-color: #0f0f0f;
    color: #fff
}

a {
    text-decoration: none
}

p {
    font-size: 16px;
    margin: 10px 0
}

ul {
    padding: 0 20px
}

h1 {
    margin-block: .67em;
    font-size: 2em
}

.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
}

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

.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(4, 1fr);
    gap: 20px;
    margin: 20px auto;
    max-width: 1000px;
    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;
    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 {
    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
}

.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
}

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

.bonuses-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap
}

.bonus-stat-item {
    text-align: center;
    min-width: 150px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1
}

.stat-label {
    font-size: 14px;
    color: #fff;
    text-transform: uppercase
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px auto;
    max-width: 1200px;
    width: 100%
}

.bonus-card {
    position: relative;
    background-color: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column
}

.bonus-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
    color: #fff;
}

.casino-badge {
    background-color: #921818;
}

.sport-badge {
    background-color: #ffd404;
    color: #000;
}

.bonus-card-image {
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bonus-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.bonus-card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bonus-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

.bonus-card-description {
    font-size: 14px;
    color: #ccc;
    margin: 0;
    line-height: 1.5;
    flex: 1;
}

.bonus-card-content > .btn-bonus:last-child {
    margin-top: auto;
}

.bonus-countdown {
    margin: 10px 0;
}

.countdown-label {
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
}

.countdown-timer {
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex-wrap: wrap;
}

.timer-value {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.timer-label {
    font-size: 10px;
    color: #999;
    text-transform: lowercase;
    margin-left: 2px;
}

.timer-separator {
    font-size: 20px;
    color: #921818;
    font-weight: 700;
    margin: 0 2px;
}

.bonus-prize {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 10px 0;
}

.prize-label {
    font-size: 12px;
    color: #999;
}

.prize-amount {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.btn-bonus {
    background-color: #921818;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    text-transform: uppercase;
}

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

.btn-bonus-details {
    background-color: transparent;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 1px solid #333;
    cursor: pointer;
    width: 100%;
}

.btn-bonus-details:hover {
    background-color: #2a2a2a;
    border-color: #921818;
}

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

.bonus-card-actions .btn-bonus {
    flex: 1;
}

.bonus-info-btn {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    text-decoration: none;
}

.bonus-info-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.bonus-info-btn svg {
    width: 18px;
    height: 18px;
}

.bonuses-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-bonus-outline {
    background-color: transparent;
    border: 1px solid #e9c05f;
    color: #fff;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

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

.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;
}

.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-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
}

.custom-list {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    margin: 30px 0
}

.custom-list li {
    counter-increment: step-counter;
    margin-bottom: 25px;
    padding-left: 50px;
    position: relative;
    color: #e0e0e0;
    line-height: 1.7
}

.custom-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background: #921818;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 2px 8px rgb(146 24 24 / .3)
}

.custom-list li strong {
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px
}

.custom-list li p {
    margin: 0;
    color: #e0e0e0;
    font-size: 15px;
    line-height: 1.7
}

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

.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(3, 1fr);
    gap: 60px;
    margin-bottom: 50px
}

.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: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 30px 0
}

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

.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
}

.banner-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.banner-img:hover {
    transform: scale(1.02)
}

@media (max-width: 1400px) {
    .games-grid {
        grid-template-columns:repeat(4, 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) {
    .mobile-display-none {
        display: none
    }

    .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
    }
    .bonus-stat-item {
        min-width: auto
    }

    .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
    }

    .bonuses-section {
        margin-top: 40px
    }

    .stat-number {
        font-size: 36px
    }

    .stat-label {
        font-size: 12px
    }

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

    .bonus-card-content {
        padding: 15px
    }

    .bonus-card-title {
        font-size: 16px
    }

    .bonus-card-description {
        font-size: 13px
    }

    .timer-value {
        font-size: 20px
    }

    .prize-amount {
        font-size: 24px
    }

    .bonuses-actions {
        flex-direction: column;
        gap: 15px
    }

    .btn-bonus-outline {
        width: 70%;
        padding: 12px 20px
    }

    .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;
}