/* Reset and base styles */


@font-face {
font-family: "NeoSansProBold";
src: url("../font/NeoSansProBold.OTF");
font-weight: normal;
font-style: normal;
}

@font-face {
font-family: "NeoSansProMedium";
src: url("../font/NeoSansProMedium.OTF");
font-weight: normal;
font-style: normal;
}

@font-face {
font-family: "NeoSansProRegular";
src: url("../font/NeoSansProRegular.OTF");
font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Montserrat", Arial, sans-serif;
  background: #f0f2f5;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
a {
  text-decoration: none;
}
/* Header */
.main-header {
  background: #1a1a1a;
  color: #fff;
  /* padding: 1rem 0; */
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
}
.brand span {
  color: #ffd700;
}
.main-nav {
  display: flex;
  align-items: center;
}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.main-nav a:hover {
  color: #ffd700;
}
.header-cta {
  background: #ffd700;
  color: #1a1a1a !important;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-weight: 700;
  margin-left: 2rem;
  transition: background 0.3s, color 0.3s;
}
.header-cta:hover {
  background: #fff;
  color: #1a1a1a;
}
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: #1a1a1a
    url("../images/dark-denim-3.png");
  color: #fff;
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      45deg,
      rgba(255, 215, 0, 0.1),
      rgba(255, 215, 0, 0) 70%
    ),
    linear-gradient(135deg, rgba(106, 90, 205, 0.2), rgba(106, 90, 205, 0) 70%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeIn 1s ease-in-out;
  width: 60%;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -1px;
}
.hero .highlight {
  color: #ffd700;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-cta {
  background: #ffd700;
  color: #1a1a1a;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 30px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}
.hero-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #1a1a1a;
    padding: 1rem;
  }
  .main-nav ul.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .header-cta {
    margin-left: 0;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .hero-content{
    width: 90%;
  }
}
/* Featured Casino */
.featured-casino {
  background: #fff;
  padding: 5rem 0;
  box-shadow: 0 2px 16px rgba(95, 46, 234, 0.04);
}
.featured-casino h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: #1a1a1a;
}
.casino-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background: #f3f0ff;
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(95, 46, 234, 0.06);
  gap: 2rem;
}
.casino-logo {
  font-size: 2.2rem;
  font-weight: 700;
  color: #00c9a7;
  background: #fff;
  border-radius: 12px;
  padding: 1.2rem 2.2rem;
  box-shadow: 0 2px 8px rgba(0, 201, 167, 0.08);
}
.casino-details {
  flex: 1;
}
.badge {
  display: inline-block;
  background: #ffd600;
  color: #22223b;
  font-weight: 700;
  border-radius: 8px;
  padding: 0.3rem 1rem;
  margin-bottom: 0.7rem;
  font-size: 1rem;
}
.casino-details ul {
  list-style: disc inside;
  color: #22223b;
  margin-top: 0.5rem;
}
.casino-offer {
  text-align: center;
}
.offer-title {
  font-weight: 700;
  color: #5f2eea;
  margin-bottom: 0.3rem;
}
.offer-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: #00c9a7;
  margin-bottom: 1rem;
}
/* Why Trust Us */
.why-trust {
  background: #eef4f8; /* Lighter background to make cards pop */
  padding: 5rem 0;
}
.why-trust h2 {
  text-align: center;
  color: #1a1a1a; /* Darker text for better contrast */
  margin-bottom: 3rem;
  font-size: 2.5rem; /* Larger heading */
}
.trust-cards {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(280px, 1fr)
  ); /* Responsive grid */
  gap: 2rem;
  justify-content: center;
}
.trust-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* More prominent shadow */
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effects */
}
.trust-card:hover {
  transform: translateY(-10px); /* Lift effect on hover */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12); /* Enhanced shadow on hover */
}
.trust-card .icon {
  font-size: 3rem; /* Larger icons */
  margin-bottom: 1rem;
  color: #ffd700; /* Accent color for icons */
}
.trust-card h3 {
  color: #1a1a1a; /* Darker text for better contrast */
  margin-bottom: 0.8rem;
  font-size: 1.4rem; /* Slightly larger heading */
}
.trust-card p {
  color: #555; /* Softer paragraph text */
  font-size: 1rem;
}
/* Our Numbers */
.our-numbers {
  background: #1a1a1a
    url("../images/dark-denim-3.png");
  color: #fff;
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.our-numbers::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/cubes.png")
    repeat; /* Subtle pattern overlay */
  opacity: 0.1;
  z-index: 0;
}
.our-numbers .container {
  position: relative;
  z-index: 1;
}
.our-numbers h2 {
  margin-bottom: 3.5rem;
  font-size: 2.8rem;
  color: #ffd700; /* Highlight color for heading */
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.stats {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(200px, 1fr)
  ); /* Responsive grid for stats */
  gap: 2.5rem;
  justify-content: center;
}
.stat {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem 1.5rem;
  min-width: 180px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}
.stat:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
}
.stat .icon {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
  color: #00e676; /* Green accent for icons */
}
.stat span {
  font-size: 3rem;
  font-weight: 700;
  color: #ffd700; /* Yellow for numbers */
  display: block;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.stat p {
  font-size: 1.1rem;
  color: #e0e0e0;
}
/* Selection Process */
.selection-process {
  background: #f8f9fa; /* Light background */
  padding: 5rem 0;
  text-align: center;
}
.selection-process h2 {
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}
.selection-process > p {
  max-width: 800px;
  margin: 0 auto 3rem auto;
  font-size: 1.1rem;
  color: #555;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, #ffd700, #5f2eea);
  z-index: 0;
  transform: translateY(-50%);
  display: none; /* Hide line on small screens */
}
@media (min-width: 768px) {
  .process-steps::before {
    display: block;
  }
}
.process-step {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 2.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.process-step .step-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 1rem;
  display: block;
}
.process-step .icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #5f2eea; /* Accent color for icons */
}
.process-step h3 {
  color: #1a1a1a;
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}
.process-step p {
  color: #555;
  font-size: 1rem;
}
/* Play Anywhere Section */
.play-anywhere {
  position: relative;
  background: none;
  padding: 5rem 0;
  z-index: 1;
}
.play-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #5f2eea 0%, #00c9a7 100%);
  opacity: 0.1;
  z-index: 0;
}
.play-card {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 2rem;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  padding: 2.5rem 3rem;
}
.play-img {
  flex: 1 1 260px;
  text-align: center;
}
.play-img img {
  max-width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px #5f2eea33;
  background: #fff;
}
.play-text {
  flex: 2 1 340px;
  min-width: 260px;
}
.play-text h2 {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #1a1a1a;
}
.play-highlight {
  background: linear-gradient(90deg, #ffd700 30%, #fffbe6 100%);
  color: #22223b;
  padding: 0.1em 0.5em;
  border-radius: 0.5em;
  box-shadow: 0 2px 12px #ffd60044;
  display: inline-block;
}
.play-text p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 1.5rem;
}
.play-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}
.play-features li {
  font-size: 1.08rem;
  color: #333;
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.7em;
}
.play-icon {
  font-size: 1.4em;
  color: #5f2eea;
  background: #ffd70022;
  border-radius: 50%;
  padding: 0.25em 0.45em;
  margin-right: 0.3em;
  box-shadow: 0 2px 8px #ffd70022;
}
.play-cta {
  background: #ffd700;
  color: #1a1a1a;
  padding: 1rem 2.2rem;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.13);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.play-cta:hover {
  background: #fff;
  color: #5f2eea;
  transform: scale(1.06);
}
@media (max-width: 900px) {
  .play-card {
    flex-direction: column;
    padding: 2rem 1.2rem;
    gap: 2rem;
  }
  .play-text h2 {
    font-size: 1.4rem;
  }
}
@media (max-width: 600px) {
  .play-anywhere {
    padding: 2.2rem 0 1.5rem 0;
  }
  .play-text h2 {
    font-size: 1.1rem;
  }
  .play-features li {
    font-size: 0.98rem;
  }
}
/* FAQ Section */
.faq-section {
  position: relative;
  background: none;
  padding: 5rem 0;
  z-index: 1;
}
.faq-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #eef4f8;
  opacity: 0.1;
  z-index: 0;
}
.faq-card {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 2rem;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  padding: 2.5rem 2rem 2rem 2rem;
}
.faq-card h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: #1a1a1a;
}
.faq-highlight {
  background: linear-gradient(90deg, #ffd700 30%, #fffbe6 100%);
  color: #22223b;
  padding: 0.1em 0.5em;
  border-radius: 0.5em;
  box-shadow: 0 2px 12px #ffd60044;
  display: inline-block;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.faq-item {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px #5f2eea22;
  overflow: hidden;
  transition: box-shadow 0.2s, background 0.2s;
}
.faq-item.active {
  background: #fffbe6;
  box-shadow: 0 4px 24px #ffd60033;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #1a1a1a;
  font-size: 1.13rem;
  font-weight: 700;
  text-align: left;
  padding: 1.2rem 1.2rem 1.2rem 2.5rem;
  cursor: pointer;
  border-radius: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  transition: background 0.2s;
}
.faq-question:hover {
  background: #ffd70022;
}
.faq-icon {
  font-size: 1.5em;
  color: #5f2eea;
  background: #ffd70022;
  border-radius: 50%;
  padding: 0.25em 0.45em;
  margin-right: 0.3em;
  box-shadow: 0 2px 8px #ffd70022;
}
.faq-answer {
  display: none;
  padding: 0 1.2rem 1.2rem 2.5rem;
  color: #333;
  font-size: 1.05rem;
  background: none;
  border-left: 3px solid #ffd700;
  margin-left: 1.2rem;
  margin-right: 1.2rem;
  border-radius: 0 0 1.2rem 1.2rem;
  animation: fadeInFaq 0.4s;
}
.faq-item.active .faq-answer {
  display: block;
}
@keyframes fadeInFaq {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 600px) {
  .faq-card {
    padding: 1.2rem 0.5rem;
  }
  .faq-card h2 {
    font-size: 1.2rem;
  }
  .faq-question {
    font-size: 1rem;
    padding: 1rem 1rem 1rem 2rem;
  }
  .faq-answer {
    font-size: 0.98rem;
    padding: 0 1rem 1rem 2rem;
  }
}
.payment-section {
  position: relative;
  background: none;
  padding: 5rem 0;
  z-index: 1;
}
.payment-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #5f2eea 0%, #00c9a7 100%);
  opacity: 0.1;
  z-index: 0;
}
.payment-card {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 2rem;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  padding: 2.5rem 2rem 2rem 2rem;
}
.payment-card h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: #1a1a1a;
}
.payment-highlight {
  /* background: linear-gradient(90deg, #ffd700 30%, #fffbe6 100%); */
  color: #22223b;
  /* padding: 0.1em 0.5em; */

  display: inline-block;
}
.payment-methods-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
}
.payment-method {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  box-shadow: 0 4px 16px #5f2eea22;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
  position: relative;
}
.payment-method:hover {
  box-shadow: 0 8px 32px #ffd60044;
  background: #fffbe6;
  transform: translateY(-6px) scale(1.06);
}
.payment-method img {
  height: 58px;
  filter: grayscale(0.2);
  opacity: 0.95;
  transition: filter 0.2s, opacity 0.2s;
}
.payment-method:hover img {
  filter: none;
  opacity: 1;
}
.payment-method span {
  font-size: 1rem;
  color: #5f2eea;
  font-weight: 600;
  letter-spacing: 0.5px;
}
@media (max-width: 600px) {
  .payment-card h2 {
    font-size: 1.2rem;
  }
  .payment-methods-list {
    gap: 1.2rem;
  }
  .payment-method {
    width: 70px;
    height: 70px;
  }

  .payment-method span {
    font-size: 0.8rem;
  }
  .featured-casino h2 {
    font-size: 2rem;
  }
  .why-trust h2 {
    font-size: 2rem;
  }
  .our-numbers h2 {
    font-size: 2rem;
  }
  .selection-process h2 {
    font-size: 2rem;
  }
  .play-anywhere h2 {
    font-size: 2rem;
  }
  .faq-section h2 {
    font-size: 2rem;
  }
  .payment-section h2 {
    font-size: 2rem;
  }
  .stat span {
    font-size: 2rem;
  }
}
/* Footer */
.main-footer {
  position: relative;
  background: none;
  padding: 0;
  z-index: 1;
}
.footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1a1a1a
    url("../images/dark-denim-3.png");
  color: #fff;
  opacity: 0.95;
  z-index: 0;
}
.footer-content {
  position: relative;
  z-index: 2;

  margin: 0 auto;
  padding: 3rem 2rem 1.5rem 2rem;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-brand-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  /* margin-bottom: 1.2rem; */
}
/* .footer-brand {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
} */
.footer-brand span {
  color: #ffd700;
}

.footer-links {
  margin: 1.2rem 0 0.7rem 0;
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 1.08rem;
}
.footer-links a {
  color: #fffbe6;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #ffd700;
  text-decoration: underline;
}
.footer-sep {
  color: #ffd700;
  font-weight: 700;
}
.footer-desc {
  margin: 1.2rem 0 0.7rem 0;
  color: #fffbe6;
  font-size: 1rem;
}
.footer-legal {
  color: #ffd700;
  font-size: 0.98rem;
  margin-top: 0.5rem;
}
.footer-legal-18{
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.footer-legal a {
  color: #fff;
  font-weight: 700;
}
@media (max-width: 600px) {
  .footer-content {
    padding: 2rem 0.5rem 1rem 0.5rem;
  }
  .footer-brand {
    font-size: 1.2rem;
  }
  .footer-brand-row {
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-links {
    font-size: 0.95rem;
    gap: 0.5rem;
  }
  .footer-desc {
    font-size: 0.92rem;
  }
}
.logos-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.logos-footer a {
  max-width: 130px; /* Adjust as needed */
  height: auto;
  margin: 0.5rem;
  background-color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition: transform 0.3s;
  padding: 7px;
}
.logos-footer a img {
  width: 100%;
  height: auto;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;

  gap: 3rem;
}
.footer-bottom img {
  width: 40px;
}

/* table */

.table__items .table__item {
  display: flex;
  justify-content: space-between;
  background-color: var(--light);
  border-radius: 20px;
  width: 100%;
  padding: 10px 40px 10px 10px;
  margin-bottom: 20px;
  height: 160px;
  box-shadow: 0 1px 6px 0 rgb(32 33 36 / 18%);
  font-family: "NeoSansProRegular";
  border-bottom: 3px solid var(--primary);
}

.table__items .table__item:last-child {
  margin-bottom: 0;
}

.table__items .item__logo {
  display: flex;
  flex-direction: column;
}

.table__items .item__logo .logo {
  display: flex;
  margin: auto 0;
}

.table__items .item__logo h3 {
  font-size: 16px;
  color: #2c3e50;
  text-align: center;
}

.table__items .item__offers {
  display: flex;
  flex-direction: column;
  max-width: 250px;
  width: 100%;
  justify-content: center;
}

.table__items .item__offer {
  display: flex;
  flex-direction: column;
}

.table__items .item__offers .reputation {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #2c3e50;
  font-family: "NeoSansProMedium";
  margin: 10px 0;
}

.table__items .item__offers .reputation img {
  margin: 0 0 -2px 10px;
}

.table__items .item__offers .casino__info li {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #525252;
  font-family: "NeoSansProMedium";
}

.table__items .item__offers .casino__info li > img {
  margin-right: 5px;
  margin-top: -2px;
}

.table__items .badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 15px;
  font-size: 12px;
  line-height: 15px;
  color: #ffffff;
  background-color: rgb(204, 0, 18);;
  border-radius: 3px;
  font-family: "NeoSansProBold";
}

.table__items .item__logo .badge {
  display: none !important;
}

.table__items .badge.none {
  background-color: transparent;
}

.table__items .item__info {
  margin: auto 0;
  max-width: 225px;
  width: 100%;
}

.table__items .item__info p {
  font-size: 14px;
  color: #d35400;
  text-align: center;
  margin-bottom: 10px;
  font-family: "NeoSansProBold";
}

.table__items .item__info h4 {
  font-size: 16px;
  line-height: 20px;
  color: #2c3e50;
  text-align: center;
  font-family: "NeoSansProBold";
}

.table__items .item__action {
  width: 100%;
  max-width: 280px;
  margin: auto 0;
}

.table__items .item__action .casino__link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  width: 100%;
  border-radius: 30px;
  background-color: rgb(255, 222, 0);;
  font-size: 18px;
  color: #000;
  text-transform: uppercase;
  padding-top: 2px;
  text-decoration: none;
  font-family: "NeoSansProBold";
}

.table__items .item__action .casino__payments {
  display: block;
  position: relative;
  width: 250px;
  height: max-content;
  overflow: hidden;
  margin: 0 auto;
}

.table__items .item__action .casino__payments .items {
  display: flex;
  align-items: center;
  justify-content: center;
}

.table__items .item__action .casino__payments img {
  margin: 0 5px;
}
.items img {
  height: 35px;
}
.casino__info img {
  height: 9px;
}
.reputation img {
  height: 8px;
}

/* table responsive */

@media screen and (min-width: 1024px) and (max-width: 1140px) {
  .slick__offers .slide .casino__payments,
  .table__items .item__action .casino__payments {
    width: 200px;
  }

  .table__items .item__logo .badge {
    display: none !important;
  }

  .table__items .item__logo .logo img {
    width: 200px;
  }

  .table__items .item__action {
    max-width: 234px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023.98px) {
  .table__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .table__items .table__item {
    flex-direction: column;
    margin: 0;
    height: auto;
    padding: 10px;
    align-items: center;
  }

  .table__items .badge {
    margin: 10px auto 0;
  }

  .table__items .item__logo .badge {
    display: flex !important;
  }

  .table__items .item__logo .badge.none {
    margin: 0;
  }

  .table__items .item__offers .badge.none {
    height: 0;
    margin: 0;
  }

  .table__items .item__info {
    margin: 20px 0;
  }
}

@media screen and (max-width: 767px) {
  .table__items .table__item {
    flex-direction: column;
    align-items: center;
    height: max-content;
    padding: 20px;
    margin-bottom: 5px;
  }

  .table__casinos thead tr th:nth-child(2),
  .table__casinos thead tr th:nth-child(4) {
    display: none;
  }

  .table__casinos tbody tr td:nth-child(2),
  .table__casinos tbody tr td:nth-child(4) {
    display: none;
  }

  .table__items .badge {
    margin: 10px auto 0;
  }

  .table__items .item__offers {
    display: none;
  }

  .table__items .item__logo .badge {
    display: flex !important;
  }

  .table__items .item__info {
    margin: auto 0 15px;
  }

  .table__items .item__action .casino__payments {
    width: 230px;
  }
}

@media screen and (max-width: 320px) {
  .table__items .item__action .casino__link {
    height: 50px;
  }

  .table__casinos tbody tr td:first-child img {
    height: 45px;
  }
}

/* policy pages */

.privacy-main {
  background-color: var(--border-color);
  padding-top: 50px;
  padding-bottom: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.privacy-content {
  /* padding: 40px; */
  border-radius: 8px;
  /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); */
}

.privacy-content h2 {
  font-size: 2.2em;
  color: var(--accent-dark);
  margin-bottom: 15px;
  padding-bottom: 10px;
  text-align: center;
}
.privacy-content h3 {
  font-size: 1.2rem;
}

.privacy-content p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.privacy-content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .privacy-content h1 {
    font-size: 2.2em;
  }

  .privacy-content h2 {
    font-size: 1.5em;
  }
}

/* contact page */

.contact-section {
  padding: 80px 0;
  text-align: center;
  background-image: url("../images/cubes.png");
  background-color: #1a1a1a;
  color: #fff;
}
.contact-head {
  margin-bottom: 2rem;
}

.contact-section h1 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 20px;
}

.contact-section p {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 10px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 1rem;
  color: #333;
  margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ffd700;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.submit-btn {
  background: #ffd700;
  color: #1a1a1a;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: #fff;
  color: #1a1a1a;
}

#success-message {
  display: none;
  margin-top: 20px;
  padding: 20px;
  background: #159834;
  color: #155724;
  border: 1px solid #c3e6cb;
  border-radius: 5px;
  animation: fadeIn 0.5s ease-in-out;
}


/* age restriction page */


        .age-restriction {
        
            background-color:#1a1a1a;
            color: #f1faee;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            margin: 0;
            text-align: center;
        }

        .age-container {
            max-width: 600px;
            padding: 40px;
           
            border-radius: 8px;
            
        }

       .age-container h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5em;
            color:#c3e6cb;
            margin-bottom: 20px;
        }

       .age-container p {
            font-size: 1.1em;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .warning-box {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 8px;
            margin-top: 30px;
        }

        .warning-box p {
            margin: 0;
            font-size: 1em;
            color: #f1faee;
        }


        /* age verification popup*/

        #age-verification-popup {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  font-family: 'Arial', sans-serif;
}

.age-verification-content {
  max-width: 400px;
  width: 90%;
 background-image: url("../images/cubes.png");
  background-color: #1a1a1a;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  color: #fff;
  box-shadow: 0 0 20px #ffd700;
  animation: popupFadeIn 0.4s ease;
}

.age-verification-content h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #ffd600;
}

.age-verification-content p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.age-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 15px;
}

.age-btn {
  flex: 1;
  padding: 12px 15px;
  font-size: 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.age-btn.confirm {
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  color: #000;
  font-weight: bold;
}

.age-btn.confirm:hover {
  background: linear-gradient(135deg, #ffb400, #e67300);
}

.age-btn.deny {
  background: #444;
  color: #fff;
}

.age-btn.deny:hover {
  background: #666;
}

.responsible-gaming {
  font-size: 13px;
  color: #ccc;
}

.responsible-gaming span {
  color: #ffd700;
  font-weight: 500;
}

.popup-box img{
    width: 3rem;
}
@keyframes popupFadeIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Responsive */
@media (max-width: 480px) {
  .age-verification-content {
    padding: 20px 15px;
  }
  .age-verification-content h2 {
    font-size: 20px;
  }
  .age-btn {
    font-size: 14px;
    padding: 10px;
  }
}

