/* Ensure the container adjusts to the content */
        .content-container {
            max-width: 100%;
            /* Limit the width to the parent container */
            overflow: hidden;
            /* Prevent content overflow */
            word-wrap: break-word;
            /* Break long words to prevent overflow */
        }

        /* Make images within the container responsive */
        .content-container img {
            max-width: 100%;
            /* Scale images to fit within the container */
            height: auto;
            /* Maintain aspect ratio */
            display: block;
            /* Prevent inline image issues */
            margin: 0 auto;
            /* Center images (optional) */
        }

        /* Optional: Add styling for videos or embeds */
        .content-container iframe,
        .content-container video {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 0 auto;
        }

        .footer-payment .header .payment-choose img {
            width: 25px !important;
            height: 25px !important;
        }
        
        /* OTP Verification Button Styles */
        .submit-discount-code {
            transition: all 0.3s ease;
        }
        
        .submit-discount-code:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        
        .phone-verification-success {
            background: linear-gradient(135deg, #28a745, #20c997);
            border: none;
            color: white;
            cursor: not-allowed;
        }
        
        .phone-verification-pending {
            background: linear-gradient(135deg, #ffc107, #fd7e14);
            border: none;
            color: #000;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .verification-status-badge {
            display: inline-flex;
            align-items: center;
            padding: 4px 8px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
        }
        
        .verification-status-success {
            background-color: rgba(40, 167, 69, 0.1);
            color: #28a745;
            border: 1px solid rgba(40, 167, 69, 0.2);
        }
        
        .verification-status-pending {
            background-color: rgba(255, 193, 7, 0.1);
            color: #ffc107;
            border: 1px solid rgba(255, 193, 7, 0.2);
        }
        
        /* Identity Verification Button Styles */
        #btn-user-verify-identity {
            background: linear-gradient(135deg, #ffc107, #fd7e14);
            border: none;
            color: #000;
            font-weight: 600;
            padding: 4px 8px;
            border-radius: 15px;
            font-size: 0.8rem;
            transition: all 0.3s ease;
        }
        
        /* Phone Input Disabled State */
        #input_tel[readonly] {
            background-color: #f8f9fa !important;
            opacity: 0.8;
            cursor: not-allowed;
            color: #6c757d;
        }
        
        #input_tel[readonly]:focus {
            box-shadow: none;
            border-color: #ced4da;
        }
        
        #btn-user-verify-identity:hover {
            background: linear-gradient(135deg, #e0a800, #dc6200);
            transform: translateY(-1px);
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        
        #btn-user-verify-identity-footer,
        #btn-guest-verify-identity {
            background: linear-gradient(135deg, #ffc107, #fd7e14);
            border: none;
            color: #000;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        #btn-user-verify-identity-footer:hover,
        #btn-guest-verify-identity:hover {
            background: linear-gradient(135deg, #e0a800, #dc6200);
            transform: translateY(-1px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        
        /* Validated Player Info Styles */
        #validated-player-info .alert {
            background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(32, 201, 151, 0.1));
            border: 2px solid rgba(40, 167, 69, 0.3);
            border-radius: 15px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        #validated-player-info input[readonly] {
            background-color: #f8f9fa !important;
            border: 1px solid #28a745;
            color: #495057;
            font-weight: 500;
            cursor: not-allowed;
            opacity: 0.9;
        }
        
        #validated-player-info input[readonly]:focus {
            box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
            border-color: #28a745;
        }
        
        #validated-player-info h6 {
            color: #28a745;
            font-weight: 600;
        }
        
        /* Country Validation Styles */
        #validated_country.is-invalid {
            border-color: #dc3545 !important;
            background-color: #fff5f5 !important;
        }
        
        #validated_country.is-invalid:focus {
            box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
            border-color: #dc3545 !important;
        }
        
        #country-validation-warning {
            color: #dc3545;
            font-size: 0.875rem;
            font-weight: 500;
        }
        
        #country-validation-warning.d-block {
            display: block !important;
        }
        
        /* Alternative Games Section Styles */
        #alternative-games-section .alert {
            background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(253, 126, 20, 0.1));
            border: 2px solid rgba(255, 193, 7, 0.4);
            border-radius: 15px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        #alternative-games-section h6 {
            color: #856404;
            font-weight: 600;
        }
        
        #alternative-games-section .text-danger {
            font-size: 0.9rem;
            font-weight: 500;
        }
        
        /* Scrollable container for games list */
        #alternative-games-list {
            max-height: 300px; /* Height for ~3 items (80px per item + gap) */
            overflow-y: auto;
            overflow-x: hidden;
        }
        
        /* Custom scrollbar styling */
        #alternative-games-list::-webkit-scrollbar {
            width: 8px;
        }
        
        #alternative-games-list::-webkit-scrollbar-track {
            background: rgba(255, 193, 7, 0.1);
            border-radius: 10px;
        }
        
        #alternative-games-list::-webkit-scrollbar-thumb {
            background: rgba(255, 193, 7, 0.5);
            border-radius: 10px;
        }
        
        #alternative-games-list::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 193, 7, 0.7);
        }
        
        /* Game Description Collapsible Section Styles */
        .game-description-wrapper {
            margin: 20px 0;
            background: #2C2B29;
            border: 1px solid #D0993D66;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }
        
        .game-description-wrapper:hover {
            box-shadow: 0 6px 20px rgba(208, 153, 61, 0.3);
            border-color: rgba(208, 153, 61, 0.8);
        }
        
        .game-description-header {
            background: linear-gradient(135deg, rgba(208, 153, 61, 0.2), rgba(255, 215, 0, 0.2));
            padding: 15px 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            user-select: none;
            border-bottom: 1px solid rgba(208, 153, 61, 0.3);
        }
        
        .game-description-header:hover {
            background: linear-gradient(135deg, rgba(208, 153, 61, 0.3), rgba(255, 215, 0, 0.3));
        }
        
        .game-description-header:active {
            transform: scale(0.98);
        }
        
        .game-description-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: #D0993D;
            margin: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .game-description-title i {
            font-size: 1.3rem;
            color: #FFD700;
        }
        
        .game-description-toggle {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #D0993D;
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        .game-description-toggle i {
            font-size: 1.2rem;
            transition: transform 0.3s ease;
            color: #FFD700;
        }
        
        .game-description-toggle.collapsed i {
            transform: rotate(180deg);
        }
        
        .game-description-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .game-description-content.show {
            max-height: 1200px;
            overflow-y: auto;
        }
        
        /* Custom scrollbar for game description */
        .game-description-content::-webkit-scrollbar {
            width: 8px;
        }
        
        .game-description-content::-webkit-scrollbar-track {
            background: #1a1918;
            border-radius: 10px;
        }
        
        .game-description-content::-webkit-scrollbar-thumb {
            background: rgba(208, 153, 61, 0.5);
            border-radius: 10px;
        }
        
        .game-description-content::-webkit-scrollbar-thumb:hover {
            background: rgba(208, 153, 61, 0.8);
        }
        
        .game-description-body {
            padding: 20px;
            background: #1a1918;
            color: #e0e0e0;
            line-height: 1.8;
        }
        
        .game-description-body h1,
        .game-description-body h2,
        .game-description-body h3,
        .game-description-body h4 {
            color: #FFD700;
            margin-top: 15px;
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .game-description-body p {
            margin-bottom: 12px;
            color: #d4d4d4;
        }
        
        .game-description-body ul,
        .game-description-body ol {
            margin-left: 20px;
            margin-bottom: 12px;
            color: #d4d4d4;
        }
        
        .game-description-body li {
            margin-bottom: 8px;
        }
        
        .game-description-body a {
            color: #FFD700;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .game-description-body a:hover {
            color: #D0993D;
            text-decoration: underline;
        }
        
        .game-description-body img {
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            margin: 10px 0;
            border: 1px solid rgba(208, 153, 61, 0.2);
        }
        
        .game-description-body strong,
        .game-description-body b {
            color: #FFD700;
            font-weight: 600;
        }
        
        /* Animation for smooth appearance */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .game-description-body.animating {
            animation: fadeInDown 0.4s ease;
        }
        
        /* Alternative Game Card Styles */
        .alternative-game-card {
            cursor: pointer;
            border: 2px solid rgba(255, 193, 7, 0.3);
            border-radius: 15px;
            padding: 10px;
            background: white;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: row;
            align-items: center;
            text-align: left;
            gap: 15px;
            height: 100%;
            min-height: 80px;
        }
        
        .alternative-game-card:hover {
            transform: translateY(-3px);
            border-color: #ffc107;
            box-shadow: 0 6px 16px rgba(255, 193, 7, 0.4);
            background: linear-gradient(135deg, rgba(255, 193, 7, 0.05), rgba(253, 126, 20, 0.05));
        }
        
        .alternative-game-card:active {
            transform: translateY(-1px);
        }
        
        .alternative-game-card .game-logo {
            width: 60px;
            height: 60px;
            object-fit: cover;
            border-radius: 10px;
            flex-shrink: 0;
            border: 2px solid rgba(255, 193, 7, 0.2);
        }
        
        .alternative-game-card .game-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 3px;
        }
        
        .alternative-game-card .game-name {
            font-size: 0.9rem;
            font-weight: 600;
            color: #333;
            margin: 0;
            word-break: break-word;
            line-height: 1.3;
        }
        
        .alternative-game-card .click-hint {
            font-size: 0.75rem;
            color: #856404;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        #alternative-game-select {
            border: 2px solid #ffc107;
            background-color: #fff;
            font-weight: 500;
        }
        
        #alternative-game-select:focus {
            border-color: #fd7e14;
            box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
        }
        
        #redirect-to-alternative-game {
            background: linear-gradient(135deg, #ffc107, #fd7e14);
            border: none;
            color: #000;
            font-weight: 600;
            padding: 10px 20px;
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        
        #redirect-to-alternative-game:hover {
            background: linear-gradient(135deg, #e0a800, #dc6200);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        
        #redirect-to-alternative-game:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }