/* Reset and Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-family: 'Nunito', sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    position: relative;
    background-color: #0a1a0a;
    margin: 0;
    font-family: 'Nunito', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0;
    margin-top: 0;
}

p {
    margin-top: 0;
    margin-bottom: 16px;
}

img {
    width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.container,
.ast-container {
    max-width: 1240px;
    width: 100%;
    padding: 0 16px;
    margin: 0 auto;
}

@media (min-width: 769px) {
    .container,
    .ast-container {
        padding: 0 20px;
    }
}

/* Astra page structure */
.hfeed.site {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
}

.site-content {
    flex: 1;
}

.content-area.primary {
    width: 100%;
}

/* Header styles */
.header,
.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: #152d15;
    width: 100%;
}

.main-header-bar-wrap {
    width: 100%;
}

.main-header-bar {
    padding: 16px 0;
}

.header-container,
.site-header__inner,
.main-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-left: 20px;
    padding-right: 20px;
}

.ast-flex {
    display: flex;
    align-items: center;
}

.header-logo,
.site-branding {
    flex-shrink: 0;
}

.ast-site-identity {
    display: flex;
    align-items: center;
}

.site-logo-img {
    display: flex;
    align-items: center;
}

.site-logo-img img {
    max-height: 40px;
}

.header-logo-text,
.site-title a,
.custom-logo-link {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #f1c40f 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.site-title {
    margin: 0;
}

.header-logo-img {
    max-width: 120px;
    height: auto;
    display: block;
}

.ast-main-header-bar-alignment {
    flex: 1;
}

.main-header-bar-navigation {
    display: flex;
    justify-content: flex-end;
}

.ast-flex-grow-1 {
    flex-grow: 1;
}

.navigation-accessibility {
    display: flex;
}

.header-nav,
.main-navigation {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: center;
}

.main-navigation .menu,
.main-navigation .nav-menu,
.main-header-menu,
.ast-nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ast-justify-content-flex-end {
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .header-nav,
    .main-navigation,
    .ast-main-header-bar-alignment {
        display: none;
    }
}

.header-nav-link,
.main-navigation .menu-item a {
    color: #b0b0b0;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.header-nav-link:hover,
.header-nav-link:focus,
.main-navigation .menu-item a:hover,
.main-navigation .menu-item a:focus {
    color: #fff;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .header-actions {
        gap: 8px;
    }
}

/* Button styles */
.btn,
.ast-custom-button-link,
.wp-element-button {
    display: inline-block;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

@media (max-width: 768px) {
    .btn,
    .ast-custom-button-link,
    .wp-element-button {
        padding: 8px 16px;
        font-size: 12px;
    }
}

.btn-registration {
    background-color: #0a1a0a;
    color: #fff;
}

.btn-registration:hover,
.btn-registration:focus {
    background-color: #0a1a0a;
    opacity: 0.9;
}

.btn-play {
    background-color: #27ae60;
    color: #fff;
}

.btn-play:hover,
.btn-play:focus {
    background-color: #229954;
}

.btn-claim {
    background-color: #f1c40f;
    color: #fff;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.btn-claim:hover,
.btn-claim:focus {
    background-color: #d4ac0d;
}

.btn-activate,
.btn-play-now {
    background-color: #27ae60;
    color: #fff;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.btn-activate:hover,
.btn-activate:focus,
.btn-play-now:hover,
.btn-play-now:focus {
    background-color: #229954;
}

/* Main */
.main {
    flex: 1;
}

/* Promo section styles */
.promo-section {
    padding: 40px 0;
}

#promo-section .wp-block-group__inner-container {
    padding: 0;
}

.promo-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
}

@media (max-width: 992px) {
    .promo-grid {
        grid-template-columns: 1fr;
    }
}

.promo-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.promo-card--large {
    min-height: 400px;
}

@media (max-width: 992px) {
    .promo-card--large {
        min-height: 400px;
    }
}

.promo-card--large .promo-card-title {
    font-size: 32px;
}

@media (max-width: 768px) {
    .promo-card--large .promo-card-title {
        font-size: 26px;
    }
}

.promo-card--medium,
.promo-card--small {
    min-height: 400px;
}

@media (max-width: 768px) {
    .promo-card--medium,
    .promo-card--small {
        min-height: 200px;
    }
}

.promo-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.promo-card-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
}

.promo-card-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    color: #fff;
}

.promo-card-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
    color: #fff;
}

@media (max-width: 768px) {
    .promo-card-title {
        font-size: 24px;
    }
}

.promo-card-description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: #fff;
    opacity: 0.95;
}

/* Features section styles */
.features-section {
    padding-top: 0;
    padding-bottom: 40px;
}

#features-section .wp-block-group__inner-container {
    padding: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .features-grid .wp-block-column,
    .promo-grid .wp-block-column {
        width: 100%;
    }
}

.feature-card {
    background-color: #152d15;
    border-radius: 12px;
    padding: 10px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 120px;
    width: 100%;
}

.feature-card-content {
    flex: 1;
}

.feature-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .feature-card-title {
        font-size: 20px;
    }
}

.feature-card-subtitle {
    font-size: 14px;
    color: #b0b0b0;
    margin: 8px 0 0 0;
}

.feature-card-icon {
    flex-shrink: 0;
}

.feature-card-icon-img {
    width: auto;
    height: 80px;
    max-width: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .feature-card-icon-img {
        height: 60px;
    }
}

.feature-card-icon-placeholder {
    font-size: 48px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .feature-card-icon-placeholder {
        font-size: 36px;
        width: 60px;
        height: 60px;
    }
}

/* Content section styles */
.content-section {
    margin-bottom: 60px;
}

#content-section .wp-block-group__inner-container {
    padding: 10px 20px;
}

.content-container {
    padding: 40px;
    color: #fff;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
    .content-container {
        padding: 25px;
    }
}

.entry-content h1 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-top: 20px;
    margin-bottom: 30px;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .entry-content h1 {
        font-size: 28px;
    }
}


/* Article content styles */
.entry-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    margin-top: 40px;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .entry-content h2 {
        font-size: 24px;
    }
}

.entry-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .entry-content h3 {
        font-size: 18px;
    }
}

.entry-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.entry-content p strong {
    color: #fff;
}

.entry-content ul,
.entry-content ol {
    margin: 20px 0;
    padding-left: 25px;
    color: #e0e0e0;
}

.entry-content ul li,
.entry-content ol li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.entry-content ol {
    list-style-type: decimal;
}

.entry-content blockquote {
    font-size: 16px;
    line-height: 1.8;
    color: #e0e0e0;
    font-style: italic;
    margin: 30px 0;
    padding-left: 20px;
    border-left: 3px solid #27ae60;
}

.entry-content table {
    width: 100%;
    border-collapse: collapse;
    background-color: #152d15;
    border-radius: 8px;
    overflow: hidden;
    margin: 30px 0;
}

.entry-content thead {
    background-color: #f1c40f;
}

.entry-content thead th {
    padding: 16px;
    text-align: left;
    font-weight: 600;
    color: #000;
    font-size: 14px;
}

.entry-content tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.entry-content tbody tr:last-child {
    border-bottom: none;
}

.entry-content tbody td {
    padding: 16px;
    color: #fff;
    font-size: 14px;
}


/* FAQ styles */
.faq-list {
    margin-top: 30px;
}

.faq-item {
    background-color: #161c36;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-item-question {
    width: 100%;
    padding: 20px;
    background-color: #152d15;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

.faq-item-question:hover {
    background-color: #3a3545;
}

.faq-item-question-text {
    flex: 1;
}

.faq-item-icon {
    margin-left: 16px;
    transition: transform 0.3s ease;
    font-size: 12px;
    background-color: #060e2a;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.faq-item--active .faq-item-icon {
    transform: rotate(180deg);
}

.faq-item-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-item-answer p {
    padding: 20px 0;
    margin: 0;
    color: #e0e0e0;
    font-size: 16px;
    line-height: 1.8;
}

.faq-item--active .faq-item-answer {
    max-height: 500px;
}

.updated-section {
    margin-top: 20px;
    background-color: #2f3138;
    border-radius: 12px;
    padding: 16px 24px;
}

.updated-section-text {
    margin: 0;
    font-size: 14px;
    color: #fff;
    text-align: left;
}

/* Footer styles */
.footer,
.site-footer {
    background-color: #171C35;
    padding: 60px 0 40px;
    color: #fff;
    margin-top: 60px;
}

.site-footer__inner {
    max-width: 1240px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

.site-footer .site-title a {
    font-size: 20px;
}

.site-info {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

/* Widget styles */
.widget {
    margin-bottom: 0;
}

.widget-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px 0;
}

.widget_nav_menu .menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.widget_nav_menu .menu-item a {
    font-size: 14px;
    color: #b0b0b0;
    transition: color 0.3s ease;
}

.widget_nav_menu .menu-item a:hover,
.widget_nav_menu .menu-item a:focus {
    color: #fff;
}

.textwidget {
    margin: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 2fr;
    gap: 40px;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #f1c40f 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo img,
.footer-logo-img {
    max-width: 100%;
    width: auto;
    height: auto;
    display: block;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: #b0b0b0;
    margin: 0;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 14px;
    color: #b0b0b0;
    transition: color 0.3s ease;
}

.footer-link:hover,
.footer-link:focus {
    color: #fff;
}

.footer-right {
    display: flex;
    flex-direction: column;
}

.footer-responsibility {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-responsibility-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.footer-responsibility-image {
    margin-top: 0;
}

.footer-responsibility-img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
}

.footer-responsibility-placeholder {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-responsibility-placeholder span {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 14px;
    color: #b0b0b0;
}

.footer-bottom {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 40px;
    padding-top: 40px;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 30px;
        margin-top: 40px;
        padding-top: 30px;
    }
}

.footer-payment {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 28%;
}

@media (max-width: 768px) {
    .footer-payment {
        width: 100%;
    }
}

.footer-payment-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.footer-payment-img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
}

.footer-payment-placeholder {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-payment-placeholder span {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 12px;
    color: #b0b0b0;
}

.footer-download {
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 24px;
    height: auto;
    width: 70%;
}

@media (max-width: 768px) {
    .footer-download {
        flex-direction: column;
        width: 100%;
    }
}

.footer-download-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .footer-download-title {
        white-space: normal;
    }
}

.footer-download-buttons {
    display: flex;
    gap: 16px;
    width: 100%;
}

@media (max-width: 768px) {
    .footer-download-buttons {
        flex-direction: column;
    }
}

.footer-download-btn {
    flex: 1;
    background-color: #ff6b35;
    border-radius: 8px;
    padding: 9px 24px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: background-color 0.3s ease;
    width: 100%;
}

.footer-download-btn:hover,
.footer-download-btn:focus {
    background-color: #e55a2b;
}

.footer-download-btn-text {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.footer-download-btn-subtext {
    font-size: 12px;
    color: #fff;
    opacity: 0.9;
}

.footer-copyright {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-copyright-text {
    font-size: 14px;
    color: #b0b0b0;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .footer-copyright-text {
        font-size: 12px;
    }
}

/* ========================================
   ADDITIONAL MOBILE STYLES
   ======================================== */

/* Skip Link */
.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link:focus {
    position: fixed;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    padding: 10px 20px;
    background: #f1c40f;
    color: #000;
    z-index: 100000;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* ============================================
   MOBILE MENU - Pure CSS (checkbox hack)
   ============================================ */

/* Скрыть checkbox визуально */
.mobile-menu-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* Контейнер кнопки бургер - скрыт на десктопе */
.ast-mobile-menu-buttons {
    display: none;
}

/* Кнопка бургер */
.menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    justify-content: center;
    align-items: center;
}

/* Иконка бургера - средняя линия */
.menu-toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #fff;
    position: relative;
    transition: background-color 0.3s ease;
}

/* Верхняя и нижняя линии */
.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: #fff;
    transition: transform 0.3s ease, top 0.3s ease;
}

.menu-toggle-icon::before {
    top: -7px;
}

.menu-toggle-icon::after {
    top: 7px;
}

/* ============================================
   MOBILE STYLES (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
    .header-container,
    .site-header__inner,
    .main-header-container {
        flex-wrap: wrap;
    }

    .header-logo,
    .site-branding {
        order: 1;
    }

    .header-actions,
    .ast-header-custom-item {
        order: 2;
        gap: 8px;
    }

    .header-actions .btn-registration {
        display: none;
    }

    /* Показать контейнер и кнопку бургер */
    .ast-mobile-menu-buttons {
        display: flex;
        order: 3;
    }

    .menu-toggle {
        display: flex;
    }

    /* Скрыть навигацию по умолчанию */
    .header-nav,
    .main-navigation,
    .ast-main-header-bar-alignment {
        display: none;
        order: 4;
        width: 100%;
        flex: none; /* Переопределяем flex: 1 из базовых стилей */
        flex-direction: column;
        padding: 10px 0;
        border: none;
        margin-top: 0;
    }

    /* === ПОКАЗАТЬ меню когда checkbox checked === */
    #mobile-menu-toggle:checked ~ .ast-main-header-bar-alignment {
        display: flex;
        width: 100%;
        flex: none;
    }

    #mobile-menu-toggle:checked ~ .ast-main-header-bar-alignment .main-navigation,
    #mobile-menu-toggle:checked ~ .ast-main-header-bar-alignment .main-header-bar-navigation {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    /* === АНИМАЦИЯ: бургер → X === */
    #mobile-menu-toggle:checked ~ .ast-mobile-menu-buttons .menu-toggle-icon {
        background-color: transparent;
    }

    #mobile-menu-toggle:checked ~ .ast-mobile-menu-buttons .menu-toggle-icon::before {
        top: 0;
        transform: rotate(45deg);
    }

    #mobile-menu-toggle:checked ~ .ast-mobile-menu-buttons .menu-toggle-icon::after {
        top: 0;
        transform: rotate(-45deg);
    }

    /* Меню вертикально */
    .main-navigation .menu,
    .main-navigation .nav-menu,
    .main-header-menu,
    .ast-nav-menu {
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }

    .header-nav-link,
    .main-navigation .menu-item a,
    .main-header-menu .menu-item a,
    .ast-nav-menu .menu-item a {
        font-size: 18px;
        padding: 8px 0;
    }
}

/* Promo Section Mobile */
@media (max-width: 768px) {
    .promo-section {
        padding: 20px 0;
    }

    .promo-grid {
        gap: 16px;
    }

    .promo-card-content {
        padding: 20px;
    }

    .promo-card-description {
        font-size: 13px;
        margin-bottom: 16px;
    }
}

/* Features Section Mobile */
@media (max-width: 768px) {
    .features-section {
        padding-bottom: 20px;
    }

    .features-grid {
        gap: 12px;
    }

    .feature-card {
        padding: 10px 20px;
        min-height: 100px;
    }
}

/* Content Section Mobile */
@media (max-width: 768px) {
    .content-section {
        margin-bottom: 30px;
    }

    .content-container {
        padding: 40px 16px 20px 16px;
        border-radius: 12px;
    }

    .entry-content h1 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .entry-content h2 {
        font-size: 22px;
    }

    .entry-content h3 {
        font-size: 16px;
        margin-top: 20px;
    }

    .entry-content p {
        font-size: 14px;
    }

    .entry-content ul,
    .entry-content ol {
        padding-left: 20px;
    }

    .entry-content ul li,
    .entry-content ol li {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .entry-content blockquote {
        font-size: 14px;
        margin: 20px 0;
        padding-left: 16px;
    }

    .btn-claim {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        max-width: 280px;
    }
}

/* Table Mobile */
@media (max-width: 768px) {
    .entry-content table {
        margin: 20px 0;
    }

    .entry-content thead th {
        padding: 12px 10px;
        font-size: 12px;
    }

    .entry-content tbody td {
        padding: 12px 10px;
        font-size: 12px;
    }
}

/* FAQ Mobile */
@media (max-width: 768px) {
    .faq-list {
        margin-top: 20px;
    }

    .faq-item {
        margin-bottom: 8px;
    }

    .faq-item-question {
        padding: 16px;
        font-size: 14px;
    }

    .faq-item-icon {
        width: 26px;
        height: 26px;
        font-size: 10px;
    }

    .faq-item-answer {
        padding: 0 16px;
    }

    .faq-item-answer p {
        padding: 16px 0;
        font-size: 14px;
    }
}

/* Updated Section Mobile */
@media (max-width: 768px) {
    .updated-section {
        padding: 12px 16px;
    }

    .updated-section-text {
        font-size: 12px;
    }
}

/* Footer Mobile */
@media (max-width: 768px) {
    .footer,
    .site-footer {
        padding: 40px 0 30px;
        margin-top: 30px;
    }

    .footer-logo-text,
    .site-footer .site-title a {
        font-size: 18px;
    }

    .footer-description {
        font-size: 13px;
    }

    .footer-responsibility-title,
    .footer-payment-title {
        font-size: 16px;
    }

    .footer-download {
        padding: 20px;
        gap: 16px;
    }

    .footer-download-title {
        font-size: 18px;
        text-align: center;
    }

    .footer-download-btn {
        padding: 12px 20px;
    }

    .footer-copyright {
        margin-top: 30px;
        padding-top: 20px;
    }
}

/* Extra Small Screens */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .header-container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .header-logo-text {
        font-size: 20px;
    }

    .promo-card-title {
        font-size: 20px;
    }

    .promo-card--large .promo-card-title {
        font-size: 22px;
    }

    .entry-content h1 {
        font-size: 20px;
    }

    .entry-content h2 {
        font-size: 18px;
    }

    .feature-card-title {
        font-size: 18px;
    }
}
