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

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
      background: #eaf4ff;
      color: #181b23;
      line-height: 1.4;
    }

    .page-wrapper {
      max-width: 700px;
      margin: 0 auto;
      padding: 0px 10px;
    }

    /* HEADER */
    .site-header {
      text-align: center;
      margin-bottom: 30px;
    }

    .site-logo {
      display: none;
    }

    .site-title {
      font-size: 32px;
      font-weight: 800;
      margin: 14px;
    }

    .site-subtitle {
      font-size: 18px;
      color: #4d5567;
      margin: 24px;
      line-height: 1.6;
    }

    .site-subtitle p {
      margin: 0;
    }

    .site-subtitle p + p {
      margin-top: 10px;
    }

    /* CASINO LIST */
    .casino-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 0 0 20px 0;
}

    .casino-card {
      position: relative;
      background: #ffffff;
      border-radius: 16px;
      box-shadow: 0 8px 20px rgba(0, 21, 64, 0.08);
      padding: 22px 24px;
    }

    .casino-card.featured-1 {
      background: #fff7d6;
      border: 1px solid #fde68a;
    }

    .casino-card.featured-2 {
      background: #eaf4ff;
      border: 1px solid #bfdbfe;
    }

    .casino-card.featured-3 {
      background: #f4ecff;
      border: 1px solid #e0d4ff;
    }

    .order-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: #ffdd3c;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
    }

    .tag-most-popular {
      position: absolute;
      top: 10px;
      right: 20px;
      background: #ffdd3c;
      padding: 4px 14px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
    }

    .casino-card-inner {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    /* LOGO */
    .visit-btn {
      background: none;
      border: none;
      padding: 0;
      cursor: pointer;
    }

    .logo-btn img {
      width: 160px;
      height: 80px;
      object-fit: contain;
      display: block;
    }

    /* HEADER ROW */
    .casino-header-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}
    .casino-main-info {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .casino-name {
      font-size: 22px;
      font-weight: 800;
    }

    .rating-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.rating-country {
    display: flex;
    align-items: center;
    gap: 6px;
}

    .stars {
      color: #fbbf24;
      letter-spacing: 1px;
    }

    .flag {
      width: 22px;
      height: 16px;
      border-radius: 2px;
      background: linear-gradient(to bottom, #ae1c28 0 33%, #ffffff 33% 66%, #21468b 66% 100%);
      border: 1px solid rgba(0,0,0,0.15);
    }

    /* BONUS BLOCK */
    .bonus-block {
      text-align: center;
      margin-top: 10px;
    }

    .bonus-label {
      font-size: 14px;
      text-transform: uppercase;
      color: #6b7280;
    }

    .bonus-text {
      font-size: 32px;
      font-weight: 800;
      color: #111827;
      margin-top: 4px;
    }

    .bonus-fineprint {
      font-size: 11px;
      color: #9ca3af;
      margin-top: 4px;
    }

    /* PAYMENTS */
    .payments-row {
      display: flex;
      width: 100%;
      justify-content: center;
      flex-wrap: wrap;
      gap: 8px;
      align-items: center;
    }

    .payments-row img {
      width: 50px;
      height: 30px;
      object-fit: contain;
    }

    /* CTA BUTTON */
    .cta-wrapper {
      margin-top: 18px;
    }

    .cta-button {
      width: 100%;
      padding: 14px;
      border: none;
      background: #0069ff;
      color: white;
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      box-shadow: 0 8px 16px rgba(0, 105, 255, 0.35);
      text-transform: uppercase;
    }

    .cta-subtext {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
      margin-top: 6px;
      color: #111;
      font-size: 14px;
    }

    .cta-subtext i {
      color: #10b981;
      font-size: 16px;
    }

    .disclaimer {
      margin-top: 14px;
      text-align: center;
      font-size: 11px;
      color: #9ca3af;
    }

    /* MOBILE LAYOUT — STACKED HEADER */
    @media (max-width: 480px) {
      .casino-header-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
      }

      .casino-main-info {
        align-items: center;
        text-align: center;
      }

      .rating-row {
        justify-content: center;
      }
    }
    
/* FOOTER */
.site-footer {
  background: #eaf4ff;
  padding: 0px 20px 20px 20px;
  margin-top: 50px;
}

.footer-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.footer-title {
  font-size: 22px;
  font-weight: 700;
  color: #181b23;
  margin-bottom: 20px;
}

.footer-partners-title {
  font-size: 18px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 25px;
}

.footer-divider {
  border: none;
  height: 1px;
  background-color: rgba(0,0,0,0.15);
  margin: -10px 0 10px 0;
}

.footer-copy {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.5;
}

/* MOBILE FOOTER */
@media (max-width: 480px) {
  .footer-logos img {
    height: 32px;
  }
  .footer-title {
    font-size: 20px;
  }
  .footer-partners-title {
    font-size: 16px;
  }
  .footer-copy {
    font-size: 13px;
  }
}

/* RESPONSIBLE GAMING TEXT */
.footer-responsible-text {
  font-size: 15px;
  color: #374151;
  max-width: 600px;
  margin: 0 auto 25px auto;
  line-height: 1.5;
}

.subscribe-section {
    max-width: 680px;
    margin: 40px auto;
    background: #ffffff;
    padding: 36px 28px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 21, 64, 0.08);
}

.subscribe-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.subscribe-text {
    font-size: 16px;
    color: #374151;
    margin-bottom: 20px;
}
.subscribe-form {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.subscribe-form input[type="email"] {
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    width: 260px;
    font-size: 16px;
}
.subscribe-form button {
    background: #0069ff;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}
.subscribe-form button:hover {
    background: #0054cc;
}
.subscribe-message {
    margin-top: 15px;
    font-size: 15px;
    color: #0f5132;
    font-weight: 600;
}

.top-links {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    margin-bottom: 20px;
    padding: 10px 24px;
}

.top-link {
    background: transparent;
    border: none;
    color: #0069ff;
    font-size: 16px;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
}

.top-link:hover {
    opacity: 0.7;
}

/* POPUP OVERLAY */
.popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(2px);
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 9999;
}

/* POPUP WINDOW */
.popup-content {
    background: #ffffff;
    max-width: 700px;
    width: 100%;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    position: relative;
}

/* POPUP CLOSE BUTTON */
.popup-close {
    position: absolute;
    right: 18px;
    top: 18px;
    border: none;
    background: transparent;
    font-size: 28px;
    cursor: pointer;
    color: #333;
}
.popup-content h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
}
.popup-content p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #333;
}

@media (max-width: 600px) {
    .top-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content:
        gap: 12px 20px;
    }
    .top-link {
        font-size: 16px;
        white-space: nowrap;
    }
    .popup-content {
        padding: 24px;
    }
    .popup-content h2 {
        font-size: 24px;
    }
}
.footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    margin: 30px 0 10px;
    flex-wrap: wrap;
    opacity: 0.9;
}

.footer-logos img {
    height: 36px;
    width: auto;
    object-fit: contain;
    filter: grayscale(30%);
    transition: 0.2s ease;
}

.footer-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Mobile */
@media (max-width: 600px) {
    .footer-logos img {
        height: 30px;
    }
    .footer-logos {
        gap: 18px;
    }
}
.players-row {
    margin-top: 12px;
    text-align: center;
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    color: #333;
}

.players-row i {
    color: #0a7cff; 
    font-size: 18px;
}

.players-count {
    font-weight: 700;
    color: #0a7cff;
}
.contact-section {
  max-width: 700px;
  margin: 40px auto;
  text-align: center;
}

.contact-section h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.contact-text {
  font-size: 17px;
  color: #555;
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0 10px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #ccd6e0;
  font-size: 16px;
  font-family: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  background: #0069ff;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
}

.contact-form button:hover {
  opacity: 0.9;
}

.form-message {
  margin-top: 12px;
  font-size: 15px;
}

.trustpilot-plain {
  max-width: 680px;
  margin: 20px auto;
  padding: 12px 14px;
  background: #ffffff;
  border: 1px solid #dce6f3;
  border-radius: 12px;
  text-align: center;
  color: #1f2937;
  font-size: 15px;
}

.trustpilot-plain a {
  margin-left: 6px;
  color: #0069ff;
  font-weight: 700;
  text-decoration: none;
}

.trustpilot-plain a:hover {
  text-decoration: underline;
}

.vote-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.vote-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  opacity: 0.35;
  font-size: 20px;
  transition: 0.2s;
}

.vote-btn.active {
  opacity: 1;
}

.vote-up.active {
  color: #16a34a;
}

.vote-down.active {
  color: #dc2626;
}

.vote-score {
  font-weight: 700;
  font-size: 15px;
}

.vote-positive {
  color: #16a34a;
}

.vote-negative {
  color: #dc2626;
}

.auth-bar {
    margin: 0;
}

.auth-bar-inner {
    padding: 10px 18px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    background: #0a7cff;
    border-radius: 16px 16px 0 0;
}

.auth-actions {
  margin-left: auto;
  display: flex;
  gap: 16px;
}

.auth-logo-link {
  text-decoration: none;
}

.auth-link {
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  font-weight: 600;

}

.auth-link:hover {
  opacity: 0.8;
}
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 10px;
}

.auth-form input[type="email"] {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #ccd6e0;
  font-size: 16px;
  font-family: inherit;
}

.auth-submit {
  background: #0069ff;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
}

.auth-submit:hover {
  opacity: 0.9;
}

.auth-message {
  margin-top: 12px;
  font-size: 15px;
}

.info-section {
    max-width: 680px;
    margin: 20px auto;
    background: #ffffff;
    border-radius: 24px;
    padding: 24px 20px;
}

@media (max-width: 768px) {
    .info-section {
        margin: 40px 10px;
        padding: 28px 16px;
    }
}

.content-text {
    margin: 0;
    padding: 0;
    background: transparent;
}

.content-text p {
    font-size: 16px;
    line-height: 1.65;
    color: #374151;
    margin-bottom: 18px;
}

.content-text h3 {
    padding-bottom: 10px;
}

.hero-section {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    margin: 20px 0 20px;
}

@media (max-width: 768px) {

  .subscribe-section {
      margin: 40px 10px;
      padding: 28px 16px;
  }

  .subscribe-form {
      flex-direction: column;
      align-items: stretch;
      gap: 14px;
  }

  .subscribe-form input[type="email"] {
      width: 100%;
      margin: 0;
      box-sizing: border-box;
  }

  .subscribe-form button {
      margin: 0 24px;
      width: auto;
  }

}
