/* style/games-zowin88-game-lobby-entry.css */

:root {
  --primary-color: #1A2B4C;
  --accent-color: #FFD700;
  --text-dark: #1A2B4C;
  --text-light: #FFFFFF;
  --bg-light: #F8F9FA;
  --bg-dark: #0F1D33;
  --border-color: #3A4E7A;
}

.page-games-zowin88-game-lobby-entry {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

.page-games-zowin88-game-lobby-entry .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-games-zowin88-game-lobby-entry .hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0F1D33 100%);
  color: var(--text-light);
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-games-zowin88-game-lobby-entry .hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 215, 0, 0.2) 0%, transparent 50%);
  z-index: 0;
}

.page-games-zowin88-game-lobby-entry .hero-section .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.page-games-zowin88-game-lobby-entry .hero-content {
  flex: 1;
  text-align: left;
}

.page-games-zowin88-game-lobby-entry .hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--accent-color);
  line-height: 1.2;
}

.page-games-zowin88-game-lobby-entry .hero-description {
  font-size: 1.15em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-games-zowin88-game-lobby-entry .hero-actions .btn {
  margin-right: 15px;
  margin-bottom: 10px;
}

.page-games-zowin88-game-lobby-entry .hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-games-zowin88-game-lobby-entry .hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-games-zowin88-game-lobby-entry section {
  padding: 60px 0;
}

.page-games-zowin88-game-lobby-entry .section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.page-games-zowin88-game-lobby-entry .section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--accent-color);
  margin: 10px auto 0 auto;
  border-radius: 2px;
}

.page-games-zowin88-game-lobby-entry .section-description {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* Buttons */
.page-games-zowin88-game-lobby-entry .btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1em;
}

.page-games-zowin88-game-lobby-entry .btn-primary {
  background-color: var(--accent-color);
  color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-games-zowin88-game-lobby-entry .btn-primary:hover {
  background-color: #FFC107;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-games-zowin88-game-lobby-entry .btn-secondary {
  background-color: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.page-games-zowin88-game-lobby-entry .btn-secondary:hover {
  background-color: var(--accent-color);
  color: var(--primary-color);
  transform: translateY(-3px);
}

.page-games-zowin88-game-lobby-entry .btn-large {
  padding: 15px 30px;
  font-size: 1.1em;
}

.page-games-zowin88-game-lobby-entry .btn-play {
  background-color: var(--primary-color);
  color: var(--accent-color);
  padding: 8px 15px;
  font-size: 0.9em;
  border-radius: 5px;
}

.page-games-zowin88-game-lobby-entry .btn-play:hover {
  background-color: var(--accent-color);
  color: var(--primary-color);
}

/* About Zowin88 Section */
.page-games-zowin88-game-lobby-entry .about-zowin88-section {
  background-color: var(--bg-light);
  padding: 80px 0;
}

.page-games-zowin88-game-lobby-entry .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-games-zowin88-game-lobby-entry .feature-item {
  background-color: var(--text-light);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-games-zowin88-game-lobby-entry .feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-games-zowin88-game-lobby-entry .feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}

.page-games-zowin88-game-lobby-entry .feature-title {
  font-size: 1.6em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-games-zowin88-game-lobby-entry .feature-text {
  color: #444;
  font-size: 1em;
}

/* Game Showcase Section */
.page-games-zowin88-game-lobby-entry .game-showcase-section {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 80px 0;
}

.page-games-zowin88-game-lobby-entry .game-showcase-section .section-title,
.page-games-zowin88-game-lobby-entry .game-showcase-section .section-description {
  color: var(--text-light);
}

.page-games-zowin88-game-lobby-entry .game-showcase-section .section-title::after {
  background-color: var(--accent-color);
}

.page-games-zowin88-game-lobby-entry .game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-games-zowin88-game-lobby-entry .game-item {
  background-color: var(--primary-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-games-zowin88-game-lobby-entry .game-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.page-games-zowin88-game-lobby-entry .game-thumbnail {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid var(--accent-color);
}

.page-games-zowin88-game-lobby-entry .game-item h3 {
  font-size: 1.5em;
  color: var(--accent-color);
  margin: 20px 15px 10px 15px;
}

.page-games-zowin88-game-lobby-entry .game-item p {
  color: #CCC;
  font-size: 0.95em;
  padding: 0 15px 20px 15px;
  flex-grow: 1;
}

.page-games-zowin88-game-lobby-entry .game-item .btn-play {
  margin-bottom: 20px;
  align-self: center;
}

/* How-to-Access Section */
.page-games-zowin88-game-lobby-entry .how-to-access-section {
  background-color: var(--bg-light);
  padding: 80px 0;
}

.page-games-zowin88-game-lobby-entry .steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.page-games-zowin88-game-lobby-entry .step-item {
  background-color: var(--text-light);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-games-zowin88-game-lobby-entry .step-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 25px;
  border-radius: 50%;
  border: 4px solid var(--accent-color);
  padding: 10px;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.page-games-zowin88-game-lobby-entry .step-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-games-zowin88-game-lobby-entry .step-text {
  color: #444;
  font-size: 1em;
}

/* Responsible Gambling Section */
.page-games-zowin88-game-lobby-entry .responsible-gambling-section {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 80px 0;
  text-align: center;
}

.page-games-zowin88-game-lobby-entry .responsible-gambling-section .section-title,
.page-games-zowin88-game-lobby-entry .responsible-gambling-section .section-description {
  color: var(--text-light);
}

.page-games-zowin88-game-lobby-entry .responsible-gambling-section .section-title::after {
  background-color: var(--accent-color);
}

.page-games-zowin88-game-lobby-entry .responsible-gambling-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-games-zowin88-game-lobby-entry .responsible-gambling-note {
  font-style: italic;
  opacity: 0.8;
  max-width: 800px;
  margin: 20px auto 0 auto;
}

/* CTA Section */
.page-games-zowin88-game-lobby-entry .cta-section {
  background: linear-gradient(45deg, var(--accent-color) 0%, #FFC107 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--primary-color);
}

.page-games-zowin88-game-lobby-entry .cta-section .section-title {
  color: var(--primary-color);
}

.page-games-zowin88-game-lobby-entry .cta-section .section-description {
  color: #333;
}

.page-games-zowin88-game-lobby-entry .cta-section .section-title::after {
  background-color: var(--primary-color);
}

.page-games-zowin88-game-lobby-entry .cta-actions {
  margin-top: 40px;
}

.page-games-zowin88-game-lobby-entry .cta-actions .btn {
  margin: 0 15px;
}

.page-games-zowin88-game-lobby-entry .cta-actions .btn-primary {
  background-color: var(--primary-color);
  color: var(--accent-color);
  box-shadow: 0 4px 15px rgba(26, 43, 76, 0.4);
}

.page-games-zowin88-game-lobby-entry .cta-actions .btn-primary:hover {
  background-color: #0F1D33;
  color: var(--accent-color);
}

.page-games-zowin88-game-lobby-entry .cta-actions .btn-secondary {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.page-games-zowin88-game-lobby-entry .cta-actions .btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-games-zowin88-game-lobby-entry .hero-section .container {
    flex-direction: column;
    text-align: center;
  }

  .page-games-zowin88-game-lobby-entry .hero-content {
    text-align: center;
  }

  .page-games-zowin88-game-lobby-entry .hero-title {
    font-size: 2.5em;
  }

  .page-games-zowin88-game-lobby-entry .hero-image-wrapper {
    margin-top: 40px;
  }

  .page-games-zowin88-game-lobby-entry .section-title {
    font-size: 2em;
  }

  .page-games-zowin88-game-lobby-entry .features-grid,
  .page-games-zowin88-game-lobby-entry .game-grid,
  .page-games-zowin88-game-lobby-entry .steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-games-zowin88-game-lobby-entry .hero-section {
    padding: 60px 0;
  }

  .page-games-zowin88-game-lobby-entry .hero-title {
    font-size: 2em;
  }

  .page-games-zowin88-game-lobby-entry .hero-description {
    font-size: 1em;
  }

  .page-games-zowin88-game-lobby-entry .btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-games-zowin88-game-lobby-entry .btn-large {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-games-zowin88-game-lobby-entry section {
    padding: 40px 0;
  }

  .page-games-zowin88-game-lobby-entry .section-title {
    font-size: 1.8em;
  }

  .page-games-zowin88-game-lobby-entry .section-description {
    font-size: 0.95em;
  }

  .page-games-zowin88-game-lobby-entry .cta-actions .btn {
    margin: 10px 0;
    display: block;
  }
}

@media (max-width: 480px) {
  .page-games-zowin88-game-lobby-entry .hero-title {
    font-size: 1.8em;
  }

  .page-games-zowin88-game-lobby-entry .hero-actions .btn {
    display: block;
    margin: 10px auto;
    width: 80%;
  }

  .page-games-zowin88-game-lobby-entry .feature-item, .page-games-zowin88-game-lobby-entry .game-item, .page-games-zowin88-game-lobby-entry .step-item {
    padding: 20px;
  }

  .page-games-zowin88-game-lobby-entry .feature-title, .page-games-zowin88-game-lobby-entry .game-title, .page-games-zowin88-game-lobby-entry .step-title {
    font-size: 1.4em;
  }
}