* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, sans-serif;
  color: #222;
  background-color: #fff;
  line-height: 1.6;
}

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

.container {
  width: min(90%, 1200px);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 9999;
}

.header__logo,
.header__logo * {
  cursor: pointer;
}


.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(90deg, #0f2027, #203a43, #2c5364);
  padding: 18px 0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}

.header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.header__logo:hover {
  transform: scale(1.05);
  cursor: pointer;
}

.header__logo-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
}

.header__title {
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  transition: text-shadow 0.3s ease;
}

.header__title:hover {
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  background: url("../images/img.jpg") center center / cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px 20px;
}

.hero__title {
  font-family: "Poppins", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.hero__subtitle {
  font-size: 1.2rem;
  margin-bottom: 35px;
  color: #e0e0e0;
  line-height: 1.5;
}

.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn--primary {
  background-color: #0077ff;
  color: #fff;
  box-shadow: 0 0 15px rgba(0, 119, 255, 0.4);
}

.btn--primary:hover {
  background-color: #005fcc;
  box-shadow: 0 0 25px rgba(0, 119, 255, 0.6);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hero__title {
    font-size: 2rem;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .btn {
    padding: 12px 28px;
  }
}

.casino-bonuses {
  padding: 100px 20px;
  background: linear-gradient(135deg, #1c1c1c, #2e2e2e);
  color: #f5f5f5;
}

.section__title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  font-family: 'Segoe UI', sans-serif;
  font-weight: 700;
  color: #ffb400;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
}

.bonuses__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
}

.bonus-card {
  background-color: #2b2b2b;
  border-radius: 15px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: transform 0.4s, box-shadow 0.4s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}


.bonus-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.bonus-card__logo {
  max-width: 130px;
  margin-bottom: 25px;
  display: inline-block;
}

.bonus-card__rating {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffdd57;
}

.bonus-card__features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  color: #ddd;
  font-size: 1rem;
}

.bonus-card__features li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.bonus-card__features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ff6f00;
  font-weight: bold;
}

.btn--explore {
  display: inline-block;
  padding: 14px 35px;
  background-color: #ff6f00;
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 5px 15px rgba(255,111,0,0.4);
}

.btn--explore:hover {
  background-color: #e65c00;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(230,92,0,0.5);
}

@media (max-width: 992px) {
  .section__title {
    font-size: 2.2rem;
  }
  .bonus-card {
    padding: 25px 20px;
  }
}

@media (max-width: 768px) {
  .section__title {
    font-size: 2rem;
  }
  .bonus-card__features {
    font-size: 0.95rem;
  }
}

.casino-cta {
  padding: 80px 20px;
  text-align: center;
  display: flex;
  justify-content: center;
}

.casino-cta__wrapper {
  background: linear-gradient(135deg, #ff6f00, #ff4500);
  padding: 60px 40px;
  border-radius: 20px;
  max-width: 700px;
  width: 100%;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.casino-cta__title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}

.casino-cta__text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #fffbe6;
}

.btn--cta {
  display: inline-block;
  padding: 16px 40px;
  background-color: #ffd700;
  color: #2b2b2b;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s;
  box-shadow: 0 5px 20px rgba(255,215,0,0.4);
}

.btn--cta:hover {
  background-color: #ffc400;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(255,215,0,0.5);
}

@media (max-width: 768px) {
  .casino-cta__wrapper {
    padding: 40px 25px;
  }
  .casino-cta__title {
    font-size: 1.8rem;
  }
  .casino-cta__text {
    font-size: 1rem;
  }
  .btn--cta {
    padding: 14px 30px;
    font-size: 1rem;
  }
}

.trusted-logos {
  padding: 80px 20px;
  background-color: #f4f4f4;
  text-align: center;
}

.trusted-logos__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #111;
  font-family: 'Segoe UI', sans-serif;
}

.trusted-logos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  align-items: center;
  justify-items: center;
}

.trusted-logos__item {
  max-width: 100px;
  filter: grayscale(60%);
  transition: filter 0.3s, transform 0.3s;
}

.trusted-logos__item:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .trusted-logos__title {
    font-size: 1.8rem;
  }
  .trusted-logos__grid {
    gap: 20px;
  }
  .trusted-logos__item {
    max-width: 80px;
  }
}

.site-footer {
  background: linear-gradient(135deg, #1b1a1a, #2c2b2b);
  color: #F5F5F5;
  padding: 70px 150px;
  font-size: 15px;
  line-height: 1.8;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 24px;
  color: #FF8F00;
  text-decoration: none;
}

.footer-logo-img {
  width: 50px;
  height: 50px;
  margin-right: 15px;
}

.footer-nav a {
  margin-left: 30px;
  color: #F5F5F5;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #FFA000;
}

.footer-description p {
  margin: 0 0 50px 0;
  max-width: 900px;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-18plus {
  background-color: #680202;
  color: #fff;
  font-weight: bold;
  padding: 15px 30px;
  border-radius: 12px;
  text-align: center;
  font-size: 16px;
}

.footer-rights {
  font-size: 14px;
  color: #D3D3D3;
  text-align: center;
}

@media (max-width: 1024px) {
  .site-footer {
    padding: 60px 50px;
  }
  .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }
  .footer-logo {
    font-size: 22px;
  }
  .footer-logo-img {
    width: 45px;
    height: 45px;
    margin-right: 10px;
  }
  .footer-nav a {
    margin: 0 15px;
    display: inline-block;
    margin-bottom: 10px;
  }
  .footer-description p {
    max-width: 100%;
    margin-bottom: 40px;
    font-size: 15px;
  }
  .footer-legal {
    gap: 15px;
  }
  .footer-18plus {
    font-size: 15px;
    padding: 12px 25px;
  }
  .footer-rights {
    font-size: 13px;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding: 50px 20px;
  }
  .footer-logo {
    font-size: 20px;
    flex-direction: column;
    align-items: center;
  }
  .footer-logo-img {
    width: 40px;
    height: 40px;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .footer-nav a {
    margin: 5px 10px;
    font-size: 14px;
  }
  .footer-description p {
    font-size: 14px;
    margin-bottom: 35px;
  }
  .footer-18plus {
    font-size: 14px;
    padding: 10px 20px;
  }
  .footer-rights {
    font-size: 12px;
  }
}

main {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
}

main h1 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #FF8F00;
  text-align: center;
}

main h2 {
  font-size: 1.5rem;
  margin-top: 35px;
  margin-bottom: 15px;
  color: #FFA000;
  border-bottom: 2px solid #444;
  padding-bottom: 5px;
}

main p {
  margin-bottom: 20px;
  font-size: 15px;
}

main ul {
  margin-left: 20px;
  margin-bottom: 20px;
  list-style-type: disc;
}

main li {
  margin-bottom: 10px;
}

main a {
  color: #FFA000;
  text-decoration: none;
  font-weight: 500;
}

main a:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  main {
    margin: 60px auto;
    padding: 0 25px;
  }
  main h1 {
    font-size: 2rem;
    margin-bottom: 35px;
  }
  main h2 {
    font-size: 1.4rem;
  }
}

@media (max-width: 600px) {
  main {
    margin: 50px auto;
    padding: 0 15px;
  }
  main h1 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  main h2 {
    font-size: 1.3rem;
  }
  main p, main li {
    font-size: 14px;
  }
}

#age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  #age-modal .modal-content {
    background: linear-gradient(145deg, #2c2b2b, #1f1e1e);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 0 40px rgba(0,0,0,0.8);
    animation: fadeIn 0.5s ease-out;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9);}
    to { opacity: 1; transform: scale(1);}
  }

  #age-modal h2 {
    color: #FF8F00;
    margin-bottom: 25px;
    font-size: 2rem;
  }

  #age-modal p {
    margin-bottom: 35px;
    font-size: 1rem;
    color: #F5F5F5;
  }

  #age-modal .button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  #age-modal button {
    padding: 14px 30px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    min-width: 140px;
  }

  #confirm-age {
    background: linear-gradient(135deg, #680202, #FF0000);
    color: #fff;
    box-shadow: 0 6px 15px rgba(255, 0, 0, 0.5);
  }

  #confirm-age:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.7);
  }

  #deny-age {
    background: linear-gradient(135deg, #444, #666);
    color: #fff;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
  }

  #deny-age:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
  }

  /* Responsive */
  @media (max-width: 600px) {
    #age-modal .modal-content {
      padding: 35px 25px;
    }
    #age-modal h2 {
      font-size: 1.6rem;
    }
    #age-modal p {
      font-size: 0.95rem;
    }
    #age-modal button {
      min-width: 120px;
      padding: 12px 25px;
      font-size: 0.95rem;
    }
  }

#cookies-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(145deg, #2c2b2b, #1f1e1e);
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: slideUp 0.5s ease-out;
  }

  @keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }

  .cookies-content {
    max-width: 900px;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    color: #F5F5F5;
    font-family: 'Segoe UI', sans-serif;
  }

  .cookies-content p {
    margin: 0;
    font-size: 14px;
  }

  .cookies-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }

  #cookies-ok, #cookies-close {
    padding: 10px 25px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    font-size: 14px;
  }

  #cookies-ok {
    background: linear-gradient(135deg, #680202, #FF0000);
    color: #fff;
    box-shadow: 0 4px 12px rgba(255,0,0,0.5);
  }

  #cookies-ok:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(255,0,0,0.7);
  }

  #cookies-close {
    background: #444;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  }

  #cookies-close:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0,0,0,0.7);
  }

  @media (max-width: 600px) {
    .cookies-content p {
      font-size: 13px;
    }
    #cookies-ok, #cookies-close {
      padding: 8px 20px;
      font-size: 13px;
    }
  }  