/* Reset & base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #f4f4f4;
  background-color: #171717;
  min-height: 100vh;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: #171717;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.logo-wrapper img {
  height: 42px;
  width: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.auth-btn {
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #f4f4f4;
}

.auth-btn--primary {
  background: linear-gradient(135deg, #ffd34f, #ffb347);
  color: #1f1f1f;
  border-color: transparent;
  position: relative;
  overflow: hidden;
}

.header-register-btn {
  background: linear-gradient(135deg, #ffd34f, #ffb347);
  color: #1f1f1f;
  padding: 10px 24px;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.header-register-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 196, 64, 0.4);
}

.header-register-btn .twinkle {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  animation: twinkle 2s infinite;
}

@keyframes twinkle {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

/* Breadcrumbs */
.breadcrumbs {
  background: #171717;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.breadcrumb-list {
  list-style: none;
  display: flex;
  gap: 8px;
  font-size: 0.8rem;
  padding: 6px 0;
  color: #b3b3b3;
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb-list li:not(:last-child)::after {
  content: '/';
  color: #c1cbd6;
}

.breadcrumb-list a {
  color: #8cd6b8;
}

.breadcrumb-list li:last-child {
  color: #7c8591;
}

/* Hero */
.hero-banner {
  position: relative;
  margin: 0 0 16px;
  border-radius: 0;
  overflow: hidden;
  background: #0b0b0b;
}

.hero-banner img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.55;
}

.cta-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.78);
  padding: 28px;
  border-radius: 12px;
  width: min(90%, 500px);
  text-align: center;
  color: #f5f8ff;
}

.cta-title {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-text {
  margin-bottom: 18px;
  color: #cbd5e1;
}

.cta-button {
  display: inline-block;
  margin-top: 12px;
  background: linear-gradient(135deg, #56d8c0, #2fbba1);
  color: #021a17;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(47, 187, 161, 0.35);
}

.hero-banner.hero-overlay-top .cta-overlay {
  top: 45%;
  transform: translate(-50%, -45%);
}

/* Slots */
.popular-slots {
  padding: 32px 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #f5f5f5;
  margin-bottom: 8px;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.slot-item {
  background: #1f1f1f;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  opacity: 0;
  transform: translateY(12px);
}

.slot-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

.slot-item.slots-card--visible {
  opacity: 1;
  transform: translateY(0);
}

.main-content {
  padding: 24px 0 32px;
}

.main-content .container {
  margin-bottom: 20px;
}

/* Content */
.content-section {
  padding: 32px 0;
}

.content-section p {
  color: #d0d5de;
  margin-bottom: 16px;
}

.content-section .section-title {
  color: #f5f5f5;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.highlight-card {
  background: #1f1f1f;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.highlight-card h3 {
  margin-bottom: 8px;
  font-size: 1rem;
  color: #ffffff;
}

/* Table */
.table-wrapper {
  margin-top: 24px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  background: #1b1b1b;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  background: #1b1b1b;
}

.data-table caption {
  margin-bottom: 20px;
  text-align: left;
  font-size: 0.95rem;
  color: #9cc7bd;
  font-weight: 500;
  padding: 0 4px;
}

.data-table th,
.data-table td {
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.2s ease;
}

.data-table th {
  text-align: left;
  font-weight: 600;
  color: #8dd9c4;
  width: 30%;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(141, 217, 196, 0.05);
}

.data-table td {
  color: #d0d5de;
  font-size: 0.95rem;
  line-height: 1.7;
}

.data-table tr:last-child th,
.data-table tr:last-child td {
  border-bottom: none;
}

.data-table tr {
  transition: all 0.2s ease;
}

.data-table tr:hover {
  background: #252525;
}

.data-table tr:hover th {
  background: rgba(141, 217, 196, 0.1);
  color: #a0e5d0;
}

.data-table tr:hover td {
  color: #e0e5ee;
}

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

.faq-card {
  background: #1f1f1f;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.faq-card h3 {
  margin-bottom: 8px;
  color: #ffffff;
}

.faq-card p {
  margin: 0;
  color: #ced4df;
}

/* Footer */
.footer {
  background: #171717;
  color: #e8f5f2;
  padding: 32px 0 18px;
  margin-top: 32px;
}

.payment-methods {
  text-align: center;
  margin-bottom: 20px;
}

.payment-title {
  font-size: 1.1rem;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8dd9c4;
}

.payment-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.payment-logo {
  height: 42px;
  opacity: 0.95;
  transition: transform 0.2s ease;
}

.payment-logo:hover {
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  color: #9cc7bd;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .slots-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: row;
    align-items: center;
  }

  .header-content {
    gap: 12px;
  }

  .logo-wrapper {
    flex: 1;
  }

  .hero-banner {
    margin: 16px 0;
  }

  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .table-wrapper {
    margin-top: 20px;
    border-radius: 16px;
    overflow: visible;
  }

  .data-table {
    border-collapse: separate;
    border-spacing: 0 10px;
    background: transparent;
  }

  .data-table tbody,
  .data-table tr {
    display: block;
    width: 100%;
  }

  .data-table tr {
    background: #1f1f1f;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
  }

  .data-table tr:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    border-color: #8dd9c4;
  }

  .data-table th,
  .data-table td {
    display: block;
    width: 100%;
    padding: 12px 20px;
    text-align: left;
    border-bottom: none;
  }

  .data-table th {
    font-size: 0.9rem;
    color: #8dd9c4;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-bottom: 4px;
    font-weight: 600;
  }

  .data-table td {
    color: #d0d5de;
    padding-top: 4px;
    padding-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .data-table td::before {
    content: none;
  }

  .data-table caption {
    margin-bottom: 16px;
    text-align: left;
    font-size: 0.9rem;
    color: #9cc7bd;
    padding: 0 4px;
  }

}

@media (max-width: 480px) {
  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .data-table th,
  .data-table td {
    padding: 10px 16px;
  }

  .header-register-btn {
    width: 100%;
    text-align: center;
  }

  .cta-overlay {
    padding: 20px;
  }

  .data-table th,
  .data-table td {
    padding: 8px 15px;
  }
}
