@font-face {
  font-family: "TildaSans";
  src: url("fonts/TildaSans-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "TildaSans";
  src: url("fonts/TildaSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "TildaSans";
  src: url("fonts/TildaSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "TildaSans";
  src: url("fonts/TildaSans-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "TildaSans";
  src: url("fonts/TildaSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "TildaSans";
  src: url("fonts/TildaSans-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: "TildaSans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 20px;
  background: #03172b;
  color: #ffffff;
  line-height: 1.6;
}

.page-bg {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, #123a6a 0, #03172b 45%, #010813 100%);
  opacity: 0.95;
  z-index: -1;
}

.page-wrapper {
  max-width: 1160px;
  margin: 0 auto;
  padding: 24px 16px 40px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.logo-image {
  display: block;
  height: 40px;
  width: auto;
}

.logo-icon-placeholder {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ffd54f, #ff9100);
}

.logo-text {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
}

.top-nav {
  display: flex;
  gap: 16px;
}

.nav-link {
  font-size: 12px;
  color: #f5f7fb;
  text-decoration: none;
  opacity: 0.8;
}

.nav-link:hover {
  opacity: 1;
}

.hero {
  text-align: center;
  margin-bottom: 32px;
}

.hero-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 8px;
}

.hero-subtitle {
  font-size: 18px;
  color: #d2d8e5;
}

.casino-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.casino-card {
  display: grid;
  grid-template-columns: 1.3fr 2.4fr 0.9fr;
  align-items: stretch;
  background: rgba(9, 28, 60, 0.96);
  border-radius: 10px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.casino-left {
  background: rgba(8, 21, 48, 0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
}

.casino-logo-placeholder {
  width: 100%;
  min-height: 60px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.casino-logo-placeholder img {
  width: 100%;
  height: auto;
  max-height: 80px;
  display: block;
  object-fit: cover;
}

.casino-middle {
  padding: 16px 16px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.offer-line {
  font-size: 22px;
  font-weight: 700;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.badge-hot {
  background: linear-gradient(135deg, #ff9100, #ff3d00);
  color: #fff;
}

.score {
  color: #d2d8e5;
}

.stars-placeholder {
  width: 72px;
  height: 10px;
  border-radius: 999px;
  background: repeating-linear-gradient(
    to right,
    #ffd54f,
    #ffd54f 8px,
    transparent 8px,
    transparent 10px
  );
  opacity: 0.85;
}

.casino-right {
  padding: 16px 16px 14px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: rgba(8, 21, 48, 0.98);
}

.btn-primary,
.btn-secondary {
  border-radius: 999px;
  border: none;
  cursor: pointer;
  padding: 9px 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #29b6f6, #0288d1);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(1, 87, 155, 0.5);
}

.btn-primary:hover {
  filter: brightness(1.1);
}

.btn-secondary {
  background: transparent;
  color: #f5f7fb;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.responsible-gaming {
  margin-top: 80px;
  text-align: center;
}

.rg-main-text {
  font-size: 18px;
  color: #d2d8e5;
  margin-bottom: 16px;
}

.rg-logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.rg-logo-placeholder {
  min-width: 80px;
  padding: 6px 10px;
  font-size: 10px;
  border-radius: 6px;
  border: 1px dashed rgba(255, 255, 255, 0.25);
  background: rgba(3, 16, 40, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
}

.rg-logo-placeholder img {
  max-height: 100%;
  width: auto;
  display: block;
}

.responsible-gaming-extra {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 2px dashed rgba(255, 255, 255, 0.25);
}

.rg-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.terms-section {
  margin-top: 80px;
  padding: 32px 22px 40px;
  background: radial-gradient(circle at top, rgba(8, 40, 84, 0.9), rgba(2, 11, 26, 0.98));
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.6);
  font-size: 18px;
  color: #c4cad8;
}

.info-section {
  margin-top: 72px;
  padding-bottom: 56px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 16px;
}

.info-card {
  padding: 16px 18px;
  border-radius: 10px;
  background: rgba(3, 16, 40, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.info-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.info-card p {
  font-size: 18px;
  color: #c4cad8;
}

.registration-steps,
.kyc-list {
  margin: 12px 0 0 20px;
}

.registration-steps li,
.kyc-list li {
  margin-bottom: 6px;
}

.payment-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 16px;
}

.payment-column h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.payment-column ul {
  margin-left: 20px;
}

.terms-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 2px dashed rgba(255, 255, 255, 0.25);
  padding-bottom: 10px;
}

.terms-text p + p {
  margin-top: 8px;
}

.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  padding: 6px 0;
  background: rgba(1, 6, 16, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-bar > * {
  max-width: 1160px;
  width: 100%;
  padding: 0 16px;
}

.cookie-text {
  font-size: 16px;
  color: #d2d8e5;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  align-items: center;
  margin-top: 4px;
}

.site-footer {
  margin-top: 40px;
  padding: 24px 0 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #d2d8e5;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 8px;
}

.footer-link {
  font-size: 16px;
  color: #f5f7fb;
  text-decoration: none;
  opacity: 0.8;
}

.footer-link:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-copy {
  font-size: 14px;
  color: #b7bfd1;
}

@media (min-width: 720px) {
  .cookie-bar {
    padding: 10px 0;
  }

  .cookie-bar > * {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-actions {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .casino-card {
    grid-template-columns: 1.2fr 1.8fr;
    grid-template-rows: auto auto;
  }

  .casino-right {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .hero-title {
    font-size: 30px;
  }
}
