:root {
  --bg-dark: #07080c;
  --bg-card: rgba(18, 20, 29, 0.75);
  --bg-card-hover: rgba(26, 30, 44, 0.9);
  --border-neon-gold: rgba(255, 215, 0, 0.35);
  --border-neon-red: rgba(255, 0, 85, 0.35);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --text-main: #f3f4f8;
  --text-muted: #a0a6be;
  --gold-light: #fff3a3;
  --gold-primary: #ffd700;
  --gold-dark: #ff8800;
  --crimson-primary: #ff0055;
  --crimson-glow: #ff1a66;
  --emerald-primary: #00e676;
  --cyan-accent: #00f0ff;
  --radius-lg: 16px;
  --radius-md: 10px;
  --radius-sm: 6px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-dark);
  background-image:
    radial-gradient(
      circle at 50% 0%,
      rgba(255, 0, 85, 0.18) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 10% 30%,
      rgba(255, 215, 0, 0.1) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 90% 70%,
      rgba(0, 240, 255, 0.08) 0%,
      transparent 40%
    ),
    linear-gradient(180deg, #050608 0%, #0a0c14 100%);
  background-attachment: fixed;
  color: var(--text-main);
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.site-main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 24px 16px 60px;
}
article {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
/* Headings */
.general-h1 {
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 16px 0;
  line-height: 1.25;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    var(--gold-light) 40%,
    var(--gold-primary) 70%,
    var(--gold-dark) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.3));
}
.general-h2 {
  font-size: clamp(20px, 4vw, 26px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 16px 0;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 12px;
}
.general-h3 {
  font-size: clamp(17px, 3.5vw, 21px);
  font-weight: 700;
  margin: 20px 0 12px 0;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 8px;
}
.general-p {
  margin: 0 0 14px 0;
  color: var(--text-muted);
  font-size: 15px;
}
.general-p:last-child {
  margin-bottom: 0;
}
/* Section Styling */
.content-section {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.content-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--border-neon-gold),
    var(--crimson-primary),
    transparent
  );
}
.content-section:hover {
  border-color: rgba(255, 215, 0, 0.25);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(255, 215, 0, 0.05);
}
/* Hero Banner Section */
.hero-section {
  background: linear-gradient(
    135deg,
    rgba(25, 12, 28, 0.85) 0%,
    rgba(15, 18, 30, 0.85) 100%
  );
  border: 1px solid var(--border-neon-red);
  box-shadow:
    0 0 30px rgba(255, 0, 85, 0.15),
    inset 0 0 20px rgba(255, 0, 85, 0.1);
  padding: 32px 24px;
}
.hero-section::before {
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--gold-primary),
    var(--crimson-primary),
    var(--cyan-accent)
  );
}
/* CTA Wrapper & Button */
.cta-container {
  margin-top: 24px;
  display: flex;
  justify-content: flex-start;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000000;
  background: linear-gradient(135deg, #fff2a3 0%, #ffd700 50%, #ff9900 100%);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow:
    0 0 25px rgba(255, 215, 0, 0.5),
    0 4px 15px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  text-decoration: none;
}
.cta-button::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: rotate(30deg);
  animation: shine 3s infinite;
}
@keyframes shine {
  0% {
    transform: translateX(-100%) rotate(30deg);
  }
  20% {
    transform: translateX(100%) rotate(30deg);
  }
  100% {
    transform: translateX(100%) rotate(30deg);
  }
}
.cta-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 0 35px rgba(255, 215, 0, 0.8),
    0 6px 20px rgba(0, 0, 0, 0.6);
}
/* Lists Transformation to Casino Cards / Grid */
.general-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}
ul.general-list li {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  color: var(--text-main);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}
ul.general-list li::before {
  display: none;
}
ul.general-list li:hover {
  background: rgba(255, 0, 85, 0.08);
  border-color: rgba(255, 0, 85, 0.3);
  transform: translateY(-2px);
}
/* Ordered Steps List */
ol.general-list {
  counter-reset: casino-step;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
ol.general-list li {
  counter-increment: casino-step;
  background: rgba(255, 215, 0, 0.02);
  border: 1px solid rgba(255, 215, 0, 0.08);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  color: var(--text-main);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}
ol.general-list li::before {
  content: counter(casino-step);
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: #000000;
  font-weight: 900;
  font-size: 12px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}
ol.general-list li:hover {
  background: rgba(255, 215, 0, 0.06);
  border-color: rgba(255, 215, 0, 0.3);
}
/* Table Styling - Casino Ledger */
.table-wrap {
  overflow-x: auto;
  margin: 20px 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-neon-gold);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.general-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
}
.general-table th {
  background: linear-gradient(180deg, #1f2333 0%, #151824 100%);
  color: var(--gold-primary);
  font-weight: 800;
  padding: 14px 18px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--border-neon-gold);
}
.general-table td {
  padding: 14px 18px;
  background: rgba(15, 17, 25, 0.9);
  color: var(--text-main);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.general-table tr:last-child td {
  border-bottom: none;
}
.general-table tr:hover td {
  background: rgba(255, 215, 0, 0.04);
}
/* Responsive adjustments */
@media (max-width: 600px) {
  .site-main {
    padding: 16px 12px 40px;
  }
  .content-section {
    padding: 18px 14px;
  }
  .hero-section {
    padding: 22px 16px;
  }
  .general-list {
    grid-template-columns: 1fr;
  }
  .cta-button {
    width: 100%;
    padding: 14px 20px;
    font-size: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cta-button::after {
    animation: none;
  }
  .cta-button,
  .content-section,
  ul.general-list li,
  ol.general-list li {
    transition: none;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 8, 12, 0.94);
  border-bottom: 1px solid var(--border-neon-gold);
  backdrop-filter: blur(14px);
}
.site-header-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo-slot {
  width: 220px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--gold-primary);
  border-radius: var(--radius-md);
  color: var(--gold-light);
  background: rgba(255, 215, 0, 0.04);
  font-size: 13px;
  text-align: center;
}
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
.header-button {
  height: 54px;
  min-width: 158px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: #111 !important;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none !important;
  box-shadow: 0 8px 24px rgba(255, 136, 0, 0.22);
  transition:
    transform 0.2s,
    filter 0.2s;
}
.header-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}
.header-button.secondary {
  background: linear-gradient(
    135deg,
    var(--crimson-glow),
    var(--crimson-primary)
  );
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(255, 0, 85, 0.2);
}
.site-footer {
  padding: 28px 16px;
  border-top: 1px solid var(--border-neon-gold);
  background: rgba(7, 8, 12, 0.96);
  color: var(--text-muted);
  text-align: center;
  font-size: 14px;
}
@media (max-width: 680px) {
  .site-header-inner {
    min-height: auto;
    padding: 10px 0;
    flex-wrap: wrap;
    gap: 10px;
  }
  .logo-slot {
    width: 100%;
    height: 46px;
  }
  .header-actions {
    width: 100%;
  }
  .header-button {
    flex: 1;
    min-width: 0;
    height: 50px;
    padding: 0 12px;
  }
}

.general-h1,
.general-h2,
.general-h3 {
  width: 100%;
  text-align: center;
  justify-content: center;
}
.cta-container {
  justify-content: center;
}
.general-list {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}
ul.general-list li {
  justify-content: center;
  text-align: center;
}
ol.general-list {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}
.faq-list {
  width: min(100%, 860px);
  margin: 18px auto 0;
  display: grid;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}
.faq-item[open] {
  border-color: var(--border-neon-gold);
  box-shadow: 0 0 18px rgba(255, 215, 0, 0.06);
}
.faq-question {
  position: relative;
  padding: 17px 48px 17px 20px;
  color: var(--text-main);
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  list-style: none;
}
.faq-question::-webkit-details-marker {
  display: none;
}
.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-primary);
  font-size: 24px;
  font-weight: 400;
}
.faq-item[open] .faq-question::after {
  content: "−";
}
.faq-answer {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--text-muted);
  font-size: 15px;
}

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