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

:root {
  --bg-dark: #1a1a1a;
  --bg-darker: #0f0f0f;
  --bg-card: #2a2a2a;
  --bg-card-hover: #333333;
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --text-muted: #808080;
  --accent-orange: #ff8c42;
  --accent-yellow: #ffd700;
  --border-color: #3a3a3a;
  --border-highlight: #4a4a4a;
  --rating-gold: #ffd700;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-darker);
  color: var(--text-primary);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}
@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

.header {
  background-color: var(--bg-dark);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-color);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
}

.logo img {
  height: 32px;
  width: auto;
}

.logo-fallback {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  font-size: 24px;
}

.logo-text {
  font-size: 20px;
  font-weight: 600;
}

.nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

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

.hero {
  background-color: var(--bg-dark);
  padding: 60px 0 80px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}

.update-date {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 32px;
}

.features-list {
  list-style: none;
  margin-bottom: 32px;
}

.features-list li {
  padding: 8px 0;
  font-size: 16px;
  color: var(--text-secondary);
}

.badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--bg-card);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
}

.badge-icon {
  font-size: 18px;
}

.disclaimer {
  color: var(--text-muted);
  font-size: 12px;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.slot-machine {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #ff6b35 100%);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(255, 140, 66, 0.3);
}

.slot-display {
  background-color: #1a1a1a;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  gap: 16px;
  justify-content: center;
}

.slot-symbol {
  background-color: #ffffff;
  width: 80px;
  height: 80px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: bold;
  color: #000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.slots-section {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 48px;
  color: var(--accent-yellow);
}

#slots-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}

.slot-card {
  background-color: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 32px;
  align-items: center;
  transition: border-color 0.3s, transform 0.2s;
  position: relative;
}

.slot-card:hover {
  border-color: var(--border-highlight);
  transform: translateY(-2px);
}

.slot-card.featured {
  border-color: var(--accent-orange);
}

.badge-label {
  position: absolute;
  top: -12px;
  left: 24px;
  background-color: var(--accent-orange);
  color: #fff;
  padding: 4px 16px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.slot-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.slot-logo img {
  max-width: 180px;
  max-height: 60px;
  object-fit: contain;
  filter: brightness(1.2);
}

.slot-logo-fallback {
  background-color: var(--bg-darker);
  padding: 20px 40px;
  border-radius: 8px;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
}

.slot-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rating-container {
  display: flex;
  align-items: center;
  gap: 16px;
}

.rating-score {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-yellow);
}

.rating-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stars {
  color: var(--rating-gold);
  font-size: 18px;
  letter-spacing: 2px;
}

.views {
  color: var(--text-muted);
  font-size: 13px;
}

.bonus-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bonus-label {
  color: var(--accent-yellow);
  font-size: 14px;
  font-weight: 600;
}

.bonus-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.terms {
  color: var(--text-muted);
  font-size: 11px;
  line-height: 1.4;
  margin-top: 8px;
}

.slot-cta {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-button {
  background-color: var(--accent-orange);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
  white-space: nowrap;
}

.cta-button:hover {
  background-color: #ff7a33;
  transform: scale(1.02);
}

.cta-button:active {
  transform: scale(0.98);
}

.info-box {
  background-color: var(--bg-card);
  border-left: 4px solid var(--accent-orange);
  padding: 20px 24px;
  border-radius: 8px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.info-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.info-box p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.faq-section {
  padding: 60px 0;
  background-color: var(--bg-dark);
}

.faq-item {
  margin-bottom: 40px;
}

.faq-item h3 {
  color: var(--accent-yellow);
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 600;
}

.faq-item p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

.trust-section {
  background-color: var(--bg-darker);
  padding: 48px 0;
  text-align: center;
}

.trust-section h3 {
  font-size: 28px;
  margin-bottom: 32px;
  font-weight: 600;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
}

.trust-badge span:first-child {
  font-size: 40px;
}

.footer {
  background-color: var(--bg-dark);
  padding: 48px 0 32px;
  border-top: 1px solid var(--border-color);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-color);
}

.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 12px;
}

.disclaimer-text {
  font-size: 12px !important;
  line-height: 1.6;
}

.footer-icons {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 32px;
}

@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .slot-card {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .slot-logo {
    justify-content: center;
  }

  .rating-container {
    justify-content: center;
  }

  .bonus-info {
    align-items: center;
  }

  .nav {
    gap: 16px;
  }

  .nav a {
    font-size: 13px;
  }

  .footer-top {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
  }

  .section-title {
    font-size: 28px;
  }

  .badges {
    justify-content: center;
  }

  .slot-machine {
    padding: 24px;
  }

  .slot-display {
    gap: 8px;
  }

  .slot-symbol {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .slot-card {
    padding: 20px;
  }

  .rating-score {
    font-size: 36px;
  }

  .trust-badges {
    gap: 32px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 12px;
  }
}

.nav a.active {
  color: var(--accent-yellow);
}

.about-hero {
  background-color: var(--bg-dark);
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-hero h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-yellow);
  margin-bottom: 12px;
}

.last-updated {
  color: var(--text-muted);
  font-size: 14px;
}

.about-section {
  padding: 60px 0;
}

.about-section .container {
  max-width: 900px;
}

.content-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 32px;
}

.content-card h2 {
  color: var(--accent-yellow);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border-color);
}

.content-card h3 {
  color: var(--accent-orange);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  margin-top: 24px;
}

.content-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.content-card ul,
.content-card ol {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
  padding-left: 24px;
}

.content-card li {
  margin-bottom: 12px;
}

.expertise-list li {
  margin-bottom: 16px;
}

.expertise-list strong {
  color: var(--text-primary);
}

.service-section {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.service-section:first-child {
  margin-top: 24px;
  padding-top: 0;
  border-top: none;
}

.standard-section {
  margin-top: 32px;
  padding: 24px;
  background-color: var(--bg-darker);
  border-radius: 12px;
  border-left: 4px solid var(--accent-orange);
}

.standard-section:first-child {
  margin-top: 24px;
}

.standard-section h3 {
  margin-top: 0;
}

.review-process-list {
  counter-reset: item;
  list-style: none;
  padding-left: 0;
}

.review-process-list li {
  counter-increment: item;
  margin-bottom: 20px;
  padding-left: 48px;
  position: relative;
}

.review-process-list li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-yellow) 100%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 700;
  font-size: 16px;
}

.review-process-list strong {
  color: var(--text-primary);
  font-weight: 600;
}

.contact-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-darker) 100%);
  border: 2px solid var(--border-highlight);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
  background-color: var(--bg-darker);
  padding: 24px;
  border-radius: 12px;
}

.contact-item {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

.contact-item strong {
  color: var(--accent-yellow);
  font-weight: 600;
  margin-right: 8px;
}

.commitment-card {
  background: linear-gradient(135deg, #1a2a1a 0%, var(--bg-card) 100%);
  border: 2px solid #2a4a2a;
}

.commitment-list {
  list-style: none;
  padding-left: 0;
}

.commitment-list li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 16px;
}

.commitment-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: bold;
  font-size: 20px;
}

@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 36px;
  }

  .content-card {
    padding: 24px;
  }

  .content-card h2 {
    font-size: 26px;
  }

  .content-card h3 {
    font-size: 18px;
  }

  .review-process-list li {
    padding-left: 40px;
  }

  .review-process-list li::before {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
}

@media (max-width: 640px) {
  .about-hero h1 {
    font-size: 28px;
  }

  .content-card {
    padding: 20px;
  }

  .content-card h2 {
    font-size: 22px;
  }

  .about-section {
    padding: 40px 0;
  }
}

.reviews-hero {
  background-color: var(--bg-dark);
  padding: 60px 0;
}

.reviews-hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 12px;
}

.subtitle {
  color: var(--text-secondary);
  font-size: 18px;
  margin-bottom: 32px;
}

.review-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.review-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: var(--bg-card);
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
}

.review-badge .badge-icon {
  font-size: 24px;
  color: var(--accent-orange);
}

.reviews-section {
  padding: 60px 0;
}

#reviews-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 80px;
}

.review-card {
  background-color: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.3s;
}

.review-card:hover {
  border-color: var(--border-highlight);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  gap: 24px;
}

.review-casino-info {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
}

.review-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
}

.review-logo img {
  max-width: 140px;
  max-height: 50px;
  object-fit: contain;
  filter: brightness(1.2);
}

.review-logo-fallback {
  background-color: var(--bg-darker);
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 700;
}

.review-title-section {
  flex: 1;
}

.review-title {
  color: var(--accent-yellow);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.review-rating-display {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-score {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-yellow);
}

.review-stars {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stars {
  color: var(--rating-gold);
  font-size: 16px;
  letter-spacing: 2px;
}

.rating-label {
  color: var(--text-secondary);
  font-size: 13px;
}

.review-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.review-date {
  color: var(--text-muted);
  font-size: 13px;
}

.verified-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: #1a4d2e;
  color: #4ade80;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.verified-icon {
  color: #4ade80;
}

.rating-bars {
  margin-bottom: 24px;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.rating-label-text {
  min-width: 180px;
  color: var(--text-secondary);
  font-size: 14px;
}

.bar-container {
  flex: 1;
  height: 8px;
  background-color: var(--bg-darker);
  border-radius: 4px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-orange) 0%, var(--accent-yellow) 100%);
  border-radius: 4px;
  transition: width 0.6s ease-out;
}

.rating-value {
  min-width: 32px;
  text-align: right;
  color: var(--accent-yellow);
  font-weight: 600;
  font-size: 14px;
}

.player-review {
  background-color: var(--bg-darker);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 24px;
}

.player-review-header {
  color: var(--accent-yellow);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
}

.player-review-text {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  font-style: italic;
}

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

.pros-section,
.cons-section {
  background-color: var(--bg-darker);
  padding: 20px;
  border-radius: 12px;
}

.pros-section {
  border-left: 3px solid #4ade80;
}

.cons-section {
  border-left: 3px solid #ef4444;
}

.pros-header,
.cons-header {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
}

.pros-header {
  color: #4ade80;
}

.cons-header {
  color: #ef4444;
}

.pros-list,
.cons-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pros-list li {
  color: var(--text-secondary);
  font-size: 14px;
  padding-left: 24px;
  position: relative;
}

.pros-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: bold;
}

.cons-list li {
  color: var(--text-secondary);
  font-size: 14px;
  padding-left: 24px;
  position: relative;
}

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

.review-process-section {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--border-color);
}

.review-process-section h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 48px;
  color: var(--accent-yellow);
}

.review-criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.criteria-card {
  background-color: var(--bg-card);
  padding: 32px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}

.criteria-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-highlight);
}

.criteria-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.criteria-card h3 {
  color: var(--accent-yellow);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.criteria-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 968px) {
  .reviews-hero h1 {
    font-size: 36px;
  }

  .review-header {
    flex-direction: column;
  }

  .review-meta {
    align-items: flex-start;
    width: 100%;
  }

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

  .rating-label-text {
    min-width: 150px;
    font-size: 13px;
  }

  .review-criteria-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .reviews-hero h1 {
    font-size: 28px;
  }

  .review-casino-info {
    flex-direction: column;
    align-items: flex-start;
  }

  .rating-label-text {
    min-width: 120px;
    font-size: 12px;
  }
}
