/* Casino Site Styles - Optimized Sidebar Layout */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #E63946;
    --primary-red-dark: #C1121F;
    --accent-gold: #F4A261;
    --dark-bg: #1a1a1a;
    --sidebar-bg: #2a2a2a;
    --light-gray: #fafafa;
    --text-dark: #333;
    --text-light: #fff;
    --border-color: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--light-gray);
    overflow-x: hidden;
}

/* Top Header Bar */
.top-header-bar {
    position: fixed;
    top: 0;
    left: 260px;
    right: 0;
    height: 60px;
    background: var(--text-light);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 20px;
    z-index: 1000;
}

.header-actions {
    display: flex;
    gap: 12px;
}

.btn-primary {
    background: var(--primary-red);
    color: #ffffff !important;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s;
    font-size: 14px;
}

.btn-primary:hover {
    background: var(--primary-red-dark);
}

/* Mobile Burger Menu */
.mobile-burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
    width: 40px;
    height: 40px;
    justify-content: center;
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1001;
}

.mobile-burger span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s;
}

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

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

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

/* Sidebar Navigation */
.sidebar-navigation {
    position: fixed;
    left: 0;
    top: 0;
    width: 260px;
    height: 100vh;
    background: var(--sidebar-bg);
    overflow-y: auto;
    z-index: 999;
    transition: transform 0.3s ease;
}

.sidebar-logo {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.sidebar-menu {
    list-style: none;
    padding: 20px 0;
}

.sidebar-menu-item {
    margin-bottom: 4px;
}

.sidebar-menu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.2s;
    position: relative;
}

.sidebar-menu-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.sidebar-menu-link.active {
    background: rgba(230, 57, 70, 0.2);
    color: var(--text-light);
    border-left: 3px solid var(--primary-red);
}

.sidebar-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex-shrink: 0;
}

/* Main Content Area */
.main-content-wrapper {
    margin-left: 260px;
    margin-top: 60px;
    padding: 0 30px 30px 30px;
    min-height: calc(100vh - 60px);
}

/* Promotional Banners */
.promotional-banners {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.promo-banner {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--primary-red);
    min-height: 200px;
    display: flex;
    align-items: center;
    padding: 30px;
    color: var(--text-light);
}

.promo-banner-image {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: auto;
    opacity: 0.9;
    object-fit: cover;
}

.promo-banner-content {
    position: relative;
    z-index: 2;
    max-width: 60%;
}

.promo-banner-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.promo-banner-text {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.95;
}

.promo-banner-btn {
    background: var(--text-light);
    color: var(--primary-red);
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s;
}

.promo-banner-btn:hover {
    transform: translateY(-2px);
}

/* Category Tabs */
.category-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.category-tab {
    padding: 10px 20px;
    background: var(--text-light);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.2s;
    font-size: 14px;
}

.category-tab:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

.category-tab.active {
    background: var(--primary-red);
    color: var(--text-light);
    border-color: var(--primary-red);
}

/* Filter Pills */
.filter-pills {
    display: flex;
    gap: 8px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-pill {
    padding: 8px 16px;
    background: var(--text-light);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 14px;
    transition: all 0.2s;
}

.filter-pill:hover {
    background: var(--light-gray);
    border-color: var(--primary-red);
}

/* Game Sections */
.game-section {
    margin-bottom: 40px;
}

/* Bonuses Section */
.bonuses-section {
    margin-bottom: 40px;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.bonus-card {
    background: var(--text-light);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.bonus-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--light-gray);
}

.bonus-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

.bonus-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

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

.bonus-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-red);
    margin: 4px 0;
}

.bonus-value strong {
    color: var(--primary-red);
}

.bonus-category {
    margin-top: auto;
}

.bonus-category-badge {
    display: inline-block;
    padding: 6px 12px;
    background: var(--light-gray);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bonus-terms {
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}

.bonus-terms small {
    font-size: 12px;
    color: #777;
    line-height: 1.5;
    display: block;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

.show-all-btn {
    padding: 8px 16px;
    background: var(--text-light);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 14px;
    transition: all 0.2s;
}

.show-all-btn:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

/* Games Carousel */
.games-carousel {
    position: relative;
    overflow: hidden;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

.game-card {
    background: var(--text-light);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s;
    border: 1px solid var(--border-color);
}

.game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.game-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.game-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.game-card.active .game-image {
    transform: scale(1.05);
}

.game-play-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-red);
    color: var(--text-light);
    padding: 14px 20px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 10;
    border: none;
    cursor: pointer;
    display: block;
    width: 100%;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
    -webkit-tap-highlight-color: transparent;
}

.game-card.active .game-play-btn {
    transform: translateY(0);
}

.game-play-btn:hover,
.game-play-btn:active {
    background: var(--primary-red-dark);
}

.game-title {
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    gap: 10px;
    align-items: center;
}

.carousel-btn {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    background: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    font-size: 18px;
}

.carousel-btn:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

/* Text Content */
.text-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 40px 50px 40px;
    line-height: 1.7;
    background: var(--text-light);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.text-content h1 {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 24px 0;
    color: var(--text-dark);
    line-height: 1.3;
}

.text-content h2 {
    font-size: 28px;
    font-weight: 600;
    margin: 40px 0 20px 0;
    color: var(--text-dark);
    line-height: 1.4;
    padding-top: 10px;
}

.text-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 32px 0 16px 0;
    color: var(--text-dark);
    line-height: 1.4;
}

.text-content p {
    margin-bottom: 18px;
    line-height: 1.75;
    color: #444;
}

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

.text-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 24px 0;
    display: block;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.text-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    background: var(--text-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.text-content th,
.text-content td {
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    text-align: left;
    font-size: 14px;
}

.text-content th {
    background: var(--light-gray);
    font-weight: 600;
    color: var(--text-dark);
    border-bottom: 2px solid var(--border-color);
}

.text-content tbody tr {
    transition: background-color 0.2s ease;
}

.text-content tbody tr:hover {
    background-color: #fafafa;
}

.text-content tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.text-content tbody tr:nth-child(even):hover {
    background-color: #f5f5f5;
}

.text-content ul,
.text-content ol {
    margin: 24px 0;
    padding-left: 0;
    line-height: 1.8;
    list-style: none;
}

.text-content ul li,
.text-content ol li {
    margin-bottom: 12px;
    color: #444;
    padding-left: 32px;
    position: relative;
}

.text-content ul li:last-child,
.text-content ol li:last-child {
    margin-bottom: 0;
}

.text-content ul li::before {
    content: "•";
    position: absolute;
    left: 12px;
    color: var(--primary-red);
    font-weight: bold;
    font-size: 20px;
    line-height: 1.4;
}

.text-content ol {
    counter-reset: list-counter;
}

.text-content ol li {
    counter-increment: list-counter;
}

.text-content ol li::before {
    content: counter(list-counter) ".";
    position: absolute;
    left: 8px;
    color: var(--primary-red);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.6;
}

.list-container {
    margin: 24px 0;
}

.list-container ul,
.list-container ol {
    margin: 24px 0;
    padding-left: 0;
    line-height: 1.8;
    list-style: none;
}

.list-container ul li,
.list-container ol li {
    margin-bottom: 12px;
    color: #444;
    padding-left: 32px;
    position: relative;
    background: var(--light-gray);
    padding: 14px 16px 14px 40px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.list-container ul li:hover,
.list-container ol li:hover {
    background: #f0f0f0;
    transform: translateX(4px);
}

.list-container ul li:last-child,
.list-container ol li:last-child {
    margin-bottom: 0;
}

.list-container ul li::before {
    content: "•";
    position: absolute;
    left: 18px;
    color: var(--primary-red);
    font-weight: bold;
    font-size: 20px;
    line-height: 1.4;
}

.list-container ol {
    counter-reset: list-counter;
}

.list-container ol li {
    counter-increment: list-counter;
}

.list-container ol li::before {
    content: counter(list-counter) ".";
    position: absolute;
    left: 16px;
    color: var(--primary-red);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.6;
}

.text-content a {
    color: var(--primary-red);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.text-content a:hover {
    color: var(--primary-red-dark);
    text-decoration: none;
}

.text-content blockquote {
    margin: 24px 0;
    padding: 16px 20px;
    border-left: 4px solid var(--primary-red);
    background: #f9f9f9;
    border-radius: 4px;
    font-style: italic;
    color: #555;
}

.text-content strong {
    font-weight: 600;
    color: var(--text-dark);
}

.text-content em {
    font-style: italic;
}

.text-content code {
    background: #f4f4f4;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.9em;
    font-family: 'Courier New', monospace;
}

.text-content pre {
    background: #f4f4f4;
    padding: 16px;
    border-radius: 6px;
    overflow-x: auto;
    margin: 20px 0;
}

.text-content hr {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 32px 0;
}

/* FAQ Styles */
.faq-wrapper {
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item-block {
    background: var(--light-gray);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-item-block:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.faq-question-block {
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.05) 0%, rgba(230, 57, 70, 0.02) 100%);
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: all 0.2s ease;
}

.faq-question-block:hover {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.08) 0%, rgba(230, 57, 70, 0.04) 100%);
}

.faq-question-block strong {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.5;
}

.faq-question-block strong::before {
    content: "?";
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
    line-height: 1;
}

.faq-answer-block {
    padding: 20px 24px;
    color: #555;
    line-height: 1.7;
    font-size: 15px;
    background: var(--text-light);
}

.faq-answer-block p {
    margin: 0 0 12px 0;
}

.faq-answer-block p:last-child {
    margin-bottom: 0;
}

/* HowTo Styles */
.howto-wrapper {
    margin: 32px 0;
    padding: 30px;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.03) 0%, rgba(244, 162, 97, 0.03) 100%);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.howto-steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.howto-step-item {
    counter-increment: step-counter;
    background: var(--text-light);
    padding: 24px 28px 24px 80px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-red);
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.howto-step-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-left-color: var(--primary-red-dark);
}

.howto-step-item::before {
    content: counter(step-counter);
    position: absolute;
    left: 24px;
    top: 24px;
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(230, 57, 70, 0.3);
}

.howto-step-item strong {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.howto-step-item p {
    margin: 0;
    color: #555;
    line-height: 1.7;
    font-size: 15px;
}

/* Breadcrumbs */
.breadcrumb-nav {
    margin: 10px 0 20px 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    flex-wrap: wrap;
    width: 100%;
}

.breadcrumb-link {
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
    padding: 2px 0;
}

.breadcrumb-link:hover {
    color: var(--primary-red);
}

.breadcrumb-divider {
    color: #999;
    margin: 0 2px;
}

/* Payment Methods Section */
.payment-methods-section {
    margin: 50px 0;
    padding: 40px 0;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.payment-method-card {
    background: var(--text-light);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    cursor: pointer;
    min-height: 140px;
}

.payment-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-red);
}

.payment-method-image-wrapper {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.payment-method-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.payment-method-card:hover .payment-method-image {
    filter: grayscale(0%);
}

.payment-method-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    margin-top: auto;
}

@media (max-width: 768px) {
    .payment-methods-section {
        margin: 30px 0;
        padding: 30px 0;
    }
    
    .payment-methods-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 15px;
        margin-top: 20px;
    }
    
    .payment-method-card {
        padding: 15px;
        min-height: 120px;
    }
    
    .payment-method-image-wrapper {
        height: 60px;
        margin-bottom: 10px;
    }
    
    .payment-method-name {
        font-size: 12px;
    }
}

/* Footer */
.site-footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 40px 30px 20px;
    margin-top: 60px;
    margin-left: 260px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--text-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Mobile Styles */
@media (max-width: 992px) {
    .mobile-burger {
        display: flex;
    }

    .top-header-bar {
        left: 0;
        justify-content: center;
        padding-left: 60px;
        padding-right: 60px;
    }

    .sidebar-navigation {
        transform: translateX(-100%);
    }

    .sidebar-navigation.open {
        transform: translateX(0);
    }

    .sidebar-logo {
        padding-top: 80px;
    }

    .main-content-wrapper {
        margin-left: 0;
        padding: 0 15px 20px 15px;
        margin-top: 60px;
    }

    .site-footer {
        margin-left: 0;
    }

    .promotional-banners {
        grid-template-columns: 1fr;
        margin-top: 20px;
    }

    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }

    .bonuses-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .top-header-bar {
        padding: 0 15px;
        padding-left: 60px;
        padding-right: 60px;
        justify-content: center;
    }

    .header-actions {
        gap: 8px;
        justify-content: center;
        width: 100%;
    }

    .btn-primary {
        padding: 8px 16px;
        font-size: 13px;
    }

    .main-content-wrapper {
        padding: 0 15px 15px 15px;
    }

    .sidebar-logo {
        padding-top: 70px;
    }

    .promotional-banners {
        margin-top: 15px;
    }

    .promo-banner {
        min-height: 160px;
        padding: 20px;
    }

    .promo-banner-content {
        max-width: 100%;
        text-align: center;
    }

    .promo-banner-title {
        font-size: 20px;
    }

    .promo-banner-text {
        font-size: 14px;
    }

    .promo-banner-btn {
        display: block;
        margin: 0 auto;
        text-align: center;
    }

    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 12px;
    }

    .bonuses-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .bonus-image-wrapper {
        height: 160px;
    }

    .bonus-content {
        padding: 16px;
        gap: 10px;
    }

    .bonus-name {
        font-size: 18px;
    }

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

    .bonus-value {
        font-size: 16px;
    }
}

    .game-image-wrapper {
        height: 200px;
    }
    
    .game-image {
        height: 100%;
    }
    
    .game-play-btn {
        padding: 12px 16px;
        font-size: 14px;
    }

    .breadcrumb-nav {
        margin: 10px 0 15px 0;
        padding: 0;
        font-size: 13px;
    }

    .text-content {
        padding: 20px 20px 30px 20px;
    }
    
    .faq-question-block {
        padding: 16px 18px;
    }
    
    .faq-question-block strong {
        font-size: 16px;
    }
    
    .faq-answer-block {
        padding: 16px 18px;
        font-size: 14px;
    }
    
    .howto-wrapper {
        padding: 20px;
    }
    
    .howto-step-item {
        padding: 20px 20px 20px 70px;
    }
    
    .howto-step-item::before {
        left: 18px;
        top: 20px;
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .howto-step-item strong {
        font-size: 16px;
    }
    
    .howto-step-item p {
        font-size: 14px;
    }
    
    .list-container ul li,
    .list-container ol li {
        padding: 12px 14px 12px 36px;
    }

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

    .text-content h2 {
        font-size: 24px;
        margin: 32px 0 16px 0;
    }

    .text-content h3 {
        font-size: 20px;
        margin: 28px 0 14px 0;
    }

    .text-content p {
        margin-bottom: 16px;
        line-height: 1.7;
    }

    .text-content table {
        margin: 20px 0;
        font-size: 13px;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .text-content th,
    .text-content td {
        padding: 10px 12px;
        font-size: 13px;
    }

    .text-content ul,
    .text-content ol {
        padding-left: 24px;
        margin: 18px 0;
    }

    .text-content img {
        margin: 20px 0;
    }
}

/* Mobile Sidebar Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

.mobile-overlay.active {
    display: block;
}

@media (min-width: 993px) {
    .mobile-overlay {
        display: none !important;
    }
}

/* App Info Table Styles */
.app-info-table-wrapper {
    margin: 30px 0 40px 0;
}

.app-info-table-container {
    background: var(--text-light);
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.app-info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.app-info-row {
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.2s ease;
}

.app-info-row:last-child {
    border-bottom: none;
}

.app-info-row:hover {
    background-color: #fafafa;
}

.app-info-label-cell {
    width: 60px;
    padding: 18px 20px;
    vertical-align: top;
    text-align: center;
}

.app-info-label-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border-radius: 8px;
    margin: 0 auto;
}

.app-info-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-red);
    flex-shrink: 0;
}

.app-info-value-cell {
    padding: 18px 20px;
    vertical-align: middle;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
}

.app-name-with-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.app-name-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 8px;
    flex-shrink: 0;
}

.app-name-text {
    font-weight: 600;
    font-size: 16px;
    color: var(--text-dark);
}

.app-download-link {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary-red);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.2s ease;
    font-size: 14px;
}

.app-download-link:hover {
    background: var(--primary-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

@media (max-width: 768px) {
    .app-info-table-wrapper {
        margin: 20px 0 30px 0;
    }

    .app-info-table-container {
        border-radius: 8px;
        overflow-x: auto;
    }

    .app-info-label-cell {
        width: 50px;
        padding: 14px 12px;
    }

    .app-info-label-wrapper {
        width: 36px;
        height: 36px;
    }

    .app-info-icon {
        width: 18px;
        height: 18px;
    }

    .app-info-value-cell {
        padding: 14px 12px;
        font-size: 14px;
    }

    .app-name-logo {
        width: 40px;
        height: 40px;
    }

    .app-name-text {
        font-size: 15px;
    }

    .app-download-link {
        padding: 8px 16px;
        font-size: 13px;
    }
}
