/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  background-color: #0d0d0d;
  color: #f2f2f2;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */
.site-header {
  background-color: #141414;
  padding: 20px 0;
  text-align: center;
}

.site-header__logo {
  height: 42px;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  padding: 60px 0;
  background-color: #000;
}

.hero-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.9));
  z-index: 1;
}

.hero-section__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.hero-section__text {
  flex: 1 1 50%;
}

.hero-section__text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #fff;
}

.hero-section__text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #ddd;
}

.hero-section__text ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-section__text li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cfcfcf;
}

.hero-section__image {
  flex: 1 1 40%;
}

.hero-section__image img {
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

/* CATALOGUE */
.casino-catalog {
  padding: 50px 0;
  background-color: #111;
}

.catalog__update {
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 20px;
}

.casino-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.casino-card {
  display: flex;
  flex-direction: row;
  gap: 20px;
  background: linear-gradient(145deg, #1b1b1b, #2a2a2a);
  padding: 20px;
  border-radius: 10px;
  position: relative;
  flex-wrap: wrap;
}

.casino-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: #ff5722;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: bold;
}

.casino-card__column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  min-width: 160px;
  flex: 1 1 22%;
}

.casino-card__logo-rating {
  align-items: center;
}

.casino-logo {
  height: 36px;
  margin-bottom: 8px;
}

.stars .material-icons {
  font-size: 18px;
  color: #ffc107;
}

.casino-card__bonus-main .bonus-label {
  font-size: 0.9rem;
  color: #ccc;
}

.casino-card__bonus-main .bonus-amount {
  font-size: 1.6rem;
  font-weight: bold;
  color: #00ffc8;
}

.casino-card__features .feature-item,
.casino-card__bonuses .feature-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: #eee;
}

.casino-card__actions {
  align-items: center;
}

.play-button {
  background: #00ffc8;
  color: #000;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 25px;
  transition: background 0.3s;
}

.play-button:hover {
  background: #00d0a8;
}

.payment-methods {
  display: flex;
  gap: 6px;
  flex-wrap: nowrap;
  overflow-x: auto;
  max-width: 160px;
}

.payment-methods img {
  height: 24px;
  width: auto;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .casino-catalog {
    padding: 20px 0;
  }

  .hero-section {
    padding: 10px 0;
  }

  .hero-section__content {
    flex-direction: column;
  }

  .hero-section__text h1 {
    font-size: 1.9rem;
  }

  .hero-section__text p {
    display: none;
  }

  .hero-section__image img {
    display: none;
  }

  .casino-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .casino-card__column {
    width: 100%;
    flex: 1 1 auto;
    align-items: center;
  }

  .play-button {
    width: 100%;
  }

  .site-header__logo {
    height: 36px;
  }
}

.info-trust {
  padding: 60px 0;
  background-color: #181818;
}

.info-trust__title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
  color: #ffffff;
}

.info-trust__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.info-trust__item {
  background-color: #202020;
  padding: 25px 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

.info-trust__item:hover {
  transform: translateY(-4px);
}

.info-trust__item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #00ffc8;
}

.info-trust__item p {
  font-size: 0.95rem;
  color: #ddd;
  line-height: 1.5;
}

.secure-choices {
  padding: 60px 0;
  background-color: #101010;
}

.secure-choices__title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #ffffff;
}

.secure-choices__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.secure-choices__item {
  background-color: #1f1f1f;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.secure-choices__item h3 {
  font-size: 1.1rem;
  color: #00ffc8;
  margin-bottom: 10px;
}

.secure-choices__item p {
  font-size: 0.95rem;
  color: #ddd;
  line-height: 1.5;
}

.contact-zone {
  padding: 60px 0;
  background-color: #181818;
}

.contact-zone__title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #fff;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border: none;
  border-radius: 8px;
  background-color: #2a2a2a;
  color: #fff;
  font-size: 1rem;
  resize: none;
}

.contact-form button {
  background-color: #00ffc8;
  color: #000;
  font-weight: bold;
  padding: 12px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #00d0a8;
}

.thankyou-modal {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0,0,0,0.75);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.thankyou-modal__box {
  background: #202020;
  padding: 30px;
  border-radius: 10px;
  color: #fff;
  text-align: center;
}

.thankyou-modal__box button {
  margin-top: 20px;
  padding: 10px 20px;
  background: #00ffc8;
  color: #000;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.bottom-footer {
  background-color: #0c0c0c;
  padding: 40px 20px;
  font-size: 0.95rem;
  color: #ccc;
}

.footer__help-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.footer__help-links img {
  height: 34px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.footer__help-links img:hover {
  opacity: 1;
}

.footer__legal-notes {
  text-align: center;
  margin-bottom: 25px;
  line-height: 1.5;
  color: #bdbdbd;
}

.footer__legal-notes p {
  margin-bottom: 12px;
}

.footer__navigation {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.footer__navigation a {
  color: #00ffc8;
  font-weight: 500;
  transition: color 0.3s;
}

.footer__navigation a:hover {
  color: #00c8a0;
}

.footer__credits {
  text-align: center;
  font-size: 0.85rem;
  color: #888;
}

.cs2-cookie-box {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #071727;
  color: #4be0c6;
  font-family: 'Mulish', sans-serif;
  font-size: 0.95rem;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9000;
}
.cs2-cookie-box a {
  color: #ffffff;
}
.cs2-cookie-ok {
  background: #4be0c6;
  color: #071727;
  border: none;
  border-radius: 3px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-weight: 600;
}
