*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #374151;
  background-color: #f9fafb;
}
a {
  color: #059669;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul,
ol {
  padding-left: 1.5rem;
}

.container {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

.site-header {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo-icon {
  width: 2rem;
  height: 2rem;
  background: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  font-size: 0.875rem;
  border-radius: 0.25rem;
}
.logo-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.logo-text {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}
.cta-button {
  display: inline-block;
  padding: 0.625rem 1.5rem;
  background: linear-gradient(to right, #059669, #14b8a6);
  color: #fff;
  font-weight: 700;
  border-radius: 9999px;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.cta-button:hover {
  background: linear-gradient(to right, #047857, #0d9488);
  text-decoration: none;
}

main {
  padding: 1.5rem 0;
}

.card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.25;
}
@media (min-width: 640px) {
  h1 {
    font-size: 1.875rem;
  }
}
@media (min-width: 1024px) {
  h1 {
    font-size: 2.25rem;
  }
}
h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #059669;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
h4 {
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}
p {
  color: #374151;
  line-height: 1.75;
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}

.article-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .article-header {
    flex-direction: row;
  }
}
.article-image {
  flex-shrink: 0;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .article-image {
    margin: 0;
  }
}
.article-image img {
  width: 10rem;
  height: 10rem;
  object-fit: cover;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.article-content {
  flex: 1;
}

.author-snippet {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid #f3f4f6;
  font-size: 0.875rem;
}
.author-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.author-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  object-fit: cover;
}
.author-label {
  color: #6b7280;
}
.author-name {
  font-weight: 500;
  color: #111827;
  margin-left: 0.25rem;
}
.updated-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6b7280;
}
.icon-sm {
  width: 1rem;
  height: 1rem;
}

.info-box {
  background: linear-gradient(to right, #ecfdf5, #d1fae5);
  border-radius: 0.75rem;
  padding: 1.25rem;
  border: 1px solid #a7f3d0;
  margin: 1.5rem 0;
}
.info-box-title {
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.info-box p {
  color: #374151;
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
}

.warning-box {
  background: linear-gradient(to right, #fffbeb, #fef3c7);
  border-radius: 0.75rem;
  padding: 1.25rem;
  border: 1px solid #fcd34d;
  margin: 1.5rem 0;
}
.warning-box-header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.warning-icon-wrap {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: #fef3c7;
  display: flex;
  align-items: center;
  justify-content: center;
}
.warning-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #d97706;
}
.warning-title {
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.25rem;
}
.warning-text {
  color: #4b5563;
  font-size: 0.875rem;
}

.highlight-box {
  background: #f0fdf4;
  border-left: 4px solid #059669;
  padding: 1rem 1.25rem;
  border-radius: 0 0.5rem 0.5rem 0;
  margin: 1rem 0;
}
.highlight-box p {
  color: #374151;
  font-size: 0.9375rem;
  margin: 0;
  font-style: italic;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}
@media (max-width: 640px) {
  .stat-grid {
    grid-template-columns: 1fr;
  }
}
.stat-item {
  background: linear-gradient(to bottom right, #ecfdf5, #d1fae5);
  border-radius: 0.75rem;
  padding: 1.25rem;
  text-align: center;
  border: 1px solid #a7f3d0;
}
.stat-icon {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 0.75rem;
  background: #059669;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #fff;
}
.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
}
.stat-label {
  font-size: 0.875rem;
  color: #6b7280;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}
@media (max-width: 640px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}
.feature-item {
  background: linear-gradient(to bottom right, #f0fdf4, #dcfce7);
  border-radius: 0.75rem;
  padding: 1.25rem;
  border: 1px solid #bbf7d0;
}
.feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.feature-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #fff;
}
.feature-title {
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}
.feature-text {
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.5;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin: 1.5rem 0;
}
@media (max-width: 640px) {
  .payment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.payment-item {
  background: #f9fafb;
  border-radius: 0.5rem;
  padding: 1rem;
  text-align: center;
  border: 1px solid #e5e7eb;
}
.payment-icon {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 0.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.payment-icon.emerald {
  background: #d1fae5;
}
.payment-icon.teal {
  background: #ccfbf1;
}
.payment-icon.amber {
  background: #fef3c7;
}
.payment-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}
.payment-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
}

.tip-box {
  margin-top: 1rem;
  padding: 1rem;
  background: #f9fafb;
  border-radius: 0.5rem;
  border-left: 4px solid #059669;
}
.tip-box p {
  color: #374151;
  font-size: 0.875rem;
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.tip-box svg {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  color: #059669;
  margin-top: 0.125rem;
}

.casino-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  margin-bottom: 1.5rem;
}
.casino-card img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.pros-cons-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}
.pros-cons-table th {
  background: #f9fafb;
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid #e5e7eb;
}
.pros-cons-table th:first-child {
  color: #059669;
}
.pros-cons-table th:last-child {
  color: #dc2626;
}
.pros-cons-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #f3f4f6;
  vertical-align: top;
}
.pros-cons-table tr:last-child td {
  border-bottom: none;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-question {
  width: 100%;
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-weight: 600;
  color: #111827;
  font-size: 1rem;
}
.faq-question:hover {
  color: #059669;
}
.faq-question svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #6b7280;
  transition: transform 0.2s;
}
.faq-item[open] .faq-question svg {
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 0 1rem 0;
  color: #4b5563;
  line-height: 1.75;
}

.author-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .author-block {
    flex-direction: row;
  }
}
.author-block-avatar {
  flex-shrink: 0;
}
.author-block-avatar img {
  width: 5rem;
  height: 5rem;
  border-radius: 9999px;
  object-fit: cover;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .author-block-avatar img {
    margin: 0;
  }
}
.author-block-content {
  flex: 1;
  text-align: center;
}
@media (min-width: 640px) {
  .author-block-content {
    text-align: left;
  }
}
.author-block-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
}
.author-block-role {
  color: #059669;
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.author-block-bio {
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.author-block-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.875rem;
}
@media (min-width: 640px) {
  .author-block-links {
    justify-content: flex-start;
  }
}
.author-block-links a {
  color: #059669;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.author-block-links a:hover {
  color: #047857;
}
.author-block-links svg {
  width: 1rem;
  height: 1rem;
}
.author-block-links span {
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.responsible-banner {
  background: linear-gradient(to right, #f59e0b, #ea580c);
  padding: 1rem 0;
  margin-top: 3rem;
}
.responsible-banner .container {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.responsible-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.responsible-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #fff;
}
.responsible-title {
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}
.responsible-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  line-height: 1.5;
}
.responsible-text a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}
.responsible-text a:hover {
  text-decoration: none;
}

footer {
  background: #111827;
  color: #fff;
  padding: 2.5rem 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.footer-title {
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer-list {
  list-style: none;
  padding: 0;
}
.footer-list li {
  margin-bottom: 0.75rem;
}
.footer-list a {
  color: #9ca3af;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.2s;
}
.footer-list a:hover {
  color: #fff;
  text-decoration: none;
}
.footer-list svg {
  width: 0.75rem;
  height: 0.75rem;
}
.footer-info {
  color: #9ca3af;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-info svg {
  width: 1rem;
  height: 1rem;
  color: #6b7280;
}
.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  text-align: center;
}
.footer-disclaimer {
  color: #6b7280;
  font-size: 0.75rem;
  line-height: 1.6;
  max-width: 48rem;
  margin: 0 auto 1.5rem;
}
.footer-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: #6b7280;
  font-size: 0.75rem;
}
.footer-dot {
  width: 0.25rem;
  height: 0.25rem;
  background: #4b5563;
  border-radius: 9999px;
}

.icon {
  width: 1.5rem;
  height: 1.5rem;
}
.icon-emerald {
  color: #059669;
}
.icon-red {
  color: #dc2626;
}
.icon-white {
  color: #fff;
}

/* Read More Accordion */
.read-more-toggle {
  display: none;
}
.read-more-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}
.read-more-toggle:checked + .read-more-content {
  max-height: 500px;
  opacity: 1;
}
.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.625rem 1.25rem;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 1px solid #86efac;
  color: #059669;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.2s;
}
.read-more-btn:hover {
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
  border-color: #4ade80;
}
.read-more-btn svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s;
}
.read-more-toggle:checked ~ .read-more-btn svg {
  transform: rotate(180deg);
}
.read-more-toggle:checked ~ .read-more-btn .btn-text-more {
  display: none;
}
.read-more-toggle:not(:checked) ~ .read-more-btn .btn-text-less {
  display: none;
}

/* Hero Card Read More */
.hero-toggle {
  display: none;
}
.hero-card .hero-teaser {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 0;
}
.hero-card .hero-expanded-text {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}
.hero-card .hero-expanded-text p {
  color: #4b5563;
  line-height: 1.7;
  margin-top: 1rem;
  margin-bottom: 0;
}
.hero-card .hero-expanded-text p + p {
  margin-top: 1rem;
}
.hero-card:has(.hero-toggle:checked) .hero-expanded-text {
  max-height: 1000px;
  opacity: 1;
}
.hero-read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 1px solid #86efac;
  color: #059669;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.2s;
}
.hero-read-more-btn:hover {
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
  border-color: #4ade80;
}
.hero-read-more-btn svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s;
}
.hero-card:has(.hero-toggle:checked) .hero-read-more-btn svg {
  transform: rotate(180deg);
}
.hero-card:has(.hero-toggle:checked) .hero-read-more-btn .btn-show {
  display: none;
}
.hero-card:not(:has(.hero-toggle:checked)) .hero-read-more-btn .btn-hide {
  display: none;
}

/* Enhanced Content Blocks */
.content-block {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 2px 4px -2px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}
.content-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #059669, #14b8a6, #06b6d4);
}

/* Image Card Block */
.image-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  margin: 1.5rem 0;
}
@media (min-width: 768px) {
  .image-card {
    grid-template-columns: 200px 1fr;
  }
}
.image-card.reverse {
  direction: rtl;
}
.image-card.reverse > * {
  direction: ltr;
}
.image-card-img {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.1);
}
.image-card-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.3s;
}
.image-card-img:hover img {
  transform: scale(1.05);
}

/* Numbered Steps */
.numbered-steps {
  counter-reset: step;
  margin: 1.5rem 0;
}
.numbered-step {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding: 1rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 0.75rem;
  border-left: 3px solid #059669;
}
.numbered-step::before {
  counter-increment: step;
  content: counter(step);
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, #059669, #14b8a6);
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(5, 150, 105, 0.3);
}
.numbered-step-content h4 {
  margin: 0 0 0.25rem;
  color: #111827;
  font-size: 1rem;
}
.numbered-step-content p {
  margin: 0;
  color: #4b5563;
  font-size: 0.9375rem;
}

/* Enhanced Tables */
.styled-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 1.5rem 0;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.styled-table thead {
  background: linear-gradient(135deg, #059669 0%, #14b8a6 100%);
}
.styled-table th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 600;
  color: #fff;
  font-size: 0.9375rem;
}
.styled-table tbody tr {
  background: #fff;
  transition: background 0.2s;
}
.styled-table tbody tr:nth-child(even) {
  background: #f9fafb;
}
.styled-table tbody tr:hover {
  background: #f0fdf4;
}
.styled-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #e5e7eb;
  color: #374151;
}
.styled-table tbody tr:last-child td {
  border-bottom: none;
}

/* Icon List */
.icon-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f3f4f6;
}
.icon-list li:last-child {
  border-bottom: none;
}
.icon-list-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  background: #d1fae5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.125rem;
}
.icon-list-icon svg {
  width: 0.875rem;
  height: 0.875rem;
  color: #059669;
}
.icon-list-content strong {
  color: #111827;
  display: block;
  margin-bottom: 0.125rem;
}
.icon-list-content span {
  color: #6b7280;
  font-size: 0.875rem;
}

/* Quote Block */
.quote-block {
  background: linear-gradient(135deg, #fafafa 0%, #f4f4f5 100%);
  border-radius: 1rem;
  padding: 2rem;
  margin: 1.5rem 0;
  position: relative;
}
.quote-block::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  font-size: 6rem;
  color: #d4d4d8;
  font-family: Georgia, serif;
  line-height: 1;
}
.quote-block p {
  position: relative;
  z-index: 1;
  font-size: 1.125rem;
  color: #374151;
  font-style: italic;
  line-height: 1.75;
  margin: 0;
}

/* Badge Pills */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}
.badge-emerald {
  background: #d1fae5;
  color: #065f46;
}
.badge-amber {
  background: #fef3c7;
  color: #92400e;
}
.badge-blue {
  background: #dbeafe;
  color: #1e40af;
}
.badge-red {
  background: #fee2e2;
  color: #991b1b;
}

/* Card Grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}
.mini-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.mini-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: #a7f3d0;
}
.mini-card-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.mini-card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #059669;
}
.mini-card h4 {
  color: #111827;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}
.mini-card p {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

/* Section Divider */
.section-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2.5rem 0;
}
.section-divider::before,
.section-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d1d5db, transparent);
}
.section-divider span {
  color: #9ca3af;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Enhanced Pros/Cons */
.pros-cons-enhanced {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0;
}
@media (max-width: 640px) {
  .pros-cons-enhanced {
    grid-template-columns: 1fr;
  }
}
.pros-column,
.cons-column {
  background: #fff;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}
.pros-column .column-header {
  background: linear-gradient(135deg, #059669, #14b8a6);
  padding: 1rem 1.25rem;
}
.cons-column .column-header {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  padding: 1rem 1.25rem;
}
.column-header h4 {
  color: #fff;
  font-size: 1rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.column-header svg {
  width: 1.25rem;
  height: 1.25rem;
}
.column-items {
  padding: 1rem;
}
.column-items li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.625rem 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: 0.9375rem;
  color: #374151;
}
.column-items li:last-child {
  border-bottom: none;
}
.column-items li svg {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  margin-top: 0.125rem;
}
.pros-column .column-items li svg {
  color: #059669;
}
.cons-column .column-items li svg {
  color: #dc2626;
}

/* Casino Review Card Enhanced */
.casino-review-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.casino-review-header {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.casino-review-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.casino-review-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}
.casino-review-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, #059669, #14b8a6);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.casino-review-rating {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: #111827;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.casino-review-rating svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #fbbf24;
  fill: #fbbf24;
}
.casino-review-body {
  padding: 1.5rem;
}
.casino-review-body h3 {
  font-size: 1.25rem;
  color: #111827;
  margin-bottom: 0.5rem;
}
.casino-review-body p {
  color: #6b7280;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.casino-review-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.casino-review-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #059669, #14b8a6);
  color: #fff;
  font-weight: 600;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.2s;
}
.casino-review-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.4);
  text-decoration: none;
}
.casino-review-cta svg {
  width: 1rem;
  height: 1rem;
}

/* Comparison Table Enhanced */
.comparison-table-wrapper {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.comparison-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
}
.comparison-table thead th {
  background: linear-gradient(135deg, #1f2937, #374151);
  color: #fff;
  padding: 1rem;
  text-align: center;
  font-weight: 600;
}
.comparison-table thead th:first-child {
  text-align: left;
}
.comparison-table tbody td {
  padding: 1rem;
  border-bottom: 1px solid #e5e7eb;
  text-align: center;
  background: #fff;
}
.comparison-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: #111827;
  background: #f9fafb;
}
.comparison-table tbody tr:hover td {
  background: #f0fdf4;
}
.comparison-table tbody tr:hover td:first-child {
  background: #ecfdf5;
}
.comparison-check {
  color: #059669;
}
.comparison-cross {
  color: #dc2626;
}

/* Animated Counter */
.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}
@media (max-width: 768px) {
  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.counter-item {
  background: linear-gradient(135deg, #fff, #f9fafb);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid #e5e7eb;
  position: relative;
  overflow: hidden;
}
.counter-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #059669, #14b8a6);
}
.counter-value {
  font-size: 2rem;
  font-weight: 700;
  color: #059669;
  display: block;
}
.counter-label {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 0.25rem;
}

.header-logo {
	background-color: transparent !important;
	width: 11rem !important;
	height: auto !important;
}

.footer-logo {
	background-color: #ffffff !important;
	border-radius: 8px !important;
	padding: 5px !important;
}