<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
            user-select: none;
            -webkit-user-select: none;
            -moz-user-select: none;
        }

.site-header {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            color: white;
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

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

        .logo-section {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo {
            width: 85px;
            height: 85px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 24px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .site-title {
            font-size: 18px;
            font-weight: 700;
        }

        .header-btn {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 25px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .header-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 20px rgba(240, 147, 251, 0.4);
        }

        .showcase-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .showcase-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .showcase-header h1 {
            font-size: 20px;
            color: #2c3e50;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .showcase-header .subtitle {
            font-size: 20px;
            color: #7f8c8d;
            font-weight: 400;
        }

        .filters-section {
            background: white;
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 30px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            align-items: center;
        }

        .filter-btn {
            padding: 10px 20px;
            border: 2px solid #e0e0e0;
            background: white;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
            font-weight: 500;
        }

        .filter-btn:hover {
            border-color: #3498db;
            color: #3498db;
        }

        .filter-btn.active {
            background: #3498db;
            color: white;
            border-color: #3498db;
        }

        .casinos-grid {
            display: grid;
            gap: 25px;
        }

        .casino-card {
            background: white;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .casino-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
        }

        .casino-rank {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 20px;
        }

        .casino-rank.top3 {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }

        .casino-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
        }

        .casino-logo {
            width: 120px;
            height: 60px;
            background: #f0f0f0;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #666;
        }

        .casino-name {
            font-size: 30px;
            font-weight: 700;
            color: #2c3e50;
        }

        .brand-description {
            background: #f8f9fb;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 20px;
            border-left: 4px solid #3498db;
        }

        .brand-description h4 {
            color: #2c3e50;
            margin-bottom: 10px;
            font-size: 18px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .brand-description p {
            color: #555;
            font-size: 14px;
            line-height: 1.8;
            text-align: justify;
        }

        .casino-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
            margin-bottom: 25px;
        }

        .detail-item {
            background: #f8f9fb;
            padding: 15px;
            border-radius: 10px;
            text-align: center;
        }

        .detail-label {
            font-size: 12px;
            color: #7f8c8d;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 5px;
        }

        .detail-value {
            font-size: 18px;
            font-weight: 600;
            color: #2c3e50;
        }

        .detail-value.bonus {
            color: #27ae60;
        }

        .detail-value.cashback {
            color: #e74c3c;
        }

        .pros-cons {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .pros, .cons {
            background: #f8f9fb;
            padding: 20px;
            border-radius: 10px;
        }

        .pros {
            border-left: 4px solid #27ae60;
        }

        .cons {
            border-left: 4px solid #e74c3c;
        }

        .pros h4, .cons h4 {
            font-size: 16px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .pros h4 {
            color: #27ae60;
        }

        .cons h4 {
            color: #e74c3c;
        }

        .pros ul, .cons ul {
            list-style: none;
        }

        .pros li, .cons li {
            font-size: 14px;
            margin-bottom: 5px;
            padding-left: 20px;
            position: relative;
        }

        .pros li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #27ae60;
            font-weight: bold;
        }

        .cons li:before {
            content: "✗";
            position: absolute;
            left: 0;
            color: #e74c3c;
            font-weight: bold;
        }

        .top-games {
            margin-bottom: 25px;
        }

        .top-games h4 {
            font-size: 16px;
            margin-bottom: 10px;
            color: #34495e;
        }

        .games-list {
            display: flex;
            gap: 10px;
			 flex-wrap: wrap;
        }

        .game-tag {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
        }

        .action-buttons {
            display: flex;
            gap: 15px;
        }

        .btn {
            flex: 1;
            padding: 15px 30px;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            text-decoration: none;
        }

        .btn-primary {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .btn-primary:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
        }

        .btn-secondary {
            background: white;
            color: #667eea;
            border: 2px solid #667eea;
        }

        .btn-secondary:hover {
            background: #667eea;
            color: white;
        }

        .license-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: #ecf0f1;
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 12px;
            color: #7f8c8d;
        }

        .license-badge.mga {
            background: #e8f5e9;
            color: #2e7d32;
        }

        .license-badge.estonia {
            background: #e3f2fd;
            color: #1565c0;
        }

        .license-badge.curacao {
            background: #fff3e0;
            color: #e65100;
        }

.site-footer {
            background: #2c3e50;
            color: white;
            padding: 40px 0 20px;
            margin-top: 80px;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-sections {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
            margin-bottom: 30px;
        }

        .responsible-gaming {
            background: rgba(255,255,255,0.1);
            padding: 25px;
            border-radius: 10px;
        }

        .responsible-gaming h3 {
            color: #f39c12;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .responsible-gaming p {
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .help-links {
            display: flow;
            gap: 15px;
            flex-wrap: wrap;
        }

        .help-link {
            background: rgba(255,255,255,0.2);
            padding: 8px 16px;
            border-radius: 20px;
            text-decoration: none;
            color: white;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .help-link:hover {
            background: rgba(255,255,255,0.3);
        }

        .quick-info {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .info-icon {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #95a5a6;
            font-size: 14px;
        }

        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 1px;
                text-align: center;
            }

            .showcase-header h1 {
                font-size: 20px;
            }

            .casino-details {
                grid-template-columns: 1fr 1fr;
            }

            .pros-cons {
                grid-template-columns: 1fr;
            }

            .action-buttons {
                flex-direction: column;
            }

            .games-list {
                flex-wrap: wrap;
            }

            .footer-sections {
                grid-template-columns: 1fr;
            }
        }
		 h1 {
            color: #2c3e50;
            border-bottom: 3px solid #3498db;
            padding-bottom: 10px;
        }
        h2 {
            color: #34495e;
            margin-top: 30px;
        }
        h3 {
            color: #7f8c8d;
        }
        h4 {
            color: #95a5a6;
        }
        table {
            border-collapse: collapse;
            width: 100%;
            margin: 20px 0;
        }
        table, th, td {
            border: 1px solid #ddd;
        }
        th {
            background-color: #3498db;
            color: white;
            padding: 12px;
            text-align: left;
        }
        td {
            padding: 10px;
        }
        tr:nth-child(even) {
            background-color: #f2f2f2;
        }
        ul, ol {
            margin: 15px 0;
            padding-left: 30px;
        }
        li {
            margin: 8px 0;
        }
        strong {
            color: #2c3e50;
        }
        code {
            background-color: #f4f4f4;
            padding: 10px;
            display: block;
            margin: 15px 0;
            border-left: 4px solid #3498db;
        }
    .responsive-table {
        width: 100%;
        overflow-x: auto;
    }

    .responsive-table table {
        width: 100%;
        border-collapse: collapse;
        min-width: 600px; 
    }

    .responsive-table th, .responsive-table td {
        border: 1px solid #ddd;
        padding: 8px;
        text-align: left;
    }


    @media (max-width: 768px) {
        .responsive-table {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }
    }



.responsive-table-wrapper {
    width: 100%;
    overflow-x: auto;
  }

  .casino-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px; 
  }

  .casino-table th,
  .casino-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
    vertical-align: top;
  }


  .ranking-cell {
    text-align: center;
    font-weight: bold;
  }

  .ranking-number {
    font-size: 1.2em;
  }


  .games-list {
    font-size: 0.9em;
    color: #666;
    margin-top: 4px;
  }

  .license-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.85em;
    color: #fff;
    display: inline-block;
  }

  .license-mga {
    background-color: #4CAF50;
  }

  .license-emta {
    background-color: #2196F3;
  }

  .license-gcb {
    background-color: #f44336;
  }

  @media (max-width: 768px) {
    .responsive-table-wrapper {
      -webkit-overflow-scrolling: touch;
    }
  }

.responsive-img {
      max-width: 40%;
      height: auto;
      display: block;
    }
   .float-img {
      float: left;
      margin-right: 20px;
      margin-bottom: 15px;
      max-width: 320px;
      width: 100%;
      height: auto;
      border-radius: 8px;
    }

    .text-container {
      font-family: Arial, sans-serif;
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .float-img {
        float: none;
        display: block;
        margin: 0 auto 15px;
        max-width: 100%;
      }
    }
    </style>