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

body {
  font-family: 'Inter', Arial, sans-serif;
  line-height: 1.6;
  color: #fff;
  background-color: #1a1a1a;
}

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

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

/* Compliance Top Bar */
.legal-topbar {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 14px;
}

/* Header */
.header {
  background-color: #f9f9f9;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo a {
  font-size: 24px;
  font-weight: 800;
  color: #8c2b2b; /* Dark red from reference */
  letter-spacing: 1px;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav a {
  font-weight: 500;
  transition: color 0.2s;
  color: #333;
}

.nav a:hover {
  color: #8c2b2b;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 600;
}

/* Banner Section */
.banner-section {
  background: linear-origin: padding-box;
  background-color: #0b0c10;
  background-image: radial-gradient(circle at center, #1a1525 0%, #0b0c10 100%);
  padding: 100px 20px;
  text-align: center;
  color: #fff;
}

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

.banner-badge {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.banner-section h2 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f0c396 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.banner-section p {
  font-size: 18px;
  color: #a0a0a0;
  max-width: 600px;
  margin: 0 auto;
}

/* Disclaimer Section */
.disclaimer-section {
  background-color: #2b3342;
  padding: 60px 0;
}

.disclaimer-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: #d1d5db;
  font-size: 15px;
}

.disclaimer-text p {
  margin-bottom: 20px;
}

/* Features Grid */
.features-grid-section {
  background-color: #1a1a1a;
  padding: 80px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 40px;
}

.feature-item {
  color: #fff;
}

.feature-item .blue-title {
  color: #8bb1e5;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.feature-item .divider {
  height: 1px;
  background-color: rgba(255,255,255,0.2);
  margin-bottom: 15px;
}

.feature-item p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.7;
}

/* Icon Features */
.icon-features-section {
  background-color: #1a1a1a;
  padding: 40px 0 80px;
}

.icon-grid {
  display: flex;
  justify-content: space-around;
  text-align: center;
  gap: 30px;
}

.icon-block {
  flex: 1;
  max-width: 300px;
}

.icon-wrap {
  margin-bottom: 20px;
  color: #fff;
}

.icon-block h4 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #fff;
}

.red-divider {
  width: 40px;
  height: 2px;
  background-color: #e55a5a;
  margin: 0 auto 20px;
}

.icon-block p {
  color: #ccc;
  font-size: 14px;
}

/* Split Section */
.split-section {
  background-color: #1a1a1a;
  padding: 40px 0 80px;
}

.split-container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.split-content {
  flex: 1;
}

.split-content h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #fff;
  font-weight: 600;
}

.split-item {
  margin-bottom: 25px;
}

.split-item h4 {
  color: #fff;
  margin-bottom: 8px;
  font-weight: 600;
}

.split-item p {
  font-size: 13px;
  color: #ccc;
}

.split-image {
  flex: 1;
}

.split-image img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: block;
}

/* Progression Box */
.progression-section {
  background-color: #1a1a1a;
  padding: 0 0 80px;
}

.grey-box {
  background: #333333;
  padding: 50px;
  border-radius: 4px;
}

.grey-box h2 {
  margin-bottom: 30px;
  color: #fff;
  font-size: 26px;
  font-weight: 600;
}

.progression-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.progression-grid h4 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 600;
}

.progression-grid p {
  font-size: 13px;
  color: #ccc;
}

/* Games Section */
.games-section {
  background-color: #2b3342;
  padding: 80px 0;
}

.game-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.game-card {
  width: 22%;
  min-width: 200px;
  cursor: pointer;
  transition: transform 0.2s;
}

.game-card:hover {
  transform: scale(1.02);
}

.game-thumb {
  width: 100%;
  border-radius: 8px;
  display: block;
}

.game-info {
  display: none; /* Hide title as in reference, mostly image driven */
}

/* Testimonials */
.testimonials-section {
  background-color: #2b3342;
  padding: 0 0 80px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.testimonial-card {
  background: #fff;
  color: #333;
  padding: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.quote-icon {
  font-size: 40px;
  color: #e5a3a3; /* Pink quote mark */
  line-height: 1;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-size: 13px;
  flex-grow: 1;
  margin-bottom: 25px;
  color: #555;
}

.author {
  display: flex;
  flex-direction: column;
}

.author strong {
  color: #000;
  font-size: 15px;
}

.author span {
  font-size: 12px;
  font-style: italic;
  color: #666;
}

/* Team */
.team-section {
  background-color: #2b3342;
  padding: 0 0 80px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.team-card {
  background: #fff;
  text-align: center;
}

.team-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.team-info {
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
}

.team-info strong {
  color: #000;
  font-size: 15px;
  margin-bottom: 5px;
}

.team-info span {
  font-size: 12px;
  color: #666;
}

/* Image Grid */
.gallery-section {
  background-color: #1a1a1a;
  padding: 80px 0;
}

.gallery-container {
  display: flex;
  gap: 0; /* Flush grid */
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
}

.image-gallery {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.image-gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.gallery-text {
  flex: 1;
  background: #fff;
  color: #333;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gallery-text h2 {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.gallery-text p {
  font-size: 14px;
  color: #555;
}

/* Customers / Contact Form */
.customers-section {
  background-color: #1a1a1a;
  padding: 40px 0;
  text-align: center;
}

.customers-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  color: #888;
  font-size: 14px;
  font-weight: bold;
}

.contact-section {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  text-align: center;
}

.contact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1;
}

.contact-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.contact-form-card {
  background: #f5f5f5;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  text-align: center;
}

.contact-form-card h3 {
  color: #333;
  margin-bottom: 25px;
  font-size: 20px;
  font-weight: 600;
}

.contact-form-card input, 
.contact-form-card textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
}

.btn-primary {
  background-color: #6997d3;
  color: #fff;
  border: none;
  padding: 12px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
  text-transform: uppercase;
}

.btn-primary:hover {
  background-color: #4a7bb9;
}

/* Footer */
.footer {
  background-color: #111;
  color: #fff;
  padding: 40px 0;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

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

.footer-copy {
  color: #888;
  font-size: 14px;
}

/* Age Gate Dark Modal */
.age-gate-overlay {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(5px);
}

.age-modal-dark {
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 50px 40px;
  width: 90%;
  max-width: 450px;
  text-align: center;
  color: #fff;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.age-modal-dark h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 30px;
  color: #fff;
  letter-spacing: 1px;
}

.age-modal-dark p {
  font-size: 16px;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 40px;
}

.age-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.btn-age-yes {
  background-color: #eeb95c;
  color: #000;
  border: none;
  border-radius: 12px;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  transition: opacity 0.2s;
}

.btn-age-yes:hover {
  opacity: 0.9;
}

.btn-age-no {
  background: none;
  border: none;
  color: #888888;
  font-size: 15px;
  cursor: pointer;
  padding: 10px;
  transition: color 0.2s;
}

.btn-age-no:hover {
  color: #ffffff;
}

/* Overlays & Modals */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal {
  background: #fff;
  border-radius: 8px;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  position: relative;
  text-align: center;
  color: #333;
}

.age-modal h2 {
  margin-bottom: 15px;
  color: #d9534f;
}

.age-modal p {
  margin-bottom: 25px;
}

.modal-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn-danger {
  background-color: #d9534f;
  color: #fff;
  border: none;
  padding: 12px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
}

/* Game Iframe Modal */
.game-modal-container {
  max-width: 900px;
  width: 100%;
  height: 80vh;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #222;
  border-radius: 6px;
  border: none;
}

.game-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #2b2b2b;
  color: #fff;
}

.game-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.game-close-btn {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
  line-height: 1;
}

.game-iframe-wrapper {
  flex: 1;
  background: #000;
}

@media (max-width: 768px) {
  .features-grid, .split-container, .progression-grid, .testimonials-grid, .team-grid, .gallery-container {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
  .icon-grid {
    flex-direction: column;
    align-items: center;
  }
  .game-card {
    width: 45%;
  }
}