

    :root {
      --green: #00ff88;
      --black: #0b0b0b;
      --dark: #121212;
      --white: #ffffff;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }

    body {
      background: var(--black);
      color: var(--white);
      line-height: 1.5;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    /* HEADER */
    header {
      position: fixed;
      top: 0;
      width: 100%;
      background: rgba(0,0,0,0.9);
      backdrop-filter: blur(10px);
      z-index: 1000;
      border-bottom: 1px solid #222;
    }

    .container {
      max-width: 1200px;
      margin: auto;
      padding: 0 20px;
    }

    .header-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 70px;
    }

    .logo {
      font-size: 24px;
      font-weight: bold;
      color: var(--green);
    }

    nav ul {
      display: flex;
      gap: 25px;
      list-style: none;
    }

    nav a {
      font-size: 14px;
      opacity: 0.8;
    }

    nav a:hover {
      color: var(--green);
    }

    .btn {
      padding: 10px 20px;
      border-radius: 6px;
      font-weight: bold;
      transition: 0.3s;
      display: inline-block;
    }

    .btn-primary {
      background: var(--green);
      color: #000;
    }

    .btn-primary:hover {
      background: #00cc6e;
    }

    /* HERO */
    .hero {
      padding-top: 120px;
      padding-bottom: 5px;
    }

    .hero-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      flex-wrap: wrap;
    }

    .hero-text {
      max-width: 550px;
    }

    h1 {
      font-size: 42px;
      margin-bottom: 20px;
    }

    .subtitle {
      opacity: 0.8;
      margin-bottom: 25px;
    }

    .hero-buttons {
      display: flex;
      gap: 15px;
      margin-bottom: 25px;
      flex-wrap: wrap;
    }

    .features {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      font-size: 14px;
      opacity: 0.8;
    }

    .hero-visual {
      flex: 1;
      min-height: 300px;
      background: linear-gradient(135deg, #111, #1a1a1a);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--green);
      font-size: 20px;
      text-align: center;
    }

    /* FOOTER */
    footer {
      background: var(--dark);
      padding: 40px 0;
      margin-top: 60px;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 30px;
    }

    .footer-col {
      max-width: 250px;
    }

    .footer-col h4 {
      margin-bottom: 15px;
      color: var(--green);
    }

    .footer-col ul {
      list-style: none;
    }

    .footer-col li {
      margin-bottom: 8px;
      font-size: 14px;
      opacity: 0.7;
    }

    .footer-col li:hover {
      color: var(--green);
    }

    /* MOBILE */
    @media (max-width: 768px) {
      nav ul {
        display: none;
      }

      h1 {
        font-size: 28px;
      }

      .hero-inner {
        flex-direction: column;
      }

      .hero-visual {
        width: 100%;
      }
    }


/* BURGER */
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.burger span {
  width: 25px;
  height: 3px;
  background: var(--white);
  transition: 0.3s;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 70px;
  right: -100%;
  width: 100%;
  height: calc(100vh - 70px);
  background: var(--black);
  display: flex;
  flex-direction: column;
  padding: 30px;
  gap: 20px;
  transition: 0.4s;
  z-index: 999;
}

.mobile-menu a {
  font-size: 18px;
}

.mobile-menu.active {
  right: 0;
}

.mobile-btn {
  margin-top: 20px;
  text-align: center;
}

/* BURGER ANIMATION */
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* MOBILE */
@media (max-width: 768px) {
  nav ul {
    display: none;
  }

  .burger {
    display: flex;
  }

}

.hero-visual img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}


.hero-visual {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}




/* BONUSES SECTION */
.bonuses {
  padding: 20px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.section-header p {
  opacity: 0.7;
}

/* GRID */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.bonus-card {
  background: #121212;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #1f1f1f;
  transition: 0.3s;
}

.bonus-card:hover {
  border-color: var(--green);
  transform: translateY(-5px);
}

.bonus-card h3 {
  margin-bottom: 10px;
  color: var(--green);
}

.bonus-card p {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 15px;
}

/* TERMS */
.bonus-terms {
  margin-top: 50px;
  padding: 30px;
  background: #111;
  border-radius: 12px;
}

.bonus-terms h3 {
  margin-bottom: 15px;
  color: var(--green);
}

.bonus-terms ul {
  list-style: none;
}

.bonus-terms li {
  margin-bottom: 10px;
  font-size: 14px;
  opacity: 0.8;
}

/* MOBILE */
@media (max-width: 1024px) {
  .bonus-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .bonus-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 24px;
  }
}



/* GAMES */
.games {
  padding: 20px 0;
}

.game-category {
  margin-bottom: 5px;
}

.game-category h2 {
  margin-bottom: 20px;
  font-size: 24px;
}

/* GRID */
.games-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
}

/* CARD */
.game-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

.game-card img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

/* HOVER EFFECT */
.game-card:hover img {
  transform: scale(1.1);
}

/* BUTTON OVERLAY */
.game-card button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  padding: 10px 18px;
  border: none;
  background: var(--green);
  color: #000;
  font-weight: bold;
  border-radius: 6px;
  transition: 0.3s;
}

/* SHOW BUTTON ON HOVER */
.game-card:hover button {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* DARK OVERLAY */
.game-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  transition: 0.3s;
}

.game-card:hover::after {
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .games-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* PROVIDERS */
.providers {
  padding: 20px 0;
}

.providers-title {
  margin: 40px 0 20px;
  font-size: 24px;
}

/* GRID */
.providers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.provider-card {
  background: #121212;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #1f1f1f;
  transition: 0.3s;
}

.provider-card:hover {
  border-color: var(--green);
  transform: translateY(-5px);
}

/* LOGO */
.provider-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 15px;
  filter: brightness(0.9);
}

/* TEXT */
.provider-card h3 {
  color: var(--green);
  margin-bottom: 8px;
  font-size: 16px;
}

.provider-card p {
  font-size: 13px;
  opacity: 0.7;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .providers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .providers-grid {
    grid-template-columns: 1fr;
  }
}





/* WHY US */
.why-us {
  padding: 20px 0;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

/* CARD */
.why-card {
  background: #121212;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #1f1f1f;
  transition: 0.3s;
}

.why-card:hover {
  border-color: var(--green);
  transform: translateY(-5px);
}

.why-card h3 {
  color: var(--green);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  opacity: 0.75;
}

/* CTA */
.why-cta {
  margin-top: 60px;
  text-align: center;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid #222;
}

.why-cta h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.why-cta p {
  opacity: 0.7;
  margin-bottom: 20px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}



/* HOW PLAY */
.how-play {
  padding: 20px 0;
}

/* GRID */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

/* CARD */
.step-card {
  position: relative;
  background: #121212;
  padding: 30px 20px 20px;
  border-radius: 12px;
  border: 1px solid #1f1f1f;
  text-align: center;
  transition: 0.3s;
}

.step-card:hover {
  border-color: var(--green);
  transform: translateY(-5px);
}

/* NUMBER */
.step-number {
  width: 40px;
  height: 40px;
  background: var(--green);
  color: #000;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

/* TEXT */
.step-card h3 {
  margin-bottom: 10px;
  color: var(--green);
}

.step-card p {
  font-size: 14px;
  opacity: 0.75;
}

/* CTA */
.how-cta {
  margin-top: 50px;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .steps {
    grid-template-columns: 1fr;
  }
}




/* PAYMENTS */
.payments {
  padding: 20px 0;
}

/* GRID */
.payments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

/* CARD */
.payment-card {
  background: #121212;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #1f1f1f;
  transition: 0.3s;
}

.payment-card:hover {
  border-color: var(--green);
  transform: translateY(-5px);
}

.payment-card img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 10px;
}

.payment-card span {
  font-size: 14px;
  opacity: 0.8;
}

/* TABLE */
.payments-table {
  margin-top: 50px;
}

.payments-table h3 {
  margin-bottom: 20px;
  color: var(--green);
}

.payments-table table {
  width: 100%;
  border-collapse: collapse;
  background: #121212;
  border-radius: 12px;
  overflow: hidden;
}

.payments-table th,
.payments-table td {
  padding: 15px;
  text-align: left;
  font-size: 14px;
}

.payments-table th {
  background: #1a1a1a;
  color: var(--green);
}

.payments-table tr {
  border-bottom: 1px solid #1f1f1f;
}

.payments-table tr:hover {
  background: #151515;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .payments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .payments-grid {
    grid-template-columns: 1fr;
  }

  .payments-table table,
  .payments-table thead,
  .payments-table tbody,
  .payments-table th,
  .payments-table td,
  .payments-table tr {
    display: block;
  }

  .payments-table tr {
    margin-bottom: 15px;
  }

  .payments-table td {
    padding: 10px;
  }
}



/* MOBILE CASINO */
.mobile-casino {
  padding: 20px 0;
}

/* GRID */
.mobile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

/* CARD */
.mobile-card {
  background: #121212;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #1f1f1f;
  transition: 0.3s;
}

.mobile-card:hover {
  border-color: var(--green);
  transform: translateY(-5px);
}

/* ICON */
.mobile-card img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 15px;
}

/* TEXT */
.mobile-card h3 {
  color: var(--green);
  margin-bottom: 10px;
}

.mobile-card p {
  font-size: 14px;
  opacity: 0.75;
  margin-bottom: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .mobile-grid {
    grid-template-columns: 1fr;
  }
}



/* SECURITY */
.security {
  padding: 20px 0;
}

/* GRID */
.security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

/* CARD */
.security-card {
  background: #121212;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #1f1f1f;
  transition: 0.3s;
}

.security-card:hover {
  border-color: var(--green);
  transform: translateY(-5px);
}

.security-card h3 {
  color: var(--green);
  margin-bottom: 10px;
}

.security-card p {
  font-size: 14px;
  opacity: 0.75;
  margin-bottom: 10px;
}

/* EXTRA */
.security-extra {
  margin-top: 50px;
  text-align: center;
  background: #111;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #222;
}

.security-extra p {
  margin-bottom: 20px;
  opacity: 0.8;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .security-grid {
    grid-template-columns: 1fr;
  }
}


/* RESPONSIBLE GAMING */
.responsible {
  padding: 20px 0;
}

/* GRID */
.responsible-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

/* CARD */
.responsible-card {
  background: #121212;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #1f1f1f;
  transition: 0.3s;
}

.responsible-card:hover {
  border-color: var(--green);
  transform: translateY(-5px);
}

.responsible-card h3 {
  color: var(--green);
  margin-bottom: 10px;
}

.responsible-card p {
  font-size: 14px;
  opacity: 0.75;
}

/* EXTRA */
.responsible-extra {
  margin-top: 50px;
  text-align: center;
  background: #111;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #222;
}

.responsible-extra p {
  opacity: 0.8;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .responsible-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .responsible-grid {
    grid-template-columns: 1fr;
  }
}




/* REVIEWS */
.reviews {
  padding: 20px 0;
}

/* RATING */
.reviews-rating {
  text-align: center;
  margin-top: 20px;
  font-size: 18px;
}

.reviews-rating span {
  opacity: 0.7;
  margin-left: 10px;
}

/* GRID */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

/* CARD */
.review-card {
  background: #121212;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #1f1f1f;
  transition: 0.3s;
}

.review-card:hover {
  border-color: var(--green);
  transform: translateY(-5px);
}

.review-name {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

.review-stars {
  color: gold;
  margin-bottom: 10px;
}

.review-card p {
  font-size: 14px;
  opacity: 0.75;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}







/* FAQ */
.faq {
  padding: 20px 0;
}

/* LIST */
.faq-list {
  margin-top: 40px;
}

/* ITEM */
.faq-item {
  background: #121212;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #1f1f1f;
  margin-bottom: 15px;
  transition: 0.3s;
}

.faq-item:hover {
  border-color: var(--green);
}

/* QUESTION */
.faq-item h3 {
  font-size: 16px;
  color: var(--green);
  margin-bottom: 10px;
}

/* ANSWER */
.faq-item p {
  font-size: 14px;
  opacity: 0.75;
}




/* SEO TEXT */
.seo {
  padding: 20px 0;
}

.seo-content {
  max-width: 900px;
  margin: 0 auto;
}

/* HEADINGS */
.seo-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.seo-content h3 {
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--green);
}

/* TEXT */
.seo-content p {
  margin-bottom: 15px;
  line-height: 1.6;
  opacity: 0.85;
}

/* LISTS */
.seo-content ul,
.seo-content ol {
  margin: 15px 0 20px 20px;
}

.seo-content li {
  margin-bottom: 8px;
}

/* TABLE */
.seo-table-wrapper {
  overflow-x: auto;
  margin: 20px 0;
}

.seo-table {
  width: 100%;
  border-collapse: collapse;
  background: #121212;
  border-radius: 10px;
  overflow: hidden;
}

.seo-table th,
.seo-table td {
  padding: 12px;
  text-align: left;
  font-size: 14px;
}

.seo-table th {
  background: #1a1a1a;
  color: var(--green);
}

.seo-table tr {
  border-bottom: 1px solid #1f1f1f;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .seo-content h2 {
    font-size: 24px;
  }

  .seo-content h3 {
    font-size: 18px;
  }
}



/* POPUP OVERLAY */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;

  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* BOX */
.popup-box {
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  border: 1px solid #222;
  position: relative;

  transform: scale(0.8);
  transition: 0.4s;
}

.popup-overlay.active .popup-box {
  transform: scale(1);
}

/* CLOSE */
.popup-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

/* TEXT */
.popup-box h2 {
  margin-bottom: 15px;
  color: var(--green);
}

.popup-box p {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 20px;
}

/* BUTTON */
.popup-btn {
  width: 100%;
  padding: 12px;
  font-size: 16px;
}

/* MOBILE */
@media (max-width: 480px) {
  .popup-box {
    padding: 25px;
  }
}


/* CONTACTS */
.contacts {
  padding: 80px 0;
}

/* GRID */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

/* INFO */
.contacts-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  background: #121212;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #1f1f1f;
}

.contact-item h3 {
  color: var(--green);
  margin-bottom: 5px;
}

.contact-item p {
  opacity: 0.75;
  font-size: 14px;
}

/* FORM */
.contacts-form {
  background: #121212;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #1f1f1f;
}

.contacts-form h3 {
  margin-bottom: 15px;
  color: var(--green);
}

/* INPUTS */
.contacts-form input,
.contacts-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: none;
  border-radius: 6px;
  background: #1a1a1a;
  color: #fff;
  font-size: 14px;
}

/* BUTTON */
.contacts-form button {
  width: 100%;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contacts-grid {
    grid-template-columns: 1fr;
  }
}


/* ABOUT */
.about {
  padding: 80px 0;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

/* TEXT */
.about-content p {
  margin-bottom: 15px;
  line-height: 1.6;
  opacity: 0.85;
}

/* HEADINGS */
.about-content h3 {
  margin-top: 30px;
  margin-bottom: 10px;
  color: var(--green);
}

/* LIST */
.about-content ul {
  margin: 15px 0 20px 20px;
}

.about-content li {
  margin-bottom: 8px;
}

/* CTA */
.about-cta {
  margin-top: 40px;
  text-align: center;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #222;
}

.about-cta h3 {
  margin-bottom: 10px;
}

.about-cta p {
  margin-bottom: 15px;
}