/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #ffffff;
    color: #222;
    line-height: 1.6;
  }
  
  .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
  }
  
  h1, h2, h3, h4 {
    color: #333;
    margin-bottom: 20px;
  }
  
  h1 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
  }
  
  h2 {
    font-size: 2rem;
    text-align: center;
    margin: 40px;
  }
  
  h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #3d00b7;
  }
  
  ul, ol {
    padding-left: 20px;
  }
  
  li {
    margin-bottom: 8px;
  }
  
  a {
    text-decoration: none;
    color: #3d00b7;
    transition: color 0.3s ease;
  }
  
  a:hover {
    color: #25007f;
  }
  
  /* Navbar & Footer */
  header {
    text-align: center;
    padding: 1px 0px 5px 0;
    background: #f9f5ff;
    border-bottom: 1px solid #d2d2ff;
  }
  
  header a {
    font-size: 1.8rem;
    font-weight: bold;
    color: #3d00b7;
    text-decoration: none;
  }
  
  nav {
    margin-top: 10px;
  }
  
  nav a {
    margin: 0 10px;
    color: #3d00b7;
    text-decoration: none;
  }
  
  nav a:hover {
    text-decoration: underline;
  }
  
  footer {
    background: #333;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    margin-top: 60px;
  }
  
  footer p {
    margin: 10px 0;
    font-size: 14px;
  }
  
  footer a {
    color: #fff;
    margin: 0;
    text-decoration: underline;
  }
  
  /* Hero Section */
  .hero {
    background: #e6dbff;
    padding: 60px 20px;
    border-radius: 16px;
    margin-bottom: 40px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  }
  
  .hero h3 {
    color: #3d00b7;
    margin-bottom: 20px;
    font-size: 1.4rem;
  }
  
  .hero p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #222;
  }
  
  .play-btn {
    display: inline-block;
    background: #3d00b7;
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: background 0.3s ease;
    margin: 10px 4rem 0;
  }
  
  .play-btn:hover {
    background: #25007f;
  }
  
  /* Key Features Grid */
  .features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .feature {
    background: #f9f5ff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #d2d2ff;
    text-align: center;
  }
  
  .feature strong {
    font-size: 1.2rem;
    color: #3d00b7;
  }
  
  /* Trust Indicators */
  .trust-indicators {
    text-align: center;
    margin: 40px 0;
    font-size: 14px;
    color: #666;
  }
  
  .trust-indicators p {
    margin: 8px 0;
  }
  
  /* Casino Cards - Grid */
  .casino-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  
  /* Horizontal Card */
  .card-horizontal {
    position: relative;
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    background: #f9f5ff;
    border: 1px solid #d2d2ff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    justify-content: space-between;
    gap: 20px;
  }
  
  .card-horizontal:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
  }
  
  .card-horizontal .logo {
    height: 70px;
    width: 100px;
    object-fit: contain;
  }
  
  .card-horizontal .info {
    flex: 1;
    text-align: center;
  }
  
  .card-horizontal .play-btn {
    margin: 0;
  }
  
  /* Vertical Card */
  .card {
    background: #f9f5ff;
    border: 1px solid #d2d2ff;
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
  }
  
  .rank {
    position: absolute;
    top: 5px;
    left: 5px;
    background: #ffffff;
    color: #7b00ff;
    font-weight: bold;
    border: 2px solid #dcdcdc;
    border-radius: 50%;
    padding: 7px 13px;
    font-size: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    z-index: 1;
  }
  
  .top-rated {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #e6dbff;
    color: #4b1c9c;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
  }
  
  .logo {
    width: 100%;
    height: 125px;
    object-fit: contain;
    display: block;
  }
  
  .bonus {
    font-size: 1.1rem;
    font-weight: 700;
    color: #3d00b7;
    line-height: 1.5;
    margin: 10px 0 8px;
  }
  
  .details {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 14px;
    margin: 10px;
    padding-top: 12px;
    color: #444;
    flex-wrap: wrap;
  }
  
  .details span {
    font-weight: bold;
    font-size: 16px;
  }
  
  .payout span {
    color: #222;
  }
  
  .winrate span {
    color: #00a651;
  }
  
  .more-details {
    margin-top: 14px;
    font-size: 14px;
    color: #5b00ff;
    text-decoration: none;
    font-weight: 500;
  }
  
  .more-details:hover {
    text-decoration: underline;
  }
  
  /* FAQ Section */
  .faq-section {
    max-width: 1150px;
    margin: 60px auto;
    padding: 30px;
    width: 100%;
    background: #f9f5ff;
    border: 1px solid #d2d2ff;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
  }
  
  .faq-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #7b00ff, #3d00b7);
  }
  
  .faq-section h2 {
    text-align: center;
    font-size: 1.8rem;
    color: #3d00b7;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
  }
  
  .faq-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
  }
  
  .faq-item {
    border-bottom: 1px solid #ddd;
    padding: 5px 0;
    margin-bottom: 10px;
  }
  
  .faq-item:last-child {
    border-bottom: none;
  }
  
  .faq-item h3 {
    font-size: 1.1rem;
    color: #333;
    cursor: pointer;
    position: relative;
    z-index: 2;
    padding-right: 30px;
  }
  
  .faq-item h3::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #7b00ff;
  }
  
  .faq-item.active h3::after {
    content: "-";
  }
  
  .answer {
    margin: 10px 0;
    font-size: 1rem;
    color: black;
    display: none;
    padding-top: 10px;
    border-top: 1px dashed #ccc;
  }
  
  .cta-button {
    display: inline-block;
    background: #25007f;
    color: white;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
    transition: background 0.3s ease;
  }
  
  .cta-button:hover {
    background: #1a005a;
  }
  
  .disclaimer {
    font-size: 13px;
    color: #666;
    margin-top: 20px;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  
  /* Trust Badges */
  .trust-badges {
    text-align: center;
    margin: 30px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .trust-badges img {
    width: 100px;
    height: 50px;
    object-fit: contain;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .card-grid,
    .card-vertical {
      grid-template-columns: 1fr;
    }
  
    .features {
      grid-template-columns: 1fr;
    }
  
    .details {
      flex-direction: column;
      gap: 10px;
    }
  
    .faq-section {
      padding: 20px;
    }
  
    .hero {
      padding: 40px 20px;
    }
  }

/* ========================= */
/* Enhanced Navbar (Sticky)  */
/* ========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffffcc;
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid #ece8ff;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  color: #3d00b7;
}

.brand span {
  background: white;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  color: #3d00b7;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  background: #f2ecff;
}

.nav-links a.active,
.nav-links a[aria-current="page"] {
  background: #e9e1ff;
  color: #25007f;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #3d00b7;
  color: #fff !important;
  padding: 10px 14px;
  border-radius: 10px;
}

.nav-cta:hover {
  background: #25007f;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #3d00b7;
}

.nav-toggle:focus {
  outline: 2px solid #7b00ff;
  outline-offset: 2px;
}

/* Mobile menu */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 60px;
    display: none;
    flex-direction: column;
    background: #ffffff;
    border-bottom: 1px solid #ece8ff;
    padding: 12px 16px 18px;
  }
  .site-header.is-open .nav-links { display: flex; }
}

/* ========================= */
/* FAQ Fixes                 */
/* ========================= */
.faq-item.active .answer {
  display: block;
}

/* ========================= */
/* Navbar Simplification     */
/* ========================= */
.site-header {
  background: #fff;
  border-bottom: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.nav-links a {
  background: transparent !important;
  padding: 8px 4px;
  border-radius: 0;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: transparent;
  transition: background 0.2s ease;
}

.nav-links a:hover::after {
  background: #7b00ff;
}

.nav-links a.active::after,
.nav-links a[aria-current="page"]::after {
  background: #3d00b7;
}

.nav-cta {
  margin-left: 6px;
}

/* ========================= */
/* Two-row Purple Navbar     */
/* ========================= */
.site-header.simple {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #2a00b7; /* deep purple */
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.site-header.simple .top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}

.site-header.simple .brand { color: #fff; font-weight: 800; }
.site-header.simple .brand .icon { font-size: 20px; }
.site-header.simple .brand .name { margin-left: 8px; }

.site-header.simple .top-links a,
.site-header.simple .category-links a {
  color: #fff;
  font-weight: 700;
}

.site-header.simple .top-links { display: flex; gap: 20px; }

.site-header.simple .bottom-bar { padding: 10px 20px 16px; }
.site-header.simple .category-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 34px;
}

.site-header.simple a { position: relative; }
.site-header.simple a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px; background: transparent;
}
.site-header.simple a:hover::after { background: rgba(255,255,255,0.7); }
.site-header.simple a.active::after,
.site-header.simple a[aria-current="page"]::after { background: #fff; }

/* Mobile */
@media (max-width: 900px) {
  .site-header.simple .top-links { display: none; }
  .site-header.simple.is-open .top-links { display: flex; }
  .site-header.simple .category-links { display: none; }
  .site-header.simple.is-open .category-links { display: flex; }
}

/* Make toggle visible on purple header */
.site-header.simple .nav-toggle { display: none; color: #fff; }
@media (max-width: 900px) {
  .site-header.simple .nav-toggle { display: inline-flex; }
}

/* ========================= */
/* Navbar sizing adjustments  */
/* ========================= */
.site-header.simple .brand { font-size: 18px; font-weight: 700; }
.site-header.simple .top-links a,
.site-header.simple .category-links a { font-size: 14px; font-weight: 600; }
.site-header.simple .nav-toggle { font-size: 14px; padding: 6px 10px; border: 1px solid rgba(255,255,255,0.25); border-radius: 6px; }

/* Center content in both header rows and make header full-bleed */
.site-header.simple .container { max-width: 1200px; margin: 0 auto; }
.site-header.simple { width: 100%; }
.site-header.simple .top-bar { justify-content: center; gap: 24px; }
.site-header.simple .brand { color: #fff; }
.site-header.simple .top-links { gap: 24px; }
.site-header.simple .bottom-bar { display: flex; justify-content: center; }

/* Top-bar distribution: space-between */
.site-header.simple .top-bar { justify-content: space-between !important; }

/* Remove underline pseudo-elements and use subtle background hover */
.site-header.simple a::after { display: none !important; }
.site-header.simple .top-links a,
.site-header.simple .category-links a {
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.15s ease, color 0.15s ease;
}
.site-header.simple .top-links a:hover,
.site-header.simple .category-links a:hover {
  background: rgba(255,255,255,0.12);
}
.site-header.simple .top-links a.active,
.site-header.simple .category-links a.active,
.site-header.simple .top-links a[aria-current="page"],
.site-header.simple .category-links a[aria-current="page"] {
  background: rgba(255,255,255,0.22);
}

/* Icon styling */
.site-header.simple .category-links a svg,
.site-header.simple .top-links a svg {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  vertical-align: -3px;
}

/* Thinner navbar spacing */
.site-header.simple .top-bar { padding: 4px 16px; }
.site-header.simple .bottom-bar { padding: 4px 16px ; }

/* Smaller, uniform footer */
footer { padding: 24px 16px; }
footer p { margin: 6px 0; font-size: 13px; }
footer a { text-decoration: underline; }

/* Card details dropdown */
.more-details-btn {
  background: #f0ecff;
  color: #3d00b7;
  border: 1px solid #d2d2ff;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
}
.more-details-btn:hover { background: #e6dbff; }

.more-details-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.more-details-panel.open {
  max-height: none;
}
.more-details-content {
  background: #fff;
  border: 1px solid #ece8ff;
  border-radius: 10px;
  padding: 14px;
  margin-top: 10px;
  height: auto;
}
.deposit-icons { 
  display: flow; 
  gap: 8px; 
  align-items: center; 
  justify-items: center; 
  max-width: 200px; 
  margin: 0 auto; 
}


.deposit-icons img { width: 40px; height: 40px; object-fit: contain; filter: saturate(1); }
.deposit-icons svg { height: 28px; width: auto; }

/* Top casino attention card */
.top-casino-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: pulse-glow 2s ease-in-out infinite alternate;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    transform: translateX(-50%) scale(1);
  }
  100% {
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
    transform: translateX(-50%) scale(1.05);
  }
}

/* Center details list and add check SVGs */
.more-details-content ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: 12px;
}
.more-details-content li {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  text-align: left;
}
.more-details-content li::before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 7l-9 9-5-5' stroke='%233d00b7' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

/* Fix play-btn hover */
.play-btn:hover {
  background: #25007f;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(61, 0, 183, 0.3);
}