* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "TildaSans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1f2933;
  background-color: #f3f4f6;
}

@font-face {
  font-family: "TildaSans";
  src: url("./fonts/TildaSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TildaSans";
  src: url("./fonts/TildaSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TildaSans";
  src: url("./fonts/TildaSans-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TildaSans";
  src: url("./fonts/TildaSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.site-header {
  background-color: #022c22;
  color: #ffffff;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: auto;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  gap: 20px;
  font-size: 14px;
}

.main-nav a {
  color: #e5e7eb;
  text-decoration: none;
}

.main-nav a:hover {
  color: #ffffff;
}

.hero {
  background-color: #f9fafb;
  padding: 80px 0 60px;
  text-align: center;
}

.hero-inner h1 {
  font-size: 34px;
  margin-bottom: 16px;
}

.hero-inner p {
  max-width: 620px;
  margin: 0 auto;
  color: #4b5563;
  line-height: 1.8;
}

.top-casinos {
  padding: 50px 0 60px;
}

.top-casinos h2 {
  text-align: center;
  margin-bottom: 28px;
  font-size: 26px;
}

.casino-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.casino-card {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 22px 32px;
  background: #ffffff;
  border-radius: 26px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.14);
  position: relative;
  overflow: hidden;
}

.casino-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 140px;
  height: 40px;
  background: url("./img/pick.svg") no-repeat left top;
  background-size: contain;
}

.casino-main {
  display: flex;
  gap: 22px;
  align-items: center;
}

.casino-logo {
  width: 210px;
  height: 120px;
  border-radius: 26px;
  background: #064e3b;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.35);
}

.casino-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.casino-info h3 {
  margin: 0 0 4px;
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.casino-meta {
  margin: 0 0 4px;
  font-size: 13px;
  color: #6b7280;
}

.casino-bonus {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
}

.casino-stars {
  margin-top: 10px;
}

.casino-stars img {
  height: 22px;
  width: auto;
  display: block;
}

.casino-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 180px;
}

.casino-rating {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #ffffff;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.btn-primary {
  display: inline-block;
  padding: 10px 32px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(234, 88, 12, 0.5);
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.about {
  padding: 60px 0;
  background-color: #f9fafb;
}

.about h2 {
  text-align: center;
  margin-bottom: 22px;
  font-size: 26px;
}

.about p {
  max-width: 720px;
  margin: 0 auto 10px;
  line-height: 1.7;
  color: #4b5563;
}

.faq {
  padding: 60px 0;
}

.faq h2 {
  text-align: center;
  margin-bottom: 28px;
  font-size: 26px;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item + .faq-item {
  margin-top: 8px;
}

.faq-question {
  width: 100%;
  padding: 16px 18px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  cursor: pointer;
}

.faq-icon {
  margin-left: 10px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-top: none;
  border-radius: 0 0 6px 6px;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  margin: 0;
  padding: 12px 18px 14px;
  font-size: 15px;
  color: #4b5563;
}

.faq-item.open .faq-answer {
  max-height: 260px;
}

.faq-item.open .faq-question {
  border-radius: 6px 6px 0 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.responsible {
  padding: 60px 0 70px;
  background-color: #022c22;
  color: #e5e7eb;
}

.responsible-inner {
  text-align: center;
  max-width: 780px;
}

.rg-age {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 2px solid #facc15;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-weight: 600;
}

.responsible h2 {
  margin: 0 0 14px;
  font-size: 24px;
}

.responsible p {
  margin: 0;
  line-height: 1.7;
}

.rg-logos {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  align-items: center;
}

.rg-logos img {
  height: 26px;
  width: auto;
  filter: grayscale(0.1);
}

.policy-page {
  background-color: #f3f4f6;
  padding: 60px 0 70px;
}

.policy-page .policy-container {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 16px;
}

.policy-page h1,
.policy-page h2,
.policy-page h3 {
  color: #111827;
  margin-top: 0;
  margin-bottom: 16px;
}

.policy-page h1 {
  font-size: 28px;
  margin-bottom: 20px;
  text-align: left;
}

.policy-page h2 {
  font-size: 22px;
  margin-top: 26px;
}

.policy-page h3 {
  font-size: 18px;
  margin-top: 20px;
}

.policy-page p,
.policy-page li {
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
}

.policy-page p {
  margin: 0 0 12px;
}

.policy-page ul,
.policy-page ol {
  padding-left: 20px;
  margin: 0 0 14px;
}

.policy-page a {
  color: #ea580c;
  text-decoration: none;
}

.policy-page a:hover {
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.98);
  color: #e5e7eb;
  padding: 14px 0;
}

.cookie-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
}

.cookie-banner-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}

.cookie-banner-text a {
  color: #f97316;
  text-decoration: underline;
}

.cookie-banner-button {
  border: none;
  border-radius: 999px;
  padding: 8px 18px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #ffffff;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
}

.cookie-banner-button:hover {
  filter: brightness(1.05);
}

.site-footer {
  background-color: #011712;
  color: #9ca3af;
  padding: 26px 0 18px;
  font-size: 13px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 16px;
}

.footer-col h3 {
  margin-top: 0;
  margin-bottom: 8px;
  color: #e5e7eb;
  font-size: 14px;
}

.footer-col a {
  display: block;
  color: #9ca3af;
  text-decoration: none;
  margin-bottom: 4px;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid #111827;
  padding-top: 10px;
  text-align: center;
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    justify-content: center;
    text-align: center;
  }

  .casino-card {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }

  .casino-side {
    align-items: center;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-inner h1 {
    font-size: 24px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
  }
}
