*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  font-family: 'Poppins', sans-serif;
  color: #111;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Changa', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
}

body {
  height: auto;
  min-height: 100%;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  background: url('../media/images/background.jpg') no-repeat center center fixed;
  background-size: cover;
  position: relative;
}

.site-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 5, 0.65);
  z-index: 1;
  pointer-events: none;
}

.site-header {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  padding: 25px 0;
  background: transparent;
}

.logo-text {
  font-family: 'Changa', sans-serif;
  font-weight: 900;
  font-size: 38px;
  color: #ffd700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 768px) {
  .logo-text {
    font-size: 32px;
  }
}

.hero-block {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 70px 20px 50px;
}

.hero-title {
  font-family: 'Changa', sans-serif;
  font-size: 42px;
  margin-bottom: 25px;
}

.hero-description {
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto 45px;
  line-height: 1.6;
  opacity: 0.9;
}

.hero-advantages {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.advantage-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 150px;
}

.advantage-icon {
  font-size: 40px;
  color: #00e5ff;
  margin-bottom: 8px;
}

.advantage-text {
  font-size: 15px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 30px;
  }

  .hero-description {
    font-size: 14px;
    line-height: 1.5;
  }

  .advantage-icon {
    font-size: 32px;
  }

  .advantage-text {
    font-size: 13px;
  }
}

.casino-catalog {
  position: relative;
  z-index: 2;
  margin-top: 60px;
}

.catalog-warn {
  text-align: center;
  margin-bottom: 30px;
  font-size: 14px;
}

.catalog-headings {
  display: grid;
  grid-template-columns: 60px 1fr 1fr 150px 150px 120px;
  align-items: center;
  background: #f5f5f5;
  padding: 15px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  color: #222;
  margin-bottom: 20px;
}

.heading-item, .heading-rank {
  text-align: center;
}


.casino-card {
  display: grid;
  grid-template-columns: 60px 1fr;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.card-rank {
  background: #ffd700;
  color: #111;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 150px 150px 120px;
  align-items: center;
  padding: 20px;
  gap: 10px;
}


.card-exclusive {
  position: absolute;
  top: 0;
  left: -60px;
  background: #ff4081;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

.card-logo img {
  max-width: 120px;
  max-height: 50px;
  margin: 0 auto;
  display: block;
}

.card-bonus {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  text-align: center;
}

.card-rating {
  display: flex;
  justify-content: center;
  gap: 2px;
}

.card-rating .material-icons {
  color: #ffd700;
  font-size: 22px;
}

.card-score {
  font-size: 28px;
  font-weight: 800;
  color: #00c853;
  text-align: center;
}

.card-link {
  text-align: center;
}

.btn-more {
  display: inline-block;
  background: #00e5ff;
  color: #111;
  padding: 12px 18px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  transition: background 0.3s;
}

.btn-more:hover {
  background: #00bcd4;
}

.card-footer {
  grid-column: 1 / -1;
  font-size: 10px;
  color: #777;
  text-align: center;
  margin-top: 15px;
}

.card-footer a {
  color: #505050;
}

@media (max-width: 768px) {
  .catalog-headings {
    display: none;
  }

  .casino-card {
    grid-template-columns: 1fr;
  }

  .card-rank {
    height: 50px;
  }

  .card-content {
    grid-template-columns: 1fr;
    padding: 20px 15px;
    gap: 15px;
  }

  .card-exclusive {
    top: -40px;
    left: 5px;
  }

  .card-footer {
    font-size: 9px;
  }
}

.info-section {
  position: relative;
  z-index: 2;
  background: #ffffff;
  border-radius: 12px;
  padding: 40px 30px;
  margin-top: 80px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.info-title {
  font-family: 'Changa', sans-serif;
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
  color: #111;
}

.info-topic {
  margin-bottom: 30px;
}

.info-subtitle {
  font-family: 'Changa', sans-serif;
  font-size: 24px;
  color: #333;
  margin-bottom: 15px;
  text-align: center;
}

.info-text {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .info-title {
    font-size: 26px;
  }

  .info-subtitle {
    font-size: 20px;
  }

  .info-text {
    font-size: 15px;
  }
}

.site-footer {
  width: 100%;
  background: #111;
  padding: 60px 20px 30px;
  color: #ccc;
  position: relative;
  z-index: 1;
  margin-top: 40px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.footer-links a {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #00e5ff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #00bcd4;
}

.footer-disclaimer {
  max-width: 900px;
  margin: 0 auto 40px;
  font-size: 13px;
  line-height: 1.6;
  color: #bbb;
  text-align: center;
}

.footer-support {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.footer-support img {
  max-width: 150px;
  height: auto;
  transition: transform 0.3s;
}

.footer-support img:hover {
  transform: scale(1.05);
}

.footer-gambling-disclaimer {
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 12px;
  line-height: 1.5;
  color: #999;
  text-align: center;
}

.footer-copy {
  font-size: 12px;
  color: #777;
  text-align: center;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    gap: 12px;
  }

  .footer-support {
    flex-direction: column;
    gap: 15px;
  }

  .footer-support img {
    width: 80px;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.85);
  color: #ccc;
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 1000;
  max-width: 90%;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
}

.cookie-text {
  flex: 1;
  text-align: left;
}

.cookie-btn {
  background: #00e5ff;
  color: #111;
  font-weight: 700;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s;
  font-size: 14px;
}

.cookie-btn:hover {
  background: #00bcd4;
}
