 body {
            font-family: 'Inter', sans-serif;
            background-color: #111827; /* bg-gray-900 */
        }
        .top-casino-card {
            border: 1px solid #FFD700;
            background: linear-gradient(to right, rgba(255, 215, 0, 0.05), rgba(31, 41, 55, 0.1));
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
        }
        .video-preview {
            position: relative; cursor: pointer; overflow: hidden;
            background-size: cover; background-position: center;
            height: 200px; border-radius: 0.5rem;
        }
        .video-preview::before {
            content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
            background-color: rgba(0, 0, 0, 0.4); transition: background-color 0.3s ease;
        }
        .video-preview:hover::before { background-color: rgba(0, 0, 0, 0.6); }
        .play-icon {
            position: absolute; top: 50%; left: 50%;
            transform: translate(-50%, -50%); font-size: 4rem;
            color: rgba(255, 255, 255, 0.8); transition: color 0.3s ease, transform 0.3s ease;
            pointer-events: none;
        }
        .video-preview:hover .play-icon { color: #FFD700; transform: translate(-50%, -50%) scale(1.1); }
        .casino-button {
            display: inline-block; padding: 0.5rem 1rem; border-radius: 0.375rem;
            text-align: center; font-size: 0.875rem; font-weight: 500;
            transition: all 0.3s ease; box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .casino-button.gold { background-color: #FFD700; color: #1a202c; }
        .casino-button.gold:hover { background-color: #e6c300; transform: translateY(-2px); box-shadow: 0 4px 8px rgba(0,0,0,0.3); }
        .casino-button.blue { background-color: #007bff; color: white; box-shadow: 0 0 8px #007bff; }
        .casino-button.blue:hover { background-color: #0056b3; transform: translateY(-2px); box-shadow: 0 0 12px #007bff; }
        .casino-button.outline-gold {
            background-color: transparent; color: #FFD700; border: 2px solid #FFD700;
        }
         .casino-button.outline-gold:hover {
             background-color: rgba(255, 215, 0, 0.1); transform: translateY(-2px); box-shadow: 0 4px 8px rgba(0,0,0,0.1);
         }
         .casino-button.text-link {
             background-color: transparent; color: #e2e8f0; padding: 0.5rem 0;
             box-shadow: none; text-decoration: underline;
         }
         .casino-button.text-link:hover {
             color: #FFD700; text-decoration: none;
         }
        .language-dropdown { position: relative; display: inline-block; }
        .language-dropdown-content {
            display: none; position: absolute; right: 0; background-color: #4a5568;
            min-width: 100px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); z-index: 1;
            border-radius: 0.375rem; padding: 0.5rem 0;
        }
        .language-dropdown-content a {
            color: #e2e8f0; padding: 0.5rem 1rem; text-decoration: none; display: flex;
            align-items: center; gap: 0.5rem; font-size: 0.875rem;
        }
        .language-dropdown-content a:hover { background-color: #2d3748; }
        .language-dropdown:hover .language-dropdown-content { display: block; }
        .flag-icon { width: 20px; height: 15px; background-size: cover; display: inline-block; border: 1px solid #666; }
        .flag-de { background-color: #999; }
        .flag-us { background-color: #ccc; }
        .flag-gb { background-color: #aaa; }
        .flag-fr { background-color: #888; }
        .flag-ca { background-color: #777; }
        .flag-es { background-color: #666; }
        .gold-accent { color: #FFD700; text-shadow: 0 0 5px rgba(255, 215, 0, 0.7); }
        .scroll-indicator { animation: bounce 2s infinite; }
        @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-10px); } 60% { transform: translateY(-5px); } }
        .marquee-container {
            overflow: hidden;
            background-color: #1f2937; /* gray-800 */
            padding: 0.75rem 0; /* py-3 */
        }
        .marquee-content {
            display: flex;
            width: max-content;
            animation: marquee 30s linear infinite;
            will-change: transform;
        }
        .marquee-item {
            flex-shrink: 0;
            margin-right: 1.5rem; /* mx-3 */
            display: flex;
            align-items: center;
            background-color: #374151; /* gray-700 */
            padding: 0.5rem 0.75rem; /* px-3 py-2 */
            border-radius: 0.375rem; /* rounded-md */
            font-size: 0.75rem; /* text-xs */
        }
        .marquee-item img {
            width: 2rem; height: 2rem; object-fit: cover;
            margin-right: 0.5rem; border-radius: 0.25rem;
        }
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .marquee-container:hover .marquee-content {
            animation-play-state: paused;
        }
        .hot-bonus-link::after {
            content: ''; position: absolute; top: 0; right: -5px;
            width: 8px; height: 8px; background-color: #ef4444; /* red-500 */
            border-radius: 50%; animation: pulse 1.5s infinite;
        }
        @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
        details > summary {
            list-style: none; cursor: pointer; padding: 1rem;
            background-color: #374151; border-radius: 0.375rem;
            font-weight: 500; transition: background-color 0.2s ease;
        }
        details > summary::-webkit-details-marker { display: none; }
        details > summary::after {
            content: '+'; float: right; font-size: 1.25rem; line-height: 1;
            transition: transform 0.2s ease;
        }
        details[open] > summary::after { transform: rotate(45deg); }
        details > summary:hover { background-color: #4b5563; }
        details > div {
            padding: 1rem; background-color: #1f2937;
            border-bottom-left-radius: 0.375rem; border-bottom-right-radius: 0.375rem;
            margin-top: -1px; border: 1px solid #374151; border-top: none;
        }
        .age-disclaimer {
             text-align: center; font-size: 0.75rem; color: #f87171;
             border: 1px solid rgba(248, 113, 113, 0.5); border-radius: 0.25rem;
             padding: 0.25rem 0.5rem; margin-top: 1.5rem; margin-bottom: 0.5rem;
             max-width: 16rem; margin-left: auto; margin-right: auto;
        }
        .comparison-table th, .comparison-table td {
            padding: 0.75rem 1rem;
            vertical-align: top;
        }
        .comparison-table thead th {
            background-color: #374151;
            font-weight: 600;
        }
        .comparison-table tbody tr:nth-child(odd) {
            background-color: #1f2937;
        }
         .comparison-table tbody tr:nth-child(even) {
            background-color: rgba(31, 41, 55, 0.5);
        }
        .comparison-table .feature-col { width: 30%; }
        .comparison-table .online-col { color: #4ade80; }
        .comparison-table .offline-col { color: #f87171; }
        .comparison-table i.fa-check-circle { color: #22c55e; }
        .comparison-table i.fa-times-circle { color: #ef4444; }
.custom-list-style {
            list-style: none;
            padding-left: 0;
            margin-top: 1rem;
            margin-bottom: 1rem
        }
        .custom-list-style li {
            position: relative;  
            padding-left: 1.25rem;
            margin-bottom: 0.5rem;
            line-height: 1.6;
        }
        .custom-list-style li:last-child {
             margin-bottom: 0;
        }
        .custom-list-style li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.4em;
            width: 0.5rem;
            height: 0.5rem;
            background-color: #FFD700;
        }
	.flag-svg {
        width: 1rem; /* w-4 (уменьшен размер) */
        height: auto;
        display: inline-block;
        vertical-align: middle;
        border: 1px solid rgba(156, 163, 175, 0.3); /* gray-400/30 */
    }