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

/* ===== RESET ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #111111;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

/* ===== LAYOUT ===== */
.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
.site-header {
  background: #7c3aed;
  box-shadow: 0 2px 12px rgba(124,58,237,0.25);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
}

.site-logo img {
  height: 42px;
  width: auto;
  filter: brightness(10);
}

/* ===== HERO ===== */
.hero-section {
  text-align: center;
  padding: 50px 20px 20px;
  background: #ffffff;
}

.hero-section h1 {
  font-size: 30px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 16px;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

.hero-section p {
  font-size: 16px;
  color: #444444;
  max-width: 740px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== CASINO LIST ===== */
.casino-list {
  padding: 28px 0 60px;
}

.casino-card {
  background: #fafafa;
  border-radius: 16px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
  margin-bottom: 18px;
  overflow: hidden;
  border-left: 5px solid #7c3aed;
  transition: box-shadow 0.25s, transform 0.2s;
}

.casino-card:hover {
  box-shadow: 0 6px 24px rgba(124,58,237,0.14);
  transform: translateY(-3px);
}

.casino-card-inner {
  display: grid;
  grid-template-columns: 170px 1fr 1fr 190px;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
}

/* Logo column */
.casino-logo-col {
  position: relative;
}

.casino-badge {
  position: absolute;
  top: -8px;
  left: -16px;
  width: 50px;
  height: auto;
  z-index: 2;
}

.casino-logo-col a {
  display: block;
}

.casino-logo-img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 12px;
}

/* Bonus column */
.casino-bonus-col {
  padding: 4px 0;
}

.bonus-text {
  font-size: 15px;
  font-weight: 700;
  color: #111111;
  line-height: 1.4;
  margin-bottom: 6px;
}

.bonus-text a {
  color: #7c3aed;
}

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

.rating-stars {
  width: 88px;
  height: auto;
}

.rating-score {
  font-size: 15px;
  font-weight: 700;
  color: #111111;
}

/* Benefits column */
.casino-benefits-col {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.benefit-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.benefit-check {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.benefit-text {
  font-size: 13px;
  font-weight: 600;
  color: #222222;
  line-height: 1.3;
}

.responsible-line {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid #e5e5e5;
}

.responsible-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.responsible-text {
  font-size: 9px;
  color: #888888;
}

/* CTA column */
.casino-cta-col {
  display: flex;
  justify-content: center;
}

.play-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
  color: #fff;
  text-align: center;
  transition: background 0.3s, transform 0.15s;
}

.play-btn:hover {
  background: linear-gradient(135deg, #6d28d9 0%, #8b5cf6 100%);
  transform: scale(1.04);
}

.play-btn:active {
  background: linear-gradient(135deg, #059669 0%, #34d399 100%);
}

.play-btn .casino-name {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.85;
  margin-bottom: 3px;
}

.play-btn .cta-label {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #18181b;
  color: #a1a1aa;
  padding: 36px 0 0;
  margin-top: auto;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo img {
  height: 36px;
  filter: brightness(10);
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-badges img {
  height: 22px;
  opacity: 0.6;
}

.footer-18 {
  width: 34px !important;
  height: 34px !important;
  opacity: 1 !important;
}

.footer-bottom {
  text-align: center;
  padding: 18px 0;
  font-size: 12px;
  color: #71717a;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .casino-card-inner {
    grid-template-columns: 145px 1fr 190px;
    gap: 14px;
  }

  .casino-benefits-col {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px 18px;
  }
}

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

  .hero-section p {
    font-size: 14px;
  }

  .casino-card {
    border-left-width: 4px;
  }

  .casino-card-inner {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }

  .casino-logo-col {
    text-align: center;
  }

  .casino-logo-img {
    height: 110px;
    max-width: 240px;
    margin: 0 auto;
  }

  .casino-badge {
    top: -6px;
    left: calc(50% - 135px);
  }

  .casino-bonus-col {
    text-align: center;
  }

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

  .casino-benefits-col {
    align-items: flex-start;
  }

  .casino-cta-col {
    width: 100%;
  }

  .play-btn {
    padding: 16px;
  }

  .responsible-line {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .header-inner {
    height: 56px;
  }

  .site-logo img {
    height: 34px;
  }

  .hero-section {
    padding: 28px 16px 5px;
  }

  .hero-section h1 {
    font-size: 20px;
  }

  .casino-card {
    border-radius: 12px;
    margin-bottom: 14px;
  }

  .casino-card-inner {
    padding: 12px;
  }
}
