/* Casino Theme Styles - Unique Structure */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #1e473e;
    --primary-accent: #fdd25a;
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-secondary: #2a5a4f;
    --border-color: #3a6a5f;
}

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

/* Top Action Bar */
.site-top-actions {
    background: var(--primary-dark);
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.action-button-primary {
    background: linear-gradient(135deg, #fdd25a 0%, #ffb800 100%);
    color: var(--text-dark);
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(253, 210, 90, 0.4), 0 0 20px rgba(255, 184, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.action-button-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.action-button-primary:hover::before {
    left: 100%;
}

.action-button-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(253, 210, 90, 0.6), 0 0 30px rgba(255, 184, 0, 0.4);
    background: linear-gradient(135deg, #ffb800 0%, #fdd25a 100%);
}

.action-button-secondary {
    background: transparent;
    color: var(--primary-accent);
    padding: 10px 20px;
    border: 2px solid var(--primary-accent);
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.action-button-secondary:hover {
    background: rgba(253, 210, 90, 0.1);
    color: var(--primary-accent);
    border-color: var(--primary-accent);
    opacity: 1;
    transform: translateY(-1px);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
}

/* Header Logo */
.header-logo-container {
    display: flex;
    align-items: center;
}

.header-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-logo-image {
    max-height: 50px;
    width: auto;
    display: block;
}

.header-logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-accent);
}

/* Main Content Container */
.page-content-container {
    margin-left: 0;
    min-height: 100vh;
    background: var(--primary-dark);
    width: 100%;
}

/* Hero Banner Section */
.hero-promotion-section {
    position: relative;
    margin-bottom: 32px;
    overflow: hidden;
}

.hero-banner-container {
    position: relative;
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2a5a4f 100%);
}

.hero-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.4;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-title-text {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description-text {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-cta-button {
    display: inline-block;
    background: var(--primary-accent);
    color: var(--text-dark);
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(253, 210, 90, 0.4);
}

.hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(253, 210, 90, 0.5);
}

/* Category Filter Bar */
.game-category-filter {
    background: var(--bg-secondary);
    padding: 16px 20px;
    margin-bottom: 24px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.game-category-list {
    display: flex;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: max-content;
}

.game-category-item {
    flex-shrink: 0;
}

.game-category-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--primary-dark);
    color: var(--text-light);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.2s;
}

.game-category-button:hover,
.game-category-button.active {
    background: var(--primary-accent);
    color: var(--text-dark);
    border-color: var(--primary-accent);
}

.game-category-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Games Section */
.gaming-collection-section {
    margin-bottom: 48px;
    padding: 0 20px;
}

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

.section-heading {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-heading-icon {
    width: 24px;
    height: 24px;
    fill: var(--primary-accent);
}

.section-view-more {
    color: var(--primary-accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

.section-view-more:hover {
    gap: 10px;
}

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

.game-item-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.game-item-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-accent);
}

.game-thumbnail-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 275 / 385;
    overflow: hidden;
    background: var(--primary-dark);
}

.game-thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.game-play-action {
    display: block;
    width: 100%;
    background: var(--primary-accent);
    color: var(--text-dark);
    padding: 12px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: background 0.2s;
    border: none;
    margin-top: 0;
}

.game-play-action:hover {
    background: #ffd966;
}

.game-name-label {
    padding: 10px 12px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
}

/* Text Content Area */
.content-text-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    color: var(--text-light);
    background: linear-gradient(135deg, rgba(30, 71, 62, 0.3) 0%, rgba(42, 90, 79, 0.2) 100%);
    border-radius: 16px;
    position: relative;
}

.content-text-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 10% 20%, rgba(253, 210, 90, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(253, 210, 90, 0.05) 0%, transparent 50%);
    border-radius: 16px;
    pointer-events: none;
    z-index: 0;
}

.content-text-section > * {
    position: relative;
    z-index: 1;
}

.content-text-section h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 32px;
    color: var(--primary-accent);
    text-shadow: 0 2px 8px rgba(253, 210, 90, 0.3);
    padding-bottom: 16px;
    border-bottom: 3px solid rgba(253, 210, 90, 0.3);
    letter-spacing: -0.5px;
}

.content-text-section h2 {
    font-size: 30px;
    font-weight: 700;
    margin: 48px 0 24px 0;
    color: var(--primary-accent);
    padding: 16px 20px;
    background: rgba(253, 210, 90, 0.1);
    border-left: 4px solid var(--primary-accent);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(253, 210, 90, 0.15);
}

.content-text-section h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 36px 0 18px 0;
    color: var(--text-light);
    padding: 12px 16px;
    background: rgba(42, 90, 79, 0.4);
    border-left: 3px solid var(--primary-accent);
    border-radius: 6px;
}

.content-text-section p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
    padding: 12px 16px;
    background: rgba(42, 90, 79, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(253, 210, 90, 0.1);
    transition: all 0.3s ease;
}

.content-text-section p:hover {
    background: rgba(42, 90, 79, 0.5);
    border-color: rgba(253, 210, 90, 0.3);
    transform: translateX(2px);
}

.content-text-section img {
    max-width: 100%;
    height: auto;
    margin: 28px 0;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(253, 210, 90, 0.2);
}

/* Table Wrapper for Mobile Scroll */
.table-scroll-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 24px 0;
    border-radius: 8px;
}

.content-text-section table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    background: var(--bg-secondary);
    border-radius: 8px;
    overflow: hidden;
}

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

.content-text-section th {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2a5a4f 100%);
    font-weight: 700;
    color: var(--primary-accent);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.content-text-section td {
    background: rgba(42, 90, 79, 0.3);
    transition: background 0.2s;
}

.content-text-section tr:hover td {
    background: rgba(42, 90, 79, 0.5);
}

.content-text-section ul,
.content-text-section ol {
    margin: 28px 0;
    padding: 20px 24px 20px 40px;
    background: rgba(42, 90, 79, 0.4);
    border-radius: 10px;
    border: 1px solid rgba(253, 210, 90, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    list-style: none;
}

.content-text-section ul li,
.content-text-section ol li {
    margin-bottom: 12px;
    line-height: 1.8;
    padding: 8px 12px;
    background: rgba(30, 71, 62, 0.3);
    border-radius: 6px;
    border-left: 3px solid var(--primary-accent);
    transition: all 0.3s ease;
}

.content-text-section ul li:hover,
.content-text-section ol li:hover {
    background: rgba(30, 71, 62, 0.6);
    transform: translateX(4px);
    border-left-color: #ffd966;
}

.content-text-section a {
    color: var(--primary-accent);
    text-decoration: none;
    font-weight: 600;
    padding: 2px 6px;
    background: rgba(253, 210, 90, 0.15);
    border-radius: 4px;
    border-bottom: 2px solid var(--primary-accent);
    transition: all 0.3s ease;
    display: inline-block;
}

.content-text-section a:hover {
    color: var(--text-dark);
    background: var(--primary-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(253, 210, 90, 0.4);
    border-bottom-color: transparent;
}

.content-text-section a strong {
    font-weight: 700;
}

.content-text-section blockquote {
    margin: 28px 0;
    padding: 24px 28px;
    border-left: 5px solid var(--primary-accent);
    background: linear-gradient(135deg, rgba(253, 210, 90, 0.15) 0%, rgba(42, 90, 79, 0.4) 100%);
    border-radius: 0 12px 12px 0;
    box-shadow: 0 6px 20px rgba(253, 210, 90, 0.2);
    font-style: italic;
    position: relative;
}

.content-text-section blockquote::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 48px;
    color: var(--primary-accent);
    opacity: 0.3;
    font-family: Georgia, serif;
}

/* FAQ Styles */
.faq-container {
    margin: 24px 0;
}

.faq-item {
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    margin-bottom: 16px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 18px 20px;
    background: var(--primary-dark);
    border-bottom: 2px solid var(--border-color);
}

.faq-question strong {
    font-size: 18px;
    color: var(--text-light);
}

.faq-answer {
    padding: 18px 20px;
    color: var(--text-light);
    line-height: 1.7;
}

/* HowTo Styles */
.howto-container {
    margin: 24px 0;
    padding: 24px;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 12px;
}

.howto-steps {
    list-style: none;
    padding: 0;
    counter-reset: step;
}

.howto-step {
    counter-increment: step;
    padding: 20px;
    margin-bottom: 16px;
    background: var(--primary-dark);
    border-left: 4px solid var(--primary-accent);
    border-radius: 0 8px 8px 0;
    position: relative;
}

.howto-step::before {
    content: counter(step) ".";
    position: absolute;
    left: -30px;
    top: 20px;
    font-weight: 700;
    font-size: 20px;
    color: var(--primary-accent);
}

.howto-step strong {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary-accent);
}

/* Payment Methods */
.payment-options-section {
    margin: 40px 0;
    padding: 0 20px;
}

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

.payment-option-card {
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    padding: 12px;
    text-align: center;
    border-radius: 8px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-option-card:hover {
    border-color: var(--primary-accent);
    transform: translateY(-2px);
}

.payment-option-image {
    max-width: 100%;
    height: auto;
    max-height: 40px;
    object-fit: contain;
}

/* Footer */
.site-footer-section {
    background: var(--bg-secondary);
    border-top: 2px solid var(--border-color);
    padding: 40px 20px 24px;
    margin-top: 60px;
    margin-left: 0;
}

.footer-payment-methods-wrapper {
    max-width: 1200px;
    margin: 0 auto 40px;
    text-align: center;
}

.footer-payment-methods-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-accent);
}

.footer-payment-methods-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-payment-method-card {
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    padding: 12px;
    text-align: center;
    border-radius: 8px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
}

.footer-payment-method-card:hover {
    border-color: var(--primary-accent);
    transform: translateY(-2px);
}

.footer-payment-method-image {
    max-width: 100%;
    height: auto;
    max-height: 40px;
    object-fit: contain;
}

.footer-content-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.footer-column-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-accent);
}

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

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

.footer-links-list a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links-list a:hover {
    color: var(--primary-accent);
}

.footer-bottom-bar {
    text-align: center;
    padding-top: 24px;
    border-top: 2px solid var(--border-color);
    font-size: 13px;
    color: #999;
}

.footer-compliance {
    margin-bottom: 20px;
}

.footer-compliance-list {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

.footer-compliance-item {
    margin: 0;
}

.compliance-image {
    max-width: 120px;
    height: auto;
    display: block;
}

/* App Download Block */
.footer-app-download {
    grid-column: 1 / -1;
    margin-bottom: 32px;
}

.app-download-card {
    background: linear-gradient(135deg, rgba(253, 210, 90, 0.1) 0%, rgba(253, 210, 90, 0.05) 100%);
    border: 2px solid var(--primary-accent);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.app-download-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(253, 210, 90, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

.app-download-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(253, 210, 90, 0.3);
    border-color: #ffd966;
}

.app-download-card:hover::before {
    opacity: 1;
}

.app-download-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.app-download-logo {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    overflow: hidden;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--primary-accent);
}

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

.app-download-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px;
    background: linear-gradient(135deg, #3DDC84 0%, #2BB673 100%);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(61, 220, 132, 0.4);
    min-width: 80px;
}

.app-download-icon svg {
    width: 56px;
    height: 56px;
    color: #ffffff;
    display: block;
}

.android-badge {
    font-size: 10px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(0, 0, 0, 0.25);
    padding: 3px 8px;
    border-radius: 6px;
    white-space: nowrap;
}

.app-download-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.app-download-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-accent);
    margin: 0;
    line-height: 1.3;
}

.app-download-description {
    font-size: 14px;
    color: var(--text-light);
    opacity: 0.9;
    margin: 0;
    line-height: 1.5;
}

.app-download-info {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 4px;
}

.app-info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}

.app-info-label {
    color: var(--text-light);
    opacity: 0.7;
    font-weight: 500;
}

.app-info-value {
    color: var(--primary-accent);
    font-weight: 600;
    background: rgba(253, 210, 90, 0.15);
    padding: 2px 8px;
    border-radius: 6px;
}

.app-download-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--primary-accent);
    color: var(--text-dark);
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    margin-top: 8px;
    align-self: flex-start;
    box-shadow: 0 4px 12px rgba(253, 210, 90, 0.4);
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 2;
    pointer-events: auto;
}

.app-download-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(253, 210, 90, 0.5);
    background: #ffd966;
}

.app-download-button:active {
    transform: translateY(0);
}

.app-download-button-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .app-download-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .app-download-left {
        width: 100%;
        flex-direction: row;
        justify-content: center;
    }
    
    .app-download-content {
        align-items: center;
        text-align: center;
    }
    
    .app-download-info {
        justify-content: center;
        flex-direction: column;
        gap: 8px;
    }
    
    .app-info-item {
        justify-content: center;
    }
    
    .app-download-button {
        align-self: center;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Breadcrumbs */
.breadcrumb-navigation {
    margin: 16px 0 24px 0;
    padding: 0 20px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.breadcrumb-link {
    color: var(--primary-accent);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.breadcrumb-link:hover {
    color: #ffd966;
}

.breadcrumb-separator {
    color: #999;
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .site-top-actions {
        padding: 10px 16px;
        flex-wrap: wrap;
    }

    .header-logo-image {
        max-height: 48px;
    }

    .header-logo-text {
        font-size: 24px;
    }

    .page-content-container {
        padding-top: 0;
    }

    .hero-banner-container {
        min-height: 300px;
        padding: 30px 20px;
    }

    .hero-title-text {
        font-size: 24px;
    }

    .hero-description-text {
        font-size: 16px;
    }

    .games-collection-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: var(--primary-accent) var(--bg-secondary);
        gap: 16px;
        padding-bottom: 8px;
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .games-collection-grid::-webkit-scrollbar {
        height: 6px;
    }
    
    .games-collection-grid::-webkit-scrollbar-track {
        background: var(--bg-secondary);
        border-radius: 3px;
    }
    
    .games-collection-grid::-webkit-scrollbar-thumb {
        background: var(--primary-accent);
        border-radius: 3px;
    }
    
    .games-collection-grid::-webkit-scrollbar-thumb:hover {
        background: #ffd966;
    }
    
    .game-item-card {
        flex: 0 0 160px;
        min-width: 160px;
        max-width: 160px;
    }

    .content-text-section {
        padding: 28px 16px;
    }

    .content-text-section h1 {
        font-size: 28px;
        padding-bottom: 12px;
    }

    .content-text-section h2 {
        font-size: 24px;
        padding: 14px 16px;
    }

    .content-text-section h3 {
        font-size: 20px;
        padding: 10px 14px;
    }

    .content-text-section p {
        padding: 10px 14px;
        font-size: 15px;
    }

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

@media (max-width: 768px) {
    .site-top-actions {
        padding: 8px 12px;
    }

    .header-logo-image {
        max-height: 42px;
    }

    .header-logo-text {
        font-size: 22px;
    }

    .header-actions {
        gap: 8px;
    }
    
    .action-button-primary {
        padding: 10px 18px;
        font-size: 14px;
        font-weight: 700;
    }
    
    .action-button-secondary {
        padding: 8px 16px;
        font-size: 13px;
    }

    .hero-banner-container {
        min-height: 250px;
        padding: 24px 16px;
    }

    .hero-title-text {
        font-size: 20px;
    }

    .hero-description-text {
        font-size: 14px;
    }

    .hero-cta-button {
        padding: 12px 24px;
        font-size: 14px;
    }

    .games-collection-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: var(--primary-accent) var(--bg-secondary);
        gap: 16px;
        padding-bottom: 8px;
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .games-collection-grid::-webkit-scrollbar {
        height: 6px;
    }
    
    .games-collection-grid::-webkit-scrollbar-track {
        background: var(--bg-secondary);
        border-radius: 3px;
    }
    
    .games-collection-grid::-webkit-scrollbar-thumb {
        background: var(--primary-accent);
        border-radius: 3px;
    }
    
    .games-collection-grid::-webkit-scrollbar-thumb:hover {
        background: #ffd966;
    }
    
    .game-item-card {
        flex: 0 0 140px;
        min-width: 140px;
        max-width: 140px;
    }

    .content-text-section {
        padding: 24px 12px;
        border-radius: 12px;
    }

    .content-text-section h1 {
        font-size: 24px;
        padding-bottom: 10px;
        margin-bottom: 24px;
    }

    .content-text-section h2 {
        font-size: 22px;
        padding: 12px 14px;
        margin: 36px 0 20px 0;
    }

    .content-text-section h3 {
        font-size: 18px;
        padding: 10px 12px;
        margin: 28px 0 14px 0;
    }

    .content-text-section p {
        padding: 10px 12px;
        font-size: 14px;
        margin-bottom: 16px;
    }

    .content-text-section ul,
    .content-text-section ol {
        padding: 16px 20px 16px 32px;
        margin: 24px 0;
        list-style: none;
    }

    .content-text-section ul li,
    .content-text-section ol li {
        padding: 6px 10px;
        margin-bottom: 10px;
    }

    .table-scroll-container {
        margin: 16px -12px;
        padding: 0 12px;
    }

    .content-text-section table {
        min-width: 500px;
    }
}

/* Kontakt Page - Bright and Beautiful Styles */
.kontakt-page-wrapper {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a3d35 50%, var(--primary-dark) 100%);
    min-height: calc(100vh - 200px);
    position: relative;
    overflow: hidden;
}

.kontakt-page-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(253, 210, 90, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(253, 210, 90, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.kontakt-page-wrapper .content-text-section {
    position: relative;
    z-index: 1;
    background: transparent;
    padding: 48px 20px;
}

.kontakt-page-wrapper .content-text-section h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 32px;
    color: var(--primary-accent);
    text-align: center;
    text-shadow: 0 0 20px rgba(253, 210, 90, 0.5);
    background: linear-gradient(135deg, var(--primary-accent) 0%, #ffd966 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.kontakt-page-wrapper .content-text-section > p:first-of-type {
    font-size: 20px;
    text-align: center;
    margin-bottom: 48px;
    padding: 24px;
    background: rgba(253, 210, 90, 0.1);
    border: 2px solid var(--primary-accent);
    border-radius: 16px;
    color: var(--text-light);
    line-height: 1.8;
    box-shadow: 0 8px 24px rgba(253, 210, 90, 0.2);
}

.kontakt-page-wrapper .content-text-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 56px 0 32px 0;
    color: var(--primary-accent);
    text-align: center;
    padding: 16px 24px;
    background: linear-gradient(135deg, rgba(253, 210, 90, 0.2) 0%, rgba(253, 210, 90, 0.05) 100%);
    border-radius: 12px;
    border-left: 4px solid var(--primary-accent);
    border-right: 4px solid var(--primary-accent);
    box-shadow: 0 4px 12px rgba(253, 210, 90, 0.15);
}

.kontakt-page-wrapper .content-text-section h3 {
    font-size: 26px;
    font-weight: 700;
    margin: 40px 0 20px 0;
    color: var(--primary-accent);
    padding: 16px 20px;
    background: rgba(253, 210, 90, 0.15);
    border-radius: 10px;
    border-left: 5px solid var(--primary-accent);
    display: inline-block;
    box-shadow: 0 4px 8px rgba(253, 210, 90, 0.2);
}

.kontakt-page-wrapper .content-text-section p {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 24px;
    color: var(--text-light);
    padding: 16px 20px;
    background: rgba(42, 90, 79, 0.6);
    border-radius: 10px;
    border: 1px solid rgba(253, 210, 90, 0.2);
    transition: all 0.3s ease;
}

.kontakt-page-wrapper .content-text-section p:hover {
    background: rgba(42, 90, 79, 0.8);
    border-color: var(--primary-accent);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(253, 210, 90, 0.2);
}

.kontakt-page-wrapper .content-text-section a {
    color: var(--primary-accent);
    font-weight: 700;
    text-decoration: none;
    padding: 4px 8px;
    background: rgba(253, 210, 90, 0.2);
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.kontakt-page-wrapper .content-text-section a:hover {
    color: var(--text-dark);
    background: var(--primary-accent);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(253, 210, 90, 0.4);
    border-color: var(--primary-accent);
}

.kontakt-page-wrapper .content-text-section ul,
.kontakt-page-wrapper .content-text-section ol {
    margin: 32px 0;
    padding: 24px 32px;
    background: rgba(42, 90, 79, 0.7);
    border-radius: 12px;
    border: 2px solid rgba(253, 210, 90, 0.3);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    list-style: none;
    padding-left: 32px;
}

.kontakt-page-wrapper .content-text-section ul li,
.kontakt-page-wrapper .content-text-section ol li {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 16px;
    padding: 12px 16px;
    background: rgba(30, 71, 62, 0.5);
    border-radius: 8px;
    border-left: 4px solid var(--primary-accent);
    color: var(--text-light);
    transition: all 0.3s ease;
    list-style: none;
    position: relative;
}

.kontakt-page-wrapper .content-text-section ul li:hover,
.kontakt-page-wrapper .content-text-section ol li:hover {
    background: rgba(30, 71, 62, 0.8);
    transform: translateX(8px);
    border-left-color: #ffd966;
    box-shadow: 0 4px 12px rgba(253, 210, 90, 0.2);
}

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

/* Responsive styles for kontakt page */
@media (max-width: 768px) {
    .kontakt-page-wrapper .content-text-section h1 {
        font-size: 32px;
    }
    
    .kontakt-page-wrapper .content-text-section h2 {
        font-size: 24px;
        margin: 40px 0 24px 0;
    }
    
    .kontakt-page-wrapper .content-text-section h3 {
        font-size: 20px;
    }
    
    .kontakt-page-wrapper .content-text-section > p:first-of-type {
        font-size: 18px;
        padding: 20px;
    }
    
    .kontakt-page-wrapper .content-text-section p {
        font-size: 16px;
        padding: 14px 16px;
    }
    
    .kontakt-page-wrapper .content-text-section ul,
    .kontakt-page-wrapper .content-text-section ol {
        padding: 20px 24px;
    }
    
    .kontakt-page-wrapper .content-text-section ul li,
    .kontakt-page-wrapper .content-text-section ol li {
        font-size: 16px;
        padding: 10px 14px;
    }
}
