/* Theme adaptation for dark casino style */
.bg-light {
  background-color: #1a1a2e !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card.bg-light .card-body,
.card.bg-light .card-title,
.card.bg-light h3,
.card.bg-light h4,
.card.bg-light p,
.card.bg-light ul,
.card.bg-light li {
  color: #ffffff !important;
}

.card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card.bg-dark {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(16, 16, 36, 0.95)) !important;
  color: #ffffff !important;
}

.card.bg-dark .card-body,
.card.bg-dark .card-title,
.card.bg-dark .card-text,
.card.bg-dark h3,
.card.bg-dark h4,
.card.bg-dark p {
  color: #ffffff !important;
}

.timeline-item {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb, 212, 175, 55), 0.2);
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 12px;
  width: 2px;
  height: calc(100% + 2rem);
  background: linear-gradient(180deg, var(--primary), transparent);
}

.timeline-item:last-child::after {
  display: none;
}

.stats-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.value-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-2);
  border-radius: 50%;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: white;
}

@media (max-width: 768px) {
  .stats-number {
    font-size: 2rem;
  }

  * {
    max-width: 100%;
    box-sizing: border-box;
  }

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

@media (max-width: 430px) {
  .container {
    padding: 0 15px;
  }

  .stats-number {
    font-size: 1.75rem;
  }
}

@media (max-width: 320px) {
  .container {
    padding: 0 12px;
  }
}