/* Base typography and layout inspired by BC.Game (dark, neon accents) */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: #1a1a1a;
  color: #e5e7eb;
  line-height: 1.6;
}

a {
  color: #00e701;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: #00e701;
  color: #000;
  box-shadow: 0 0 18px rgba(0, 231, 1, 0.55);
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 26px rgba(0, 231, 1, 0.85);
  background: #00ff00;
}

.btn-ghost {
  background: rgba(15, 23, 42, 0.85);
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.4);
  white-space: nowrap;
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 1);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(26, 26, 26, 0.96);
  border-bottom: 1px solid rgba(55, 55, 55, 1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
}

.branding {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.branding-logo {
  width: 32px;
  height: 32px;
  border-radius: 0.75rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.branding-logo svg {
  width: 32px;
  height: 32px;
  display: block;
}

.branding-text {
  display: flex;
  flex-direction: column;
}

.branding-title {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.branding-subtitle {
  font-size: 0.75rem;
  color: #9ca3af;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.primary-nav a {
  font-size: 0.9rem;
  color: #e5e7eb;
}

.primary-nav a:hover {
  color: #00e701;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lang-switcher label {
  font-size: 0.8rem;
  color: #9ca3af;
}

.lang-select {
  background: #020617;
  color: #e5e7eb;
  border-radius: 9999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  padding: 0.3rem 1.4rem 0.3rem 0.7rem;
  font-size: 0.8rem;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #9ca3af 50%), linear-gradient(135deg, #9ca3af 50%, transparent 50%);
  background-position: calc(100% - 10px) calc(50% - 3px), calc(100% - 5px) calc(50% - 3px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.lang-select:focus {
  outline: none;
  border-color: #00e701;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #e5e7eb;
  font-size: 1.4rem;
}

/* Hero section */

.hero {
  padding: 2.5rem 0 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #a5b4fc;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #00e701;
  box-shadow: 0 0 12px rgba(0, 231, 1, 0.7);
}

.hero-title {
  margin-top: 0.6rem;
  font-size: 2.1rem;
  line-height: 1.15;
}

.hero-highlight {
  color: #00e701;
}

.hero-lead {
  margin-top: 0.9rem;
  color: #9ca3af;
  font-size: 0.98rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.4rem;
  font-size: 0.85rem;
  color: #9ca3af;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-top: 1.5rem;
}

.hero-note {
  font-size: 0.8rem;
  color: #6b7280;
}

.hero-card {
  position: relative;
  border-radius: 1.5rem;
  background: #2a2a2a;
  padding: 1.25rem;
  border: 1px solid rgba(85, 85, 85, 0.5);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.9);
}

.hero-card-header {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
}

.hero-card-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 231, 1, 0.5);
  font-size: 0.7rem;
  color: #bbf7d0;
  background: rgba(0, 231, 1, 0.16);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
  width: 100%;
}

.hero-card-badge:hover {
  background: rgba(0, 231, 1, 0.25);
  border-color: rgba(0, 231, 1, 0.7);
}

.hero-card-title {
  margin-top: 0.7rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.hero-card-meta {
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: #9ca3af;
}

.hero-card-promo {
  margin-top: 0.9rem;
  padding: 0.7rem 0.75rem;
  border-radius: 0.9rem;
  background: rgba(15, 23, 42, 0.85);
  border: 1px dashed rgba(0, 231, 1, 0.7);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.15s ease;
}

.hero-card-promo:hover {
  background: rgba(0, 231, 1, 0.05);
}

.promo-code-chip {
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(0, 231, 1, 0.2);
  color: #bbf7d0;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  border: none;
  transition: background 0.15s ease;
}

.promo-code-chip:hover {
  background: rgba(0, 231, 1, 0.35);
}

.hero-card-footer {
  margin-top: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #6b7280;
}

.hero-card-footer span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.hero-card-footer span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #00e701;
  box-shadow: 0 0 10px rgba(0, 231, 1, 0.8);
}

/* Sections */

main {
  padding-bottom: 6rem;
}

.section {
  padding: 2.5rem 0 1rem;
  border-top: 1px solid rgba(55, 55, 55, 1);
}

.section-header {
  margin-bottom: 1.25rem;
}

.section-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b7280;
}

.section-title {
  margin-top: 0.4rem;
  font-size: 1.55rem;
}

.section-subtitle {
  margin-top: 0.3rem;
  font-size: 0.9rem;
  color: #9ca3af;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: 2.2rem;
}

.card {
  background: #2a2a2a;
  border-radius: 1.1rem;
  border: 1px solid rgba(85, 85, 85, 0.7);
  padding: 1.2rem 1.3rem;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  font-size: 1.1rem;
}

.card p {
  margin-top: 0.25rem;
  font-size: 0.9rem;
  color: #d1d5db;
}

.list-check {
  list-style: none;
  padding-left: 0;
  margin: 0.5rem 0 0;
}

.list-check li {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.list-check li::before {
  content: "✔";
  color: #00e701;
  font-size: 0.8rem;
  margin-top: 0.1rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.6rem;
}

.pill {
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(107, 114, 128, 0.9);
  color: #e5e7eb;
}

.muted {
  color: #9ca3af;
  font-size: 0.86rem;
}

.accent {
  color: #00e701;
}

.branding {
  cursor: pointer;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.9rem;
}

.game-card {
  background: #2a2a2a;
  border-radius: 0.9rem;
  border: 1px solid rgba(85, 85, 85, 0.9);
  padding: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.8rem;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.game-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 231, 1, 0.7);
}

.game-name {
  font-weight: 600;
}

.game-tag {
  font-size: 0.68rem;
  color: #9ca3af;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.faq-item {
  border-radius: 0.9rem;
  border: 1px solid rgba(85, 85, 85, 0.9);
  background: #2a2a2a;
  padding: 0.9rem 1rem;
}

.faq-item h3 {
  font-size: 0.98rem;
  margin: 0 0 0.4rem;
}

.faq-item p {
  margin: 0;
  font-size: 0.86rem;
  color: #d1d5db;
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.7rem;
  font-size: 0.85rem;
}

.table th,
.table td {
  padding: 0.5rem 0.6rem;
  border-bottom: 1px solid rgba(55, 55, 55, 1);
}

.table th {
  text-align: left;
  color: #9ca3af;
  font-weight: 500;
}

.table tr:nth-child(even) td {
  background: rgba(42, 42, 42, 0.6);
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(55, 55, 55, 1);
  padding: 1.8rem 0 4rem;
  background: #1a1a1a;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 1.8rem;
  align-items: flex-start;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-top: 0.7rem;
  font-size: 0.88rem;
}

.footer-meta {
  font-size: 0.78rem;
  color: #6b7280;
}

.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(55, 55, 55, 1);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #6b7280;
}

/* Persistent promo bar (popup-style) */

.promo-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: rgba(26, 26, 26, 0.98);
  border-top: 1px solid rgba(0, 231, 1, 0.3);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.9);
}

.promo-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 16px;
  font-size: 0.85rem;
}

.promo-bar-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  flex: 1;
}

.promo-badge {
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(0, 231, 1, 0.7);
  color: #bbf7d0;
  white-space: nowrap;
}

.promo-bar-text-strong {
  font-weight: 600;
  font-size: 0.9rem;
  color: #e5e7eb;
}

.promo-bar-text-muted {
  color: #9ca3af;
  font-size: 0.75rem;
  line-height: 1.2;
}

.promo-bar-cta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.promo-bar .promo-code-chip {
  border-radius: 999px;
}

.promo-bar-close {
  background: none;
  border: none;
  color: #6b7280;
  font-size: 1rem;
  cursor: pointer;
}

.promo-bar-close:hover {
  color: #e5e7eb;
}

/* Floating popup */

.floating-promo {
  position: fixed;
  right: 1rem;
  bottom: 4.5rem;
  z-index: 45;
  background: rgba(26, 26, 26, 0.98);
  border-radius: 1rem;
  border: 1px solid rgba(0, 231, 1, 0.5);
  padding: 0.85rem 0.9rem;
  max-width: 260px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.95);
  font-size: 0.8rem;
}

.floating-promo-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.floating-promo-title {
  font-size: 0.82rem;
  font-weight: 600;
}

.floating-promo-body {
  margin-top: 0.4rem;
  color: #d1d5db;
}

.floating-promo-footer {
  margin-top: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.floating-promo-close {
  background: none;
  border: none;
  color: #6b7280;
  cursor: pointer;
  font-size: 0.9rem;
}

.floating-promo-close:hover {
  color: #e5e7eb;
}

/* Simple content pages */

.page-header {
  padding: 2.2rem 0 1rem;
}

.page-title {
  font-size: 1.7rem;
  margin-bottom: 0.6rem;
}

.breadcrumb {
  font-size: 0.78rem;
  color: #6b7280;
}

.page-content {
  padding-bottom: 4rem;
}

.page-content p,
.page-content li {
  font-size: 0.92rem;
}

.page-content h2 {
  font-size: 1.25rem;
  margin-top: 1.6rem;
}

.page-content h3 {
  font-size: 1.05rem;
  margin-top: 1.1rem;
}

.page-content ul {
  padding-left: 1.1rem;
}

.notice-box {
  border-radius: 0.9rem;
  border: 1px solid rgba(85, 85, 85, 0.9);
  background: #2a2a2a;
  padding: 0.8rem 0.9rem;
  font-size: 0.86rem;
  color: #e5e7eb;
}

/* Utility */

.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mb-0 {
  margin-bottom: 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(55, 65, 81, 1);
  font-size: 0.7rem;
  color: #9ca3af;
  white-space: nowrap;
}

/* Responsive */

@media (max-width: 1024px) {
  .hero-grid,
  .two-column,
  .footer-grid,
  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .games-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .header-inner {
    align-items: center;
  }

  .primary-nav {
    position: fixed;
    inset: 56px 0 auto 0;
    background: rgba(26, 26, 26, 0.98);
    padding: 0.9rem 16px 1.1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(55, 55, 55, 1);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }

  .primary-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .header-cta {
    display: none;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .hero {
    padding-top: 1.6rem;
  }

  .hero-title {
    font-size: 1.7rem;
  }

  .promo-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .promo-bar-main {
    width: 100%;
  }

  .promo-bar-cta {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .promo-bar-cta .btn {
    flex: 1;
    min-width: 120px;
  }

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

  .floating-promo {
    right: 0.75rem;
    left: 0.75rem;
    bottom: 4.3rem;
  }
}

@media (max-width: 480px) {
  .hero-card {
    margin-top: 1.2rem;
  }

  .hero-card-promo {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .hero-card-promo span {
    font-size: 0.75rem;
  }

  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Promo reference grid */
.promo-reference-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.promo-table-card,
.registration-screenshot-card {
  background: #2a2a2a;
  border-radius: 1.1rem;
  border: 1px solid rgba(85, 85, 85, 0.7);
  padding: 1.5rem;
}

.promo-table-card h3,
.registration-screenshot-card h3 {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  color: #e5e7eb;
}

.promo-table {
  width: 100%;
  border-collapse: collapse;
}

.promo-table tr {
  border-bottom: 1px solid rgba(55, 55, 55, 1);
}

.promo-table tr:last-child {
  border-bottom: none;
}

.promo-table td {
  padding: 0.75rem 0;
  vertical-align: middle;
}

.promo-table-label {
  font-weight: 600;
  color: #9ca3af;
  font-size: 0.85rem;
  width: 40%;
}

.promo-table-value {
  color: #e5e7eb;
  font-size: 0.9rem;
}

.btn-sm {
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
}

.screenshot-mockup {
  background: #1a1a1a;
  border-radius: 0.75rem;
  border: 1px solid rgba(85, 85, 85, 0.7);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.screenshot-mockup:hover {
  border-color: rgba(0, 231, 1, 0.7);
  transform: translateY(-2px);
}

.mockup-header {
  background: #2a2a2a;
  padding: 0.5rem;
  display: flex;
  gap: 0.35rem;
  border-bottom: 1px solid rgba(85, 85, 85, 0.5);
}

.mockup-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #555;
}

.mockup-body {
  padding: 1.25rem;
}

.mockup-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #e5e7eb;
}

.mockup-field {
  margin-bottom: 0.85rem;
}

.mockup-label {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-bottom: 0.25rem;
}

.mockup-input {
  background: #2a2a2a;
  border: 1px solid rgba(85, 85, 85, 0.7);
  border-radius: 0.4rem;
  padding: 0.5rem 0.7rem;
  font-size: 0.85rem;
  color: #e5e7eb;
}

.mockup-field-highlight .mockup-label {
  color: #00e701;
  font-weight: 600;
}

.mockup-input-highlight {
  border-color: #00e701;
  box-shadow: 0 0 0 2px rgba(0, 231, 1, 0.15);
  font-weight: 600;
}

.mockup-button {
  background: #00e701;
  color: #000;
  text-align: center;
  padding: 0.65rem;
  border-radius: 0.4rem;
  font-weight: 700;
  margin-top: 1rem;
  font-size: 0.9rem;
}

/* Activity widget */
.activity-widget {
  background: #2a2a2a;
  border-radius: 1.1rem;
  border: 1px solid rgba(85, 85, 85, 0.7);
  overflow: hidden;
  margin-top: 1.5rem;
}

.activity-header {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1fr 1fr 1fr 1fr;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: #1a1a1a;
  border-bottom: 1px solid rgba(85, 85, 85, 0.7);
  font-size: 0.75rem;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.activity-list {
  max-height: 320px;
  overflow-y: auto;
}

.activity-item {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1fr 1fr 1fr 1fr;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(55, 55, 55, 0.5);
  font-size: 0.85rem;
  transition: background 0.15s ease;
  animation: fadeIn 0.4s ease;
}

.activity-item:hover {
  background: rgba(0, 231, 1, 0.05);
}

.activity-item:last-child {
  border-bottom: none;
}

.activity-username {
  color: #e5e7eb;
  font-weight: 600;
}

.activity-game {
  color: #9ca3af;
}

.activity-time {
  color: #6b7280;
  font-size: 0.8rem;
}

.activity-wagered {
  color: #e5e7eb;
}

.activity-multiplier {
  color: #00e701;
  font-weight: 600;
}

.activity-payout {
  color: #00e701;
  font-weight: 700;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Codes comparison table */
.codes-table-wrapper {
  margin-top: 1.5rem;
  overflow-x: auto;
}

.codes-table {
  width: 100%;
  border-collapse: collapse;
  background: #2a2a2a;
  border-radius: 1.1rem;
  overflow: hidden;
}

.codes-table thead {
  background: #1a1a1a;
}

.codes-table th {
  padding: 1rem;
  text-align: left;
  font-weight: 700;
  color: #9ca3af;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(85, 85, 85, 0.7);
}

.codes-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(55, 55, 55, 0.5);
  vertical-align: middle;
}

.codes-table tbody tr:last-child td {
  border-bottom: none;
}

.codes-table tbody tr {
  transition: background 0.15s ease;
}

.codes-table tbody tr:hover {
  background: rgba(0, 231, 1, 0.05);
}

.codes-table-term {
  color: #e5e7eb;
  font-size: 0.95rem;
  width: 35%;
}

.codes-table-term strong {
  white-space: nowrap;
}

.codes-table-code {
  width: 30%;
  text-align: center;
}

.codes-table-bonus {
  color: #00e701;
  font-weight: 600;
  font-size: 0.9rem;
  width: 35%;
}

@media (max-width: 768px) {
  .promo-reference-grid {
    grid-template-columns: 1fr;
  }

  .codes-table {
    font-size: 0.85rem;
  }

  .codes-table th,
  .codes-table td {
    padding: 0.75rem 0.5rem;
  }

  .codes-table-term {
    font-size: 0.85rem;
  }

  .codes-table-bonus {
    font-size: 0.8rem;
  }
}

  .activity-header,
  .activity-item {
    grid-template-columns: 1.2fr 1.2fr 0.8fr 0.8fr 0.8fr 1fr;
    font-size: 0.7rem;
    gap: 0.4rem;
    padding: 0.6rem 0.75rem;
  }

  .activity-header {
    font-size: 0.65rem;
  }

  .hero-cta-row {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-cta-row .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .activity-header span:nth-child(4),
  .activity-item .activity-wagered {
    display: none;
  }

  .activity-header,
  .activity-item {
    grid-template-columns: 1.5fr 1.5fr 1fr 1fr 1.2fr;
  }
}

