    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

    :root {
      --primary: #9c27b0;
      --secondary: #ff9800;
      --light: #f8f9fa;
      --dark: #343a40;
      --success: #4caf50;
      --pink-light: #f3e5f5;
      --pink-darker: #d65ce1;
      --pink-bright: #ff4ec1;
      --red-alert: #b71c1c;
      --yellow: #f7d633;
      --blue: #3ad3fa;
      --blue-pale: #aaf1fd;
    }

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

    body {
      font-family: 'Poppins', sans-serif;
      color: var(--dark);
      background: #fff;
      line-height: 1.6;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px 40px;
    }

    .header {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      padding: 20px 0;
      border-bottom: 2px solid #f0f0f0;
      background: var(--light);
    }

    .logo {
      font-size: 24px;
      font-weight: bold;
      color: var(--primary);
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo img {
      height: 60px;
    }

    .menu {
      display: flex;
      gap: 20px;
    }

    .menu a {
      color: var(--dark);
      text-decoration: none;
      font-weight: 500;
      padding: 8px 4px;
    }

    .menu a:hover {
      color: var(--primary);
    }

    .lang-switcher {
      display: flex;
      gap: 14px;
      align-items: center;
    }

    .lang-switcher a {
      color: var(--dark);
      text-decoration: none;
      font-weight: 600;
    }

    .login-btn {
      background: var(--primary);
      color: white;
      padding: 8px 16px;
      border-radius: 20px;
      text-decoration: none;
      font-weight: 600;
      transition: background 0.3s;
    }

    .login-btn:hover {
      background: #7b1fa2;
    }

    /* Hero */
    .hero {
      background: linear-gradient(135deg, var(--pink-light), #e1bee7);
      padding: 80px 0;
      text-align: center;
      margin-bottom: 40px;
      border-radius: 0 0 25px 25px;
    }

    .hero h1 {
      font-size: 3rem;
      margin: 0;
      color: var(--primary);
      text-shadow: 0 0 12px var(--pink-darker);
    }

    .hero p {
      font-size: 1.1rem;
      margin: 20px 0;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      margin-top: 32px;
    }

    .btn {
      background: var(--primary);
      color: white;
      padding: 14px 32px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1rem;
      transition: all 0.3s;
      box-shadow: 0 4px 12px rgba(156, 39, 176, 0.3);
    }

    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(156, 39, 176, 0.5);
    }

    .btn.alt {
      background: var(--secondary);
      box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
    }

    .btn.alt:hover {
      box-shadow: 0 6px 20px rgba(255, 152, 0, 0.5);
    }

    /* Casino List */
    .casino-list {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 30px;
      margin: 40px 0;
    }

    .casino-card {
      background: var(--light);
      border-radius: 16px;
      padding: 25px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      text-align: center;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .casino-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(156, 39, 176, 0.2);
    }

    .casino-logo {
      width: 120px;
      height: auto;
      margin: 0 auto 15px;
    }

    .casino-title {
      font-size: 1.4rem;
      margin: 10px 0;
      color: var(--primary);
      font-weight: 700;
    }

    .casino-desc {
      color: #666;
      margin-bottom: 20px;
      font-size: 1rem;
    }

    .play-btn {
      background: var(--success);
      color: white;
      padding: 10px 24px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: 600;
      display: inline-block;
      transition: background-color 0.3s;
    }

    .play-btn:hover {
      background: #388e3c;
    }

    /* Text Section */
    section h2 {
      color: var(--primary);
      font-size: 2rem;
      text-align: center;
      margin: 40px 0 24px;
      text-shadow: 0 0 4px var(--pink-darker);
    }

    section p {
      max-width: 800px;
      margin: 0 auto 24px;
      font-size: 1.1rem;
    }

    /* Pros and Cons */
    .pros-cons {
      max-width: 900px;
      margin: 40px auto;
      padding: 25px;
      border-radius: 16px;
      box-shadow: 0 8px 30px rgba(156, 39, 176, 0.25);
      background: linear-gradient(135deg, #f8eafc, #ffffff);
    }

    .pros-cons h2 {
      text-align: center;
      color: var(--primary);
      font-size: 1.8rem;
      margin-bottom: 30px;
      text-shadow: 0 0 12px var(--pink-darker);
    }

    .pros-cons-content {
      display: flex;
      gap: 30px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .pros, .cons {
      flex: 1;
      min-width: 330px;
      max-width: 430px;
    }

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

    .pros li, .cons li {
      margin-bottom: 18px;
      display: flex;
      align-items: center;
      font-weight: 600;
      font-size: 1.1rem;
    }

    .pros li {
      color: #7b1fa2;
    }

    .pros li::before {
      content: "+";
      background: #e1bee7;
      color: #9c27b0;
      border-radius: 50%;
      height: 32px;
      width: 32px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 20px;
      margin-right: 12px;
      box-shadow: 0 0 8px var(--pink-darker);
    }

    .cons li {
      color: var(--red-alert);
    }

    .cons li::before {
      content: "−";
      background: #f8d7da;
      color: var(--red-alert);
      border-radius: 50%;
      height: 32px;
      width: 32px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 20px;
      margin-right: 12px;
      box-shadow: 0 0 8px #e57373;
    }

    /* Providers Table */
    .providers {
      max-width: 960px;
      margin: 60px auto 80px;
      overflow-x: auto;
    }

    .providers h2 {
      text-align: center;
      color: var(--primary);
      font-size: 1.8rem;
      margin-bottom: 24px;
      text-shadow: 0 0 4px var(--pink-darker);
    }

    .provider-table {
      width: 100%;
      border-collapse: collapse;
      box-shadow: 0 10px 25px rgba(156, 39, 176, 0.1);
      background: white;
      border-radius: 12px;
      overflow: hidden;
    }

    .provider-table thead {
      background-color: var(--primary);
      color: #fff;
      font-weight: 700;
    }

    .provider-table th,
    .provider-table td {
      padding: 14px 16px;
      text-align: center;
      border-bottom: 1px solid #eee;
    }

    .provider-table tbody tr:nth-child(odd) {
      background: #fafafa;
    }

    .provider-table tbody tr:hover {
      background: #f5f5f5;
    }

    .provider-logo {
      height: 40px;
      margin: 6px 0;
    }

    .action-btn {
      background: var(--primary);
      color: #fff;
      border: none;
      padding: 8px 16px;
      border-radius: 16px;
      font-weight: 700;
      cursor: pointer;
      transition: background 0.3s;
      box-shadow: 0 0 14px var(--pink-darker);
      text-decoration: none;
      font-size: 0.9rem;
    }

    .action-btn:hover {
      background: #7b1fa2;
    }

    /* FAQ Section */
    .faq-section {
      max-width: 900px;
      margin: 60px auto;
    }

    .faq-item {
      margin-bottom: 20px;
      padding-bottom: 12px;
      border-bottom: 1px solid #eee;
    }

    .faq-question {
      font-weight: 600;
      font-size: 1.2rem;
      color: var(--primary);
      cursor: pointer;
      display: flex;
      align-items: center;
      margin-bottom: 8px;
    }

    .faq-question::after {
      content: "+";
      margin-left: 10px;
      font-weight: 700;
      font-size: 1.3rem;
      transition: transform 0.3s;
    }

    .faq-item.active .faq-question::after {
      content: "−";
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      color: #444;
      font-size: 1rem;
      line-height: 1.5;
    }

    .faq-item.active .faq-answer {
      max-height: 200px;
      margin-top: 8px;
    }

    /* Sticky CTA Button */
    .sticky-cta {
      position: fixed;
      bottom: 25px;
      right: 25px;
      background: var(--primary);
      color: #fff;
      padding: 14px 32px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1rem;
      box-shadow: 0 4px 12px rgba(156, 39, 176, 0.5);
      z-index: 1000;
      transition: background 0.3s;
    }

    .sticky-cta:hover {
      background: #7b1fa2;
    }

    /* Footer */
    .footer {
      background: var(--dark);
      color: #fff;
      padding: 40px 15px 60px;
      text-align: center;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 24px;
      margin-bottom: 22px;
    }

    .footer-links a {
      color: #bdbdbd;
      font-weight: 500;
      text-decoration: none;
      transition: color 0.2s;
    }

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

    .footer-contact {
      color: #bdbdbd;		
      font-weight: 500;
      font-size: 1.05rem;
    }

    .footer-lang {
      margin: 16px 0;
      font-weight: 600;
      font-size: 1rem;
    }

    .footer-lang a {
      color: #bdbdbd;
      margin: 0 10px;
      text-decoration: none;
    }

    .footer-lang a:hover {
      color: #fff;
    }

    .social-icons {
      margin-top: 20px;
    }

    .social-icons a {
      color: #bdbdbd;
      font-size: 22px;
      margin: 0 6px;
      transition: color 0.2s;
    }

    .social-icons a:hover {
      color: #fff;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .header {
        flex-direction: column;
        gap: 15px;
      }
      .menu {
        flex-wrap: wrap;
        justify-content: center;
      }
      .hero h1 {
        font-size: 2.2rem;
      }
      .pros-cons-content {
        flex-direction: column;
      }
    }

    /* Address Schema.org */
    [itemscope][itemtype="https://schema.org/Organization"] [itemprop="address"] {
      display: inline;
    }
	
	/* General typography */
body, p, ul, ol, li {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333333;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 1em 0;
}

/* Headings */
h1, h2, h3, h4 {
  font-weight: 600;
  color: #4a148c; /* Deep purple shade */
  margin-top: 1.4em;
  margin-bottom: 0.6em;
}

/* Links */
a {
  color: #9c27b0;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
thead tr {
  background-color: #9c27b0;
  color: white;
  text-align: center;
}
tbody tr:nth-child(odd) {
  background-color: #f9f4fb;
}
tbody tr:nth-child(even) {
  background-color: #ffffff;
}
th, td {
  padding: 12px 15px;
  text-align: center;
}

/* Buttons */
.cta-button, .btn-link {
  background-color: #9c27b0;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 6px;
  display: inline-block;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}
.cta-button:hover, .btn-link:hover {
  background-color: #7b1fa2;
}

/* Lists */
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 0.5em;
}

/* Content container */
.main-content, .article-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* author */
        .author-card {
            font-family: 'Arial', sans-serif;
            background-color: #fff;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            gap: 2rem;
            max-width: 800px;
            margin: 2rem auto;
            border: 1px solid #eee;
        }

        .author-photo {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid #f7a12b;
        }

        .author-content h3 {
            margin: 0 0 0.5rem 0;
            color:#1a237e;
            font-size: 1.5rem;
        }

        .author-content p {
            margin: 0;
            color: #333;
            line-height: 1.6;
        }