/* Google Font loaded via <link> in HTML <head> */

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

body {
  background-color: #07000f;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(120, 80, 255, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(100, 60, 200, 0.08) 0%, transparent 60%);
  background-attachment: fixed;
  color: #ede8ff;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  min-height: 100vh;
  line-height: 1.7;
}

/* ── HEADER ── */

header {
  background: rgba(7, 0, 15, 0.8);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(162, 155, 254, 0.18);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.85rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

nav a {
  color: rgba(237, 232, 255, 0.9);
  text-decoration: none;
  text-decoration: none !important;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.25s ease;
}

nav a:hover {
  color: #a29bfe;
}

nav a[aria-current="page"] {
  color: #a29bfe;
  border-bottom: 2px solid #a29bfe;
  padding-bottom: 2px;
}

.nav-toggle,
#navToggle {
  display: none;
  min-height: 44px;
  min-width: 44px;
  background: none;
  border: none;
  color: #ede8ff;
  font-size: 1.5rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* ── MAIN ── */

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}

/* ── TYPOGRAPHY ── */

h1, h2, h3, h4 {
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(1.65rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  line-height: 1.15;
  background: linear-gradient(110deg, #a29bfe 0%, #ffffff 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  color: #c8c3ff;
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 1.1rem;
  line-height: 1.3;
  padding-left: 0.75rem;
  border-left: 3px solid #a29bfe;
  border-bottom: none;
  padding-bottom: 0;
}

h3 {
  color: #ede8ff;
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

section h3:first-of-type,
h2 + h3 {
  margin-top: 1rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.75;
  color: rgba(237, 232, 255, 0.88);
}

strong {
  color: #ede8ff;
  font-weight: 600;
}

a {
  color: #a29bfe;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(162, 155, 254, 0.4);
  transition: color 0.25s ease, text-decoration-color 0.25s ease;
}

a:hover {
  color: #c4bffe;
  text-decoration-color: rgba(196, 191, 255, 0.7);
}

/* ── HERO ── */

.hero {
  position: relative;
  padding: 3rem 2.5rem 2.5rem;
  margin-bottom: 2.5rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #1c0040 0%, #130030 100%);
  border: 1px solid rgba(162, 155, 254, 0.25);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(162, 155, 254, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -40px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(162, 155, 254, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero h1 {
  margin-bottom: 1.25rem;
  position: relative;
}

.hero p {
  font-size: 1.05rem;
  color: rgba(237, 232, 255, 0.9);
  max-width: 780px;
}

.hero__sub {
  margin-top: 0.5rem;
  margin-bottom: 0.75rem !important;
  color: rgba(237, 232, 255, 0.65) !important;
  font-size: 0.95rem !important;
}

.hero__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero__list li {
  color: rgba(237, 232, 255, 0.88);
  font-size: 0.95rem;
  padding-left: 1.4rem;
  position: relative;
}

.hero__list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: #a29bfe;
  font-size: 0.6rem;
  top: 0.35em;
}

/* ── SECTIONS ── */

section {
  padding: 0;
  margin-bottom: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(162, 155, 254, 0.12);
}

section:first-of-type {
  border-top: none;
  padding-top: 0;
}

section h2 {
  margin-top: 0;
  margin-bottom: 1.25rem;
}

/* ── LISTS ── */

ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

ol li {
  margin-bottom: 0.5rem;
  padding-left: 0.5rem;
  color: rgba(237, 232, 255, 0.88);
}

ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

ul li {
  margin-bottom: 0.5rem;
  color: rgba(237, 232, 255, 0.88);
}

/* ── TABLES ── */

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 1.5rem 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(162, 155, 254, 0.28);
  background: linear-gradient(160deg, #1a0038 0%, #130028 100%);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(162, 155, 254, 0.08);
}

thead {
  background: linear-gradient(90deg, #240050 0%, #1b003c 100%);
  border-bottom: 1px solid rgba(162, 155, 254, 0.3);
}

th {
  color: #a29bfe;
  padding: 0.9rem 1.1rem;
  text-align: left;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

td {
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid rgba(162, 155, 254, 0.08);
  color: rgba(237, 232, 255, 0.88);
  vertical-align: middle;
}

tr:last-child td {
  border-bottom: none;
}

tr:nth-child(even) td {
  background: rgba(162, 155, 254, 0.05);
}

tbody tr {
  transition: background 0.2s ease;
}

tbody tr:hover td {
  background: rgba(162, 155, 254, 0.1);
}

/* ── BUTTONS ── */

.btn-play {
  min-height: 44px;
  padding: 0.7rem 1.5rem;
  white-space: normal;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #a29bfe;
  color: #0a0014;
  border-radius: 12px;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease;
  line-height: 1.4;
}

.btn-play:hover {
  background: #b8b3ff;
  color: #0a0014;
  box-shadow: 0 0 18px rgba(162, 155, 254, 0.45);
  transform: translateY(-1px);
}

.btn-play:active {
  transform: translateY(0);
}

.btn-signin {
  background: transparent;
  color: #a29bfe;
  border: 1.5px solid rgba(162, 155, 254, 0.6);
}

.btn-signin:hover {
  background: rgba(162, 155, 254, 0.1);
  color: #c4bffe;
  border-color: #a29bfe;
  box-shadow: 0 0 14px rgba(162, 155, 254, 0.2);
}

.header-btns {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.btn-header {
  padding: 0.45rem 1.1rem;
  font-size: 0.875rem;
  white-space: nowrap;
  flex-shrink: 0;
  min-height: unset;
}

.nav-play-mobile {
  display: none;
}

/* ── SITE LOGO ── */

.site-logo a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #ede8ff;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: 'Rajdhani', sans-serif;
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.25s ease;
}

.site-logo a:hover {
  color: #a29bfe;
}

.site-logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 6px;
}

/* ── CASINO LOGO ── */

.casino-logo {
  width: 120px;
  height: 50px;
  object-fit: contain;
  display: block;
}

/* ── FOOTER ── */

footer {
  background: linear-gradient(160deg, #1a0038 0%, #130028 100%);
  border-top: 1px solid rgba(162, 155, 254, 0.2);
  text-align: center;
  padding: 2.5rem 2rem;
  margin-top: 3rem;
  font-size: 0.85rem;
  color: rgba(237, 232, 255, 0.8);
}

footer a {
  color: #a29bfe;
  text-decoration: none !important;
}

footer a:hover {
  color: #c4bffe;
}

footer nav {
  margin-bottom: 1rem;
}

footer nav a {
  display: inline-block;
  margin: 0.2rem 0.5rem;
}

/* ── REVIEW CARD ── */

.review-card {
  background: linear-gradient(160deg, #130025 0%, #0e001c 100%);
  border-radius: 12px;
  border: 1px solid rgba(162, 155, 254, 0.25);
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(162, 155, 254, 0.15);
}

.review-card__header h3 {
  margin: 0;
  color: #a29bfe;
}

.review-card__pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(162, 155, 254, 0.15);
}

.review-card__pros h4 {
  color: #22c55e;
  margin-bottom: 0.5rem;
}

.review-card__cons h4 {
  color: #e63946;
  margin-bottom: 0.5rem;
}

.review-card__pros ul,
.review-card__cons ul {
  list-style: none;
  padding-left: 0;
}

.review-card__pros ul li::before {
  content: "✓ ";
  color: #22c55e;
}

.review-card__cons ul li::before {
  content: "✗ ";
  color: #e63946;
}

.review-card__footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(162, 155, 254, 0.15);
  text-align: right;
}

/* ── FAQ ── */

.faq {
  margin: 2rem 0;
}

.faq__item {
  border: 1px solid rgba(162, 155, 254, 0.14);
  border-radius: 10px;
  margin-bottom: 0.6rem;
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq__item:hover {
  border-color: rgba(162, 155, 254, 0.32);
}

.faq__item h3 {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  border-bottom: none;
  font-size: inherit;
  color: inherit;
}

.faq__question {
  width: 100%;
  background: rgba(162, 155, 254, 0.04);
  border: none;
  color: #ede8ff;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-align: left;
  padding: 1rem 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.25s ease, background 0.25s ease;
}

.faq__question:hover {
  background: rgba(162, 155, 254, 0.08);
}

.faq__question::after {
  content: "+";
  color: #a29bfe;
  font-size: 1.3rem;
  line-height: 1;
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.faq__question[aria-expanded="true"] {
  color: #a29bfe;
  background: rgba(162, 155, 254, 0.07);
}

.faq__question[aria-expanded="true"]::after {
  content: "−";
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq__answer p {
  padding: 0.75rem 1.25rem 1rem;
  margin-bottom: 0;
  color: rgba(237, 232, 255, 0.8);
  border-top: 1px solid rgba(162, 155, 254, 0.1);
}

/* ── IMAGES ── */

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

/* ── RESPONSIVE 768px ── */

@media (max-width: 768px) {
  .btn-header {
    display: none;
  }

  .nav-play-mobile {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
  }

  .nav-toggle,
  #navToggle {
    display: flex;
  }

  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 0, 20, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 1rem 2rem;
    gap: 0;
    z-index: 99;
    border-top: 1px solid rgba(162, 155, 254, 0.15);
  }

  nav ul li {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    width: 100%;
    border-bottom: 1px solid rgba(162, 155, 254, 0.08);
  }

  nav ul li:last-child {
    border-bottom: none;
  }

  nav ul.nav-open {
    display: flex;
  }

  main {
    padding: 1.25rem 1rem;
  }

  section {
    padding: 0;
  }

  .hero {
    padding: 2rem 1.25rem 1.75rem;
  }

}

/* ── RESPONSIVE 480px ── */

@media (max-width: 480px) {
  h1 {
    font-size: 1.65rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  p, li {
    font-size: 1rem;
  }

  .review-card__pros-cons {
    grid-template-columns: 1fr;
  }

  table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  thead {
    display: none;
  }

  tbody {
    display: block;
    width: 100%;
  }

  tr {
    display: block;
    margin-bottom: 1rem;
    border: 1px solid rgba(162, 155, 254, 0.15);
    border-radius: 10px;
    overflow: hidden;
  }

  td {
    display: block;
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid rgba(162, 155, 254, 0.08);
    text-align: left;
    word-break: break-word;
  }

  th {
    word-break: break-word;
  }

  td::before {
    content: attr(data-label);
    display: block;
    color: #a29bfe;
    font-weight: 600;
    font-size: 0.7rem;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
  }
}

/* Mobile bottom sticky bar */
.mobile-bottom-bar {
  display: none;
}

@media (max-width: 768px) {
  .mobile-bottom-bar {
    display: flex;
    gap: 0.75rem;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: rgba(7, 0, 15, 0.97);
    backdrop-filter: blur(14px);
    padding: 0.75rem 1rem;
    border-top: 1px solid rgba(162, 155, 254, 0.15);
  }

  .mobile-bottom-bar .btn-play {
    flex: 1;
    justify-content: center;
  }

  body {
    padding-bottom: 80px;
  }
}
