:root {
  --color-bg: #0f0a19;
  --color-bg-secondary: #1a1429;
  --color-bg-glass: rgba(15, 10, 25, 0.9);
  --color-card: #1e1635;
  --color-card-hover: #140e24;
  --color-text: #ffffff;
  --color-text-muted: #9ca3af;
  --color-primary: #8b5cf6;
  --color-primary-hover: #7c3aed;
  --color-secondary: #a78bfa;
  --color-border: rgba(139, 92, 246, 0.2);
  --color-border-hover: rgba(139, 92, 246, 0.5);
  --color-success: #10b981;
  --font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-family);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 900;
}

h1 { font-size: clamp(30px, 5vw, 56px); }
h2 { font-size: clamp(28px, 4vw, 36px); }
h3 { font-size: clamp(21px, 3vw, 26px); }

.text-gradient {
  background: linear-gradient(to bottom right, #ffffff, var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.text-center { text-align: center; }
.text-muted { color: var(--color-text-muted); }
.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }

/* Layout & Grid */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-narrow {
  max-width: 800px;
  margin: 0 auto;
}

.section {
  padding: 60px 0;
}

@media (min-width: 768px) {
  .section {
    padding: 80px 0;
  }
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-cols-2 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-5 { grid-template-columns: repeat(2, 1fr); }

@media (min-width: 768px) {
  .grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-cols-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-cols-5 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .grid-cols-5 { grid-template-columns: repeat(5, 1fr); }
}

/* Header & Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--color-bg-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}

.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

.brand {
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 900;
  letter-spacing: -1px;
}

.brand-highlight {
  color: var(--color-primary);
}

.nav-links {
  display: none;
  align-items: center;
  gap: clamp(10px, 1.6vw, 24px);
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex !important;
  }
}

.nav-link {
  font-weight: 700;
  font-size: clamp(13px, 1.1vw, 15px);
  padding: 6px 0;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

/* Mobile Hamburger Button */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  cursor: pointer;
  padding: 8px;
  transition: all 0.3s ease;
}

.mobile-toggle:hover {
  background: rgba(139, 92, 246, 0.25);
  border-color: var(--color-primary);
}

.mobile-toggle span {
  display: block;
  height: 2px;
  width: 20px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 1024px) {
  .mobile-toggle {
    display: none !important;
  }
}

/* Mobile Navigation Dropdown Menu */
.mobile-nav {
  display: none !important;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(15, 10, 25, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
  padding: 16px 20px 24px;
  gap: 8px;
  z-index: 100;
  box-sizing: border-box;
}

@media (max-width: 1023px) {
  .mobile-nav.active {
    display: flex !important;
    flex-direction: column;
  }
}

@media (min-width: 1024px) {
  .mobile-nav {
    display: none !important;
  }
}

.mobile-nav .nav-link {
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: none;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

.mobile-nav .nav-link.active {
  background: rgba(139, 92, 246, 0.25);
  color: #fff;
  font-weight: 900;
  border-left: 3px solid var(--color-primary);
}

.nav-link:hover {
  color: var(--color-primary);
}

.nav-link.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 16px;
  font-weight: 900;
  font-size: 18px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.button--primary {
  background-color: var(--color-primary);
  color: #fff;
  box-shadow: 0 10px 25px -5px rgba(139, 92, 246, 0.4);
}

.button--primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(139, 92, 246, 0.5);
}

.button--secondary {
  background-color: rgba(139, 92, 246, 0.1);
  color: var(--color-secondary);
  border: 1px solid var(--color-border);
}

.button--secondary:hover {
  background-color: rgba(139, 92, 246, 0.2);
  border-color: var(--color-primary);
  color: #fff;
}

/* Hero Section */
.hero {
  padding: 60px 0;
  text-align: center;
}

@media (min-width: 768px) {
  .hero {
    text-align: left;
    padding: 80px 0;
  }
}

.hero__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  background: linear-gradient(135deg, rgba(46, 26, 113, 0.2), transparent);
  padding: 40px;
  border-radius: 48px;
  border: 1px solid var(--color-border);
}

@media (min-width: 768px) {
  .hero__wrapper {
    flex-direction: row;
    padding: 60px;
  }
}

.hero__media {
  position: relative;
  flex-shrink: 0;
}

.hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-primary);
  filter: blur(80px);
  opacity: 0.2;
  border-radius: 50%;
}

.hero__image {
  position: relative;
  z-index: 10;
  width: 192px;
  height: 192px;
  border-radius: 50%;
  border: 4px solid rgba(139, 92, 246, 0.3);
  object-fit: cover;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
  .hero__image {
    width: 256px;
    height: 256px;
  }
}

.hero__content h1 {
  margin-bottom: 24px;
}

.hero__desc {
  font-size: 18px;
  color: var(--color-text-muted);
  margin-bottom: 32px;
  max-width: 600px;
}

@media (min-width: 768px) {
  .hero__desc {
    font-size: 20px;
  }
}

/* Cards */
.offer-card {
  background: linear-gradient(145deg, var(--color-card), var(--color-card-hover));
  border: 1px solid var(--color-border);
  border-radius: 32px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
}

.offer-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
  box-shadow: 0 20px 40px -10px rgba(139, 92, 246, 0.15);
}

.offer-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  padding: 4px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-card__logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.offer-card__logo img {
  max-height: 64px;
  object-fit: contain;
}

.offer-card__content {
  text-align: center;
  margin-bottom: 32px;
  flex-grow: 1;
}

.offer-card__title {
  font-size: 24px;
  color: var(--color-secondary);
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .offer-card__title {
    font-size: 30px;
  }
}

.offer-card__subtitle {
  font-size: 14px;
  color: var(--color-text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Callout blocks */
.callout {
  background: rgba(139, 92, 246, 0.05);
  border: 1px solid var(--color-border);
  border-radius: 48px;
  padding: 40px;
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .callout {
    padding: 60px;
  }
}

.callout h2 {
  margin-bottom: 32px;
}

/* Image Containers */
.img-container {
  background: #251d3a;
  border-radius: 24px;
  overflow: hidden;
  border: 1px dashed rgba(139, 92, 246, 0.3);
  position: relative;
}

.img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text Content blocks */
.text-content {
  margin-bottom: 60px;
}

.text-content p {
  margin-bottom: 24px;
  font-size: 17px;
  color: #d1d5db;
}

@media (min-width: 768px) {
  .text-content p {
    font-size: 18px;
  }
}

.text-content h2 {
  color: var(--color-secondary);
  margin-top: 48px;
  margin-bottom: 24px;
}

.text-content ul {
  margin-top: 24px;
  margin-bottom: 24px;
}

.text-content li {
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.text-content .list-cards {
  display: grid;
  gap: 16px;
  padding: 0;
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 640px) {
  .text-content .list-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .text-content .list-cards--3col {
    grid-template-columns: repeat(2, 1fr);
  }
  .text-content .list-cards--5col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .text-content .list-cards--5col {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .text-content .list-cards--3col {
    grid-template-columns: repeat(3, 1fr);
  }
  .text-content .list-cards--5col {
    grid-template-columns: repeat(5, 1fr);
  }
}

.text-content .list-cards li {
  background: rgba(255, 255, 255, 0.05);
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 0;
}

/* Tables */
.table-responsive {
  overflow-x: auto;
  margin: 32px 0;
  border-radius: 16px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-bg-secondary);
  min-width: 600px;
}

th, td {
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

th {
  background: rgba(139, 92, 246, 0.2);
  font-weight: 700;
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

details.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 24px;
  transition: all 0.3s ease;
}

details.faq-item[open] {
  background: rgba(139, 92, 246, 0.05);
  border-color: var(--color-border-hover);
}

summary.faq-question {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-secondary);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 30px;
}

summary.faq-question::-webkit-details-marker {
  display: none;
}

summary.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  transition: transform 0.3s ease;
}

details.faq-item[open] summary.faq-question::after {
  content: "−";
}

.faq-answer {
  margin-top: 16px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Footer */
.site-footer {
  margin-top: 40px;
  border-top: 1px solid rgba(139, 92, 246, 0.3);
  background: #07050d;
  padding-top: 40px;
  padding-bottom: 24px;
}

.footer-grid {
  display: grid;
  gap: 32px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-col h4 {
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links a {
  color: var(--color-text-muted);
  font-weight: 700;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  text-align: center;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
  opacity: 0.3;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.footer-badges:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.badge-18 {
  font-size: 20px;
  font-weight: 900;
  border: 2px solid #fff;
  padding: 4px 12px;
  border-radius: 8px;
}

.footer-disclaimer {
  background: rgba(139, 92, 246, 0.1);
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 32px;
}

.footer-disclaimer p {
  font-size: 10px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  max-width: 800px;
  margin: 0 auto;
}

.footer-copyright {
  color: #4b5563;
  font-size: 12px;
}

/* Slot Cards for slots.html */
.slot-card {
  background: rgba(46, 26, 113, 0.2);
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease;
}

.slot-card:hover {
  border-color: var(--color-border-hover);
}

.slot-card__media {
  height: 192px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.slot-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(46, 26, 113, 0.4);
  z-index: 10;
  transition: background 0.3s ease;
}

.slot-card:hover .slot-card__overlay {
  background: transparent;
}

.slot-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  position: relative;
  z-index: 0;
}

.slot-card:hover .slot-card__image {
  transform: scale(1.1);
}

.slot-card__body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.slot-card__title {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 4px;
}

.slot-card__provider {
  font-size: 12px;
  color: var(--color-secondary);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.slot-card__desc {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

/* Horizontal offer card for bonuses.html */
.offer-card--horizontal {
  flex-direction: column;
}

@media (min-width: 768px) {
  .offer-card--horizontal {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    text-align: left;
  }
}

.offer-card--horizontal .offer-card__content {
  text-align: center;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .offer-card--horizontal .offer-card__content {
    text-align: left;
  }
}

.offer-card--horizontal .offer-card__logo {
  width: 192px;
  height: 128px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 0;
  padding: 24px;
}

/* Utilities */
.mb-8 { margin-bottom: 32px; }
.mb-16 { margin-bottom: 64px; }
.mt-8 { margin-top: 32px; }
.mt-16 { margin-top: 64px; }

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
