/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0d2e1a;
    overflow-x: hidden;
}

/* Sticky Mobile Header */
.mobile-top-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #0d2e1a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.mobile-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
}

.mobile-logo-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-logo-container img {
    max-height: 36px;
    width: auto;
}

.mobile-logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.mobile-logo-subtext {
    font-size: 13px;
    color: #4ade80;
    line-height: 1.2;
}

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

.mobile-header-btn {
    padding: 10px 18px;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    transition: all 0.2s;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mobile-header-btn-login {
    background: #fbbf24;
    color: #000000;
}

.mobile-header-btn-register {
    background: #f97316;
    color: #ffffff;
}

/* Desktop Top Header Bar */
.top-header-bar {
    display: block;
    padding: 12px 24px;
    background: #0d2e1a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.top-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}

.desktop-logo-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.desktop-logo-container img {
    max-height: 40px;
    width: auto;
}

.desktop-logo-container a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.desktop-logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.desktop-logo-subtext {
    font-size: 14px;
    color: #4ade80;
}

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

.btn-primary {
    background: #fbbf24;
    color: #000000;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: #f59e0b;
}

.btn-primary:last-child {
    background: #f97316;
    color: #ffffff;
}

.btn-primary:last-child:hover {
    background: #ea580c;
}


/* Main Content Wrapper */
.main-content-wrapper {
    padding: 24px;
    min-height: calc(100vh - 60px);
    background: #0d2e1a;
}

/* Page Main Container */
.page-main-container {
    min-height: calc(100vh - 60px);
    background: #0d2e1a;
}

.content-inner-wrapper {
    padding: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Promotional Banners Section */
.promotional-banners-section {
    margin-bottom: 32px;
}

.banners-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.promo-banner-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1a4d2e 0%, #0d2e1a 100%);
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.banner-image-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

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

.promo-banner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: 50%;
    padding: 24px 20px;
    background: linear-gradient(to top, rgba(13, 46, 26, 0.95), transparent);
}

.banner-button-container {
    margin-top: 16px;
}

/* Game Categories Filter Bar */
.game-categories-filter {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding: 8px 0;
    margin-bottom: 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.game-categories-filter::-webkit-scrollbar {
    height: 4px;
}

.game-categories-filter::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.game-categories-filter::-webkit-scrollbar-thumb {
    background: #fbbf24;
    border-radius: 2px;
}

.category-filter-btn {
    padding: 6px 12px;
    background: #1a4d2e;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    font-size: 11px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s;
}

.category-filter-btn span:first-child {
    font-size: 12px;
    line-height: 1;
}

.category-filter-btn:hover {
    background: #2d5a3d;
    border-color: #fbbf24;
}

.category-filter-btn.active {
    background: #fbbf24;
    color: #000000;
    border-color: #fbbf24;
}

/* Text Content Section */
.text-content-section {
    margin: 32px 0;
}

.game-button-wrapper {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 24px);
    display: flex;
    justify-content: center;
    align-items: center;
}


.promo-banner-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7), 0 0 2px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.promo-banner-text {
    font-size: 20px;
    margin-bottom: 16px;
    color: #fbbf24;
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9), 0 0 4px rgba(251, 191, 36, 0.5);
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.promo-banner-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #fbbf24;
    color: #000000;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.2s;
}

.promo-banner-btn:hover {
    background: #f59e0b;
}

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

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

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-nav-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.show-all-btn {
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    color: #ffffff;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.2s;
}

.show-all-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fbbf24;
}

.carousel-nav-btn {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.carousel-nav-btn:hover {
    background: #fbbf24;
    border-color: #fbbf24;
    color: #000000;
}

.games-carousel {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 8px;
}

.games-carousel::-webkit-scrollbar {
    height: 4px;
}

.games-carousel::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.games-carousel::-webkit-scrollbar-thumb {
    background: #fbbf24;
    border-radius: 2px;
}

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

.game-card {
    border-radius: 8px;
    overflow: hidden;
    background: #1a4d2e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(251, 191, 36, 0.3);
    border-color: #fbbf24;
}

.game-image-wrapper {
    position: relative;
    overflow: hidden;
}

.game-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 9/16;
    object-fit: cover;
}

.game-play-btn {
    position: relative;
    padding: 10px 20px;
    background: #fbbf24;
    color: #000000;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.2s;
    display: inline-block;
    width: auto;
    min-width: 100px;
}

.game-card:hover .game-play-btn {
    opacity: 1;
}

.game-title {
    padding: 12px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
}

/* Text Content */
.text-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
    background: #1a4d2e;
    border-radius: 12px;
    margin-bottom: 32px;
}

.text-content h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
}

.text-content h2 {
    font-size: 26px;
    font-weight: 700;
    margin: 32px 0 16px 0;
    color: #fbbf24;
}

.text-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 24px 0 12px 0;
    color: #ffffff;
}

.text-content p {
    margin-bottom: 16px;
    color: #e5e7eb;
    line-height: 1.8;
}

.text-content img {
    max-width: 100%;
    height: auto;
    margin: 24px 0;
    border-radius: 8px;
}

/* Table Wrapper for Horizontal Scroll on Mobile */
.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 24px 0;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.text-content table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    background: #0d2e1a;
}

.text-content th,
.text-content td {
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.text-content th {
    background: #1a4d2e;
    font-weight: 600;
    color: #fbbf24;
}

.text-content td {
    color: #e5e7eb;
}

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

.text-content ul li,
.text-content ol li {
    margin-bottom: 10px;
    color: #e5e7eb;
}

.text-content a {
    color: #fbbf24;
    text-decoration: underline;
}

.text-content a:hover {
    color: #f59e0b;
}

.text-content blockquote {
    margin: 24px 0;
    padding: 20px;
    border-left: 4px solid #fbbf24;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 4px;
    color: #e5e7eb;
}

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

.faq-item-block {
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 12px;
    background: #0d2e1a;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question-block {
    padding: 16px;
    background: #1a4d2e;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question-block strong {
    font-size: 16px;
    color: #ffffff;
}

.faq-answer-block {
    padding: 16px;
    color: #e5e7eb;
}

/* HowTo */
.howto-wrapper {
    margin: 24px 0;
    padding: 24px;
    background: #1a4d2e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

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

.howto-step-item {
    counter-increment: step-counter;
    padding: 16px;
    margin-bottom: 12px;
    background: #0d2e1a;
    border-left: 4px solid #fbbf24;
    border-radius: 4px;
}

.howto-step-item::before {
    content: counter(step-counter) ".";
    font-weight: 700;
    margin-right: 12px;
    color: #fbbf24;
}

.howto-step-item strong {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    color: #ffffff;
}

.howto-step-item p {
    color: #e5e7eb;
    margin: 0;
}

/* Breadcrumbs */
.breadcrumb-nav {
    margin: 0 0 24px 0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.breadcrumb-link {
    color: #fbbf24;
    text-decoration: none;
    font-size: 14px;
}

.breadcrumb-link:hover {
    color: #f59e0b;
    text-decoration: underline;
}

.breadcrumb-divider {
    color: #6b7280;
}

/* Payment Methods */
.payment-methods-section {
    margin: 48px 0;
    background: linear-gradient(135deg, #1a4d2e 0%, #0d2e1a 100%);
    padding: 40px 32px;
    border-radius: 16px;
    border: 1px solid rgba(251, 191, 36, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.payment-methods-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #fbbf24 0%, #f97316 50%, #fbbf24 100%);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.payment-methods-section .section-header {
    margin-bottom: 32px;
    text-align: center;
}

.payment-methods-section .section-title {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #fbbf24 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(251, 191, 36, 0.3);
    letter-spacing: 0.5px;
}

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

.payment-method-card {
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 24px 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(13, 46, 26, 0.8) 0%, rgba(26, 77, 46, 0.6) 100%);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.payment-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.15), transparent);
    transition: left 0.5s;
}

.payment-method-card:hover::before {
    left: 100%;
}

.payment-method-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: #fbbf24;
    box-shadow: 0 12px 32px rgba(251, 191, 36, 0.4), 0 0 20px rgba(251, 191, 36, 0.2);
    background: linear-gradient(135deg, rgba(26, 77, 46, 0.9) 0%, rgba(13, 46, 26, 0.8) 100%);
}

.payment-method-image-wrapper {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.payment-method-card:hover .payment-method-image-wrapper {
    background: rgba(251, 191, 36, 0.1);
    transform: scale(1.05);
}

.payment-method-image {
    max-width: 100%;
    height: auto;
    max-height: 60px;
    object-fit: contain;
    filter: brightness(0.95);
    transition: all 0.3s ease;
}

.payment-method-card:hover .payment-method-image {
    filter: brightness(1.1) drop-shadow(0 0 8px rgba(251, 191, 36, 0.3));
    transform: scale(1.05);
}

.payment-method-name {
    font-size: 13px;
    font-weight: 600;
    color: #e5e7eb;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    margin-top: 8px;
}

.payment-method-card:hover .payment-method-name {
    color: #fbbf24;
}

/* Footer */
.site-footer {
    background: #0a1f12;
    color: #ffffff;
    padding: 40px 24px 24px;
    margin-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-section-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fbbf24;
}

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

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

.footer-links a {
    color: #e5e7eb;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fbbf24;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: #9ca3af;
}

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

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

.footer-safe-links li {
    margin: 0;
}

.safe-image {
    max-width: 100px;
    height: auto;
}

.footer-social {
    margin-top: 16px;
    margin-bottom: 0;
    padding: 12px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

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

.footer-social-links li {
    margin: 0;
}

.social-image {
    max-width: 32px;
    height: auto;
    display: block;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.footer-social-links a:hover .social-image {
    opacity: 0.8;
    transform: scale(1.1);
}

.safe-image:hover {
    opacity: 1;
}

/* List Container */
.list-container {
    margin: 24px 0;
}

.list-container ul,
.list-container ol {
    margin: 20px 0;
    padding-left: 30px;
}

.list-container ul li,
.list-container ol li {
    margin-bottom: 10px;
    color: #e5e7eb;
}


/* Mobile Styles */
@media (max-width: 992px) {
    .mobile-top-header {
        display: block;
        padding: 16px;
    }

    .mobile-logo-container img {
        max-height: 38px;
    }

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

    .mobile-logo-subtext {
        font-size: 14px;
    }

    .mobile-header-actions {
        gap: 12px;
    }

    .mobile-header-btn {
        padding: 11px 20px;
        font-size: 14px;
    }

    .top-header-bar {
        display: none;
    }

    .main-content-wrapper {
        padding: 0;
        margin-top: 0;
    }

    .page-main-container {
        margin-top: 0;
        padding-top: 68px;
    }

    .content-inner-wrapper {
        padding: 16px;
    }

    .breadcrumb-nav {
        display: none;
    }

    .promotional-banners-section {
        margin-top: 0;
        margin-bottom: 24px;
        padding: 0;
    }

    .banners-container {
        gap: 16px;
    }

    .promo-banner-item {
        margin-bottom: 0;
        border-radius: 12px;
        height: 180px;
        min-height: 180px;
        max-height: 180px;
        display: flex;
        align-items: center;
        overflow: hidden;
        position: relative;
    }

    .banner-image-container {
        border-radius: 12px;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
        height: 100%;
    }

    .promo-banner-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .promo-banner-content {
        position: absolute;
        z-index: 2;
        bottom: 0;
        left: 0;
        right: 0;
        max-width: 100%;
        padding: 16px 18px;
        background: linear-gradient(to top, rgba(13, 46, 26, 0.95) 0%, rgba(13, 46, 26, 0.85) 70%, transparent 100%);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        height: auto;
        min-height: auto;
    }

    .promo-banner-title {
        font-size: 15px;
        line-height: 1.25;
        margin-bottom: 5px;
        font-weight: 700;
        color: #ffffff;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
        text-transform: uppercase;
        letter-spacing: 0.3px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .promo-banner-text {
        font-size: 16px;
        line-height: 1.3;
        margin-bottom: 10px;
        font-weight: 800;
        color: #fbbf24;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9), 0 0 4px rgba(251, 191, 36, 0.5);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .banner-button-container {
        margin-top: 6px;
    }

    .promo-banner-btn {
        padding: 10px 20px;
        font-size: 13px;
        font-weight: 700;
        background: #fbbf24;
        color: #000000;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
        white-space: nowrap;
        min-height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: fit-content;
        max-width: 100%;
    }

    .game-categories-filter {
        padding: 12px 0;
        margin-bottom: 24px;
        margin-top: 0;
        gap: 8px;
    }

    .category-filter-btn {
        padding: 10px 16px;
        font-size: 13px;
        gap: 6px;
        min-height: 40px;
    }

    .category-filter-btn span:first-child {
        font-size: 14px;
    }

    .game-section {
        margin-bottom: 32px;
    }

    .section-header {
        margin-bottom: 16px;
    }

    .section-title {
        font-size: 20px;
    }

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

    .game-card {
        border-radius: 12px;
    }

    .game-title {
        padding: 12px;
        font-size: 13px;
    }

    .game-button-wrapper {
        position: absolute;
        bottom: 12px;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 24px);
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .game-play-btn {
        opacity: 1;
        position: relative;
        transform: none;
        margin-top: 0;
        width: auto;
        padding: 10px 20px;
        font-size: 14px;
        min-height: 40px;
        min-width: 100px;
    }

    .text-content-section {
        margin: 32px 0;
    }

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

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

    .text-content h2 {
        font-size: 24px;
        margin: 28px 0 16px 0;
        line-height: 1.3;
    }

    .text-content h3 {
        font-size: 20px;
        margin: 24px 0 12px 0;
        line-height: 1.3;
    }

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

    .payment-methods-section {
        margin: 40px 0;
        padding: 28px 20px;
        border-radius: 16px;
    }

    .payment-methods-section .section-title {
        font-size: 24px;
    }

    .payment-methods-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 16px;
        margin-top: 24px;
    }

    .payment-method-card {
        padding: 20px 16px;
        border-radius: 12px;
    }

    .payment-method-image-wrapper {
        min-height: 65px;
        padding: 10px;
    }

    .payment-method-image {
        max-height: 55px;
    }

    .payment-method-name {
        font-size: 12px;
    }

    .site-footer {
        padding: 32px 16px 20px;
        margin-top: 40px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 0;
        margin-bottom: 20px;
    }

    .footer-section-title {
        font-size: 16px;
        margin-bottom: 14px;
    }

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

    .footer-links a {
        font-size: 14px;
        padding: 4px 0;
        display: inline-block;
        min-height: 32px;
        line-height: 1.5;
    }

    .footer-bottom {
        padding-top: 20px;
        font-size: 12px;
        line-height: 1.6;
    }

    .footer-safe-links {
        gap: 20px;
        margin-bottom: 16px;
    }

    .safe-image {
        max-width: 90px;
    }

    .footer-social {
        padding: 10px 12px;
        margin-top: 12px;
    }

    .footer-social-links {
        gap: 12px;
    }

    .social-image {
        max-width: 28px;
    }
}

@media (max-width: 768px) {
    .content-inner-wrapper {
        padding: 12px;
    }

    .promo-banner-item {
        height: 170px;
        min-height: 170px;
        max-height: 170px;
    }

    .promo-banner-content {
        padding: 14px 16px;
    }

    .promo-banner-title {
        font-size: 14px;
        line-height: 1.2;
        margin-bottom: 4px;
    }

    .promo-banner-text {
        font-size: 14px;
        line-height: 1.3;
        margin-bottom: 8px;
        color: #fbbf24;
        font-weight: 800;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9), 0 0 4px rgba(251, 191, 36, 0.5);
    }

    .promo-banner-btn {
        padding: 9px 18px;
        font-size: 12px;
        min-height: 38px;
    }

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

    .text-content {
        padding: 20px 16px;
    }

    .text-content h1 {
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 18px;
    }

    .text-content h2 {
        font-size: 22px;
        line-height: 1.3;
        margin: 24px 0 14px 0;
    }

    .text-content h3 {
        font-size: 18px;
        line-height: 1.3;
        margin: 20px 0 12px 0;
    }

    .text-content p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 14px;
    }

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

    .text-content ul li,
    .text-content ol li {
        margin-bottom: 10px;
        line-height: 1.6;
        font-size: 15px;
    }

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

    .table-wrapper {
        margin: 20px -16px;
        border-radius: 0;
    }

    .faq-item-block {
        margin-bottom: 14px;
        border-radius: 10px;
    }

    .faq-question-block {
        padding: 14px;
    }

    .faq-answer-block {
        padding: 14px;
        font-size: 15px;
        line-height: 1.6;
    }

    .howto-step-item {
        padding: 14px;
        margin-bottom: 12px;
    }

    .section-title {
        font-size: 20px;
    }

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

    .text-content {
        padding: 12px;
    }

    .text-content h1 {
        font-size: 22px;
    }

    .text-content h2 {
        font-size: 20px;
    }

    .text-content h3 {
        font-size: 16px;
    }

    .table-wrapper {
        margin: 18px -12px;
        border-radius: 0;
    }

    .text-content table {
        min-width: 500px;
        font-size: 12px;
    }

    .text-content th,
    .text-content td {
        padding: 8px 6px;
    }

    .payment-methods-section {
        margin: 32px 0;
        padding: 24px 16px;
        border-radius: 14px;
    }

    .payment-methods-section .section-title {
        font-size: 22px;
    }

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

    .payment-method-card {
        padding: 18px 12px;
        border-radius: 10px;
    }

    .payment-method-image-wrapper {
        min-height: 60px;
        padding: 8px;
        margin-bottom: 12px;
    }

    .payment-method-image {
        max-height: 50px;
    }

    .payment-method-name {
        font-size: 11px;
        margin-top: 6px;
    }
}

/* 404 Error Page Styles */
.error-404-container {
    position: relative;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    overflow: hidden;
    background: #0d2e1a;
}

.error-404-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.error-404-gradient {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.15) 0%, rgba(249, 115, 22, 0.1) 30%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.error-404-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.error-404-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #fbbf24;
    border-radius: 50%;
    opacity: 0.6;
    animation: float 8s infinite ease-in-out;
}

.error-404-particles span:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 6s;
}

.error-404-particles span:nth-child(2) {
    left: 20%;
    top: 60%;
    animation-delay: 1s;
    animation-duration: 8s;
}

.error-404-particles span:nth-child(3) {
    left: 80%;
    top: 30%;
    animation-delay: 2s;
    animation-duration: 7s;
}

.error-404-particles span:nth-child(4) {
    left: 70%;
    top: 70%;
    animation-delay: 1.5s;
    animation-duration: 9s;
}

.error-404-particles span:nth-child(5) {
    left: 40%;
    top: 10%;
    animation-delay: 0.5s;
    animation-duration: 6.5s;
}

.error-404-particles span:nth-child(6) {
    left: 50%;
    top: 80%;
    animation-delay: 2.5s;
    animation-duration: 7.5s;
}

.error-404-particles span:nth-child(7) {
    left: 90%;
    top: 50%;
    animation-delay: 1.2s;
    animation-duration: 8.5s;
}

.error-404-particles span:nth-child(8) {
    left: 15%;
    top: 85%;
    animation-delay: 3s;
    animation-duration: 6s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-30px) translateX(20px);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-60px) translateX(-15px);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-30px) translateX(10px);
        opacity: 0.7;
    }
}

.error-404-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    width: 100%;
}

.error-404-number {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
    position: relative;
}

.error-404-digit {
    font-size: 160px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #fbbf24 0%, #f97316 50%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(251, 191, 36, 0.5);
    animation: glow 3s ease-in-out infinite;
}

.error-404-digit-animated {
    animation: glow 3s ease-in-out infinite, bounce 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(251, 191, 36, 0.8));
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.error-404-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.error-404-card {
    position: absolute;
    width: 120px;
    height: 160px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(249, 115, 22, 0.1) 100%);
    border: 2px solid rgba(251, 191, 36, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    animation: cardFloat 6s ease-in-out infinite;
}

.error-404-card:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    transform: rotate(-15deg);
}

.error-404-card:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
    transform: rotate(20deg);
}

.error-404-card:nth-child(3) {
    bottom: 15%;
    left: 20%;
    animation-delay: 4s;
    transform: rotate(10deg);
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0) rotate(var(--rotation, 0deg));
        opacity: 0.6;
    }
    50% {
        transform: translateY(-30px) rotate(calc(var(--rotation, 0deg) + 5deg));
        opacity: 0.9;
    }
}

.error-404-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.error-404-description {
    font-size: 18px;
    color: #e5e7eb;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.error-404-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.error-404-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #fbbf24 0%, #f97316 100%);
    color: #000000;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
    position: relative;
    overflow: hidden;
}

.error-404-button::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;
}

.error-404-button:hover::before {
    left: 100%;
}

.error-404-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.6);
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
}

.error-404-button:active {
    transform: translateY(0);
}

.error-404-button svg {
    transition: transform 0.3s ease;
}

.error-404-button:hover svg {
    transform: translateX(4px);
}

/* Mobile Styles for 404 Page */
@media (max-width: 992px) {
    .error-404-container {
        min-height: calc(100vh - 150px);
        padding: 60px 20px;
    }

    .error-404-digit {
        font-size: 120px;
    }

    .error-404-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .error-404-description {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .error-404-button {
        padding: 14px 28px;
        font-size: 15px;
    }

    .error-404-card {
        width: 80px;
        height: 110px;
    }
}

@media (max-width: 768px) {
    .error-404-container {
        padding: 40px 16px;
    }

    .error-404-digit {
        font-size: 100px;
        gap: 4px;
    }

    .error-404-title {
        font-size: 24px;
        margin-bottom: 14px;
    }

    .error-404-description {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .error-404-button {
        padding: 12px 24px;
        font-size: 14px;
        gap: 8px;
    }

    .error-404-button svg {
        width: 18px;
        height: 18px;
    }

    .error-404-card {
        width: 60px;
        height: 85px;
    }

    .error-404-gradient {
        width: 500px;
        height: 500px;
    }
}

/* Contact Page Styles */
.contact-hero-section {
    position: relative;
    padding: 80px 24px;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(13, 46, 26, 0.95) 0%, rgba(26, 77, 46, 0.9) 100%);
    border-radius: 20px;
    margin-bottom: 60px;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-icon {
    margin-bottom: 30px;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.contact-hero-title {
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fbbf24 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.3);
}

.contact-hero-subtitle {
    font-size: 20px;
    color: #e5e7eb;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.contact-hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.contact-hero-card {
    position: absolute;
    width: 100px;
    height: 140px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.08) 0%, rgba(249, 115, 22, 0.08) 100%);
    border: 2px solid rgba(251, 191, 36, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    animation: cardFloatContact 8s ease-in-out infinite;
}

.contact-hero-card:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    transform: rotate(-12deg);
}

.contact-hero-card:nth-child(2) {
    bottom: 20%;
    right: 12%;
    animation-delay: 4s;
    transform: rotate(15deg);
}

@keyframes cardFloatContact {
    0%, 100% {
        transform: translateY(0) rotate(var(--rotation, 0deg));
        opacity: 0.5;
    }
    50% {
        transform: translateY(-25px) rotate(calc(var(--rotation, 0deg) + 3deg));
        opacity: 0.8;
    }
}

.contact-methods-section {
    position: relative;
    padding: 60px 0;
    margin-bottom: 40px;
}

.contact-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.contact-card {
    background: linear-gradient(135deg, #1a4d2e 0%, #0d2e1a 100%);
    border: 2px solid rgba(251, 191, 36, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.1), transparent);
    transition: left 0.5s;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: #fbbf24;
    box-shadow: 0 12px 30px rgba(251, 191, 36, 0.3);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(249, 115, 22, 0.2) 100%);
    border: 2px solid rgba(251, 191, 36, 0.4);
    color: #fbbf24;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.3) 0%, rgba(249, 115, 22, 0.3) 100%);
    border-color: #fbbf24;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.contact-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.contact-card-description {
    font-size: 16px;
    color: #e5e7eb;
    line-height: 1.6;
    margin-bottom: 24px;
}

.contact-card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #fbbf24 0%, #f97316 100%);
    color: #000000;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.contact-card-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(251, 191, 36, 0.5);
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
}

.contact-card-link svg {
    transition: transform 0.3s ease;
}

.contact-card-link:hover svg {
    transform: translateX(4px);
}

.contact-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(74, 222, 128, 0.15);
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-radius: 20px;
    color: #4ade80;
    font-size: 14px;
    font-weight: 600;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.contact-gradient {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, rgba(249, 115, 22, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    animation: contactPulse 5s ease-in-out infinite;
}

@keyframes contactPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 0.6;
    }
}

.contact-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.contact-particles span {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #fbbf24;
    border-radius: 50%;
    opacity: 0.5;
    animation: contactFloat 10s infinite ease-in-out;
}

.contact-particles span:nth-child(1) {
    left: 15%;
    top: 25%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.contact-particles span:nth-child(2) {
    left: 85%;
    top: 35%;
    animation-delay: 2s;
    animation-duration: 9s;
}

.contact-particles span:nth-child(3) {
    left: 25%;
    top: 75%;
    animation-delay: 1s;
    animation-duration: 7s;
}

.contact-particles span:nth-child(4) {
    left: 75%;
    top: 65%;
    animation-delay: 3s;
    animation-duration: 8.5s;
}

.contact-particles span:nth-child(5) {
    left: 50%;
    top: 15%;
    animation-delay: 1.5s;
    animation-duration: 7.5s;
}

.contact-particles span:nth-child(6) {
    left: 60%;
    top: 85%;
    animation-delay: 2.5s;
    animation-duration: 9s;
}

@keyframes contactFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.5;
    }
    25% {
        transform: translateY(-25px) translateX(15px);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-50px) translateX(-10px);
        opacity: 0.3;
    }
    75% {
        transform: translateY(-25px) translateX(8px);
        opacity: 0.6;
    }
}

/* Mobile Styles for Contact Page */
@media (max-width: 992px) {
    .contact-hero-section {
        padding: 60px 20px;
        margin-bottom: 40px;
    }

    .contact-hero-title {
        font-size: 36px;
    }

    .contact-hero-subtitle {
        font-size: 18px;
    }

    .contact-section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-card {
        padding: 32px 24px;
    }
}

@media (max-width: 768px) {
    .contact-hero-section {
        padding: 40px 16px;
        border-radius: 16px;
    }

    .contact-hero-icon svg {
        width: 60px;
        height: 60px;
    }

    .contact-hero-title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .contact-hero-subtitle {
        font-size: 16px;
    }

    .contact-section-title {
        font-size: 24px;
        margin-bottom: 32px;
    }

    .contact-cards-grid {
        gap: 20px;
    }

    .contact-card {
        padding: 28px 20px;
        border-radius: 16px;
    }

    .contact-card-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .contact-card-icon svg {
        width: 40px;
        height: 40px;
    }

    .contact-card-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .contact-card-description {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .contact-card-link {
        padding: 10px 20px;
        font-size: 14px;
    }

    .contact-hero-card {
        width: 70px;
        height: 100px;
    }

    .contact-gradient {
        width: 400px;
        height: 400px;
    }
}
