/* style/88neo-casino.css */
:root {
  --primary-color: #0A2239;
  --secondary-color: #FFD700;
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #0A2239;
  --bg-light: #f8f8f8;
  --border-color: #e0e0e0;
}

.page-88neo-casino {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light);
  background-color: var(--bg-dark);
}

.page-88neo-casino__hero-section {
  padding-top: 120px; /* Adjust based on actual fixed header height */
  padding-bottom: 60px;
  background-color: var(--primary-color);
  color: var(--text-light);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-88neo-casino__hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.page-88neo-casino__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-88neo-casino__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  line-height: 1.8;
  color: #f0f0f0;
}

.page-88neo-casino__hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-88neo-casino__btn-primary,
.page-88neo-casino__btn-secondary {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
}

.page-88neo-casino__btn-primary {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.page-88neo-casino__btn-primary:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-88neo-casino__btn-secondary {
  background: var(--primary-color);
  color: var(--text-light);
  border: 2px solid var(--secondary-color);
}

.page-88neo-casino__btn-secondary:hover {
  background: #1a3a5b;
  border-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-88neo-casino__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-88neo-casino__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: brightness(0.7);
}