/* style/game-lobby-poker.css */
.page-game-lobby-poker {
  font-family: 'Arial', sans-serif;
  color: #333333;
  background-color: #FFFFFF;
  line-height: 1.6;
}

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

.page-game-lobby-poker-section {
  padding: 60px 0;
  text-align: center;
}

.page-game-lobby-poker-section:nth-of-type(even) {
  background-color: #f9f9f9;
}

.page-game-lobby-poker-section-title {
  font-size: 2.8em;
  color: #000080; /* Dark Blue */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-game-lobby-poker-section-description {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-lobby-poker-subtitle {
  font-size: 1.8em;
  color: #000080; /* Dark Blue */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-game-lobby-poker-text-content p strong {
  color: #000080; /* Dark Blue */
}

/* Hero Section */
.page-game-lobby-poker-hero {
  background: linear-gradient(135deg, #FFD700, #000080); /* Gold to Dark Blue */
  color: #FFFFFF;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.page-game-lobby-poker-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.page-game-lobby-poker-hero > .page-game-lobby-poker-container {
  position: relative;
  z-index: 2;
}

.page-game-lobby-poker-hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-lobby-poker-hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-game-lobby-poker-hero-actions .page-game-lobby-poker-btn {
  margin: 0 10px;
}

/* Buttons */
.page-game-lobby-poker-btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-game-lobby-poker-btn-primary {
  background-color: #FFD700; /* Gold */
  color: #000080; /* Dark Blue */
}

.page-game-lobby-poker-btn-primary:hover {
  background-color: #e6c200;
  color: #00005a;
  transform: translateY(-3px);
}

.page-game-lobby-poker-btn-secondary {
  background-color: #000080; /* Dark Blue */
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-game-lobby-poker-btn-secondary:hover {
  background-color: #00005a;
  color: #e6c200;
  transform: translateY(-3px);
}

.page-game-lobby-poker-btn-download {
  background-color: #000080; /* Dark Blue */
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
  margin: 10px;
}

.page-game-lobby-poker-btn-download:hover {
  background-color: #00005a;
  color: #e6c200;
}

.page-game-lobby-poker-btn-small {
  padding: 10px 20px;
  font-size: 0.95em;
  border-radius: 5px;
  background-color: #FFD700; /* Gold */
  color: #000080; /* Dark Blue */
  margin-top: 15px;
}

.page-game-lobby-poker-btn-small:hover {
  background-color: #e6c200;
  color: #00005a;
}

.page-game-lobby-poker-btn-promo {
  padding: 12px 25px;
  font-size: 1em;
  border-radius: 5px;
  background-color: #FFD700; /* Gold */
  color: #000080; /* Dark Blue */
  margin-top: 20px;
}

.page-game-lobby-poker-btn-promo:hover {
  background-color: #e6c200;
  color: #00005a;
}

/* Content Wrappers */
.page-game-lobby-poker-content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
  margin-top: 40px;
}

.page-game-lobby-poker-content-wrapper.page-game-lobby-poker-reverse {
  flex-direction: row-reverse;
}

.page-game-lobby-poker-text-content {
  flex: 1;
}

.page-game-lobby-poker-text-content p {
  margin-bottom: 15px;
  color: #333333;
  font-size: 1.05em;
}

.page-game-lobby-poker-text-content a {
  color: #000080; /* Dark Blue */
  text-decoration: underline;
}

.page-game-lobby-poker-text-content a:hover {
  color: #FFD700; /* Gold */
}

.page-game-lobby-poker-image-box {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-game-lobby-poker-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Grid Layouts */
.page-game-lobby-poker-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-lobby-poker-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* Card Styles */
.page-game-lobby-poker-card,
.page-game-lobby-poker-promo-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.page-game-lobby-poker-card:hover,
.page-game-lobby-poker-promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-game-lobby-poker-card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-game-lobby-poker-card-title {
  font-size: 1.5em;
  color: #000080; /* Dark Blue */
  margin-bottom: 10px;
  font-weight: 700;
}

.page-game-lobby-poker-card-text {
  font-size: 1em;
  color: #555555;
}

/* Game List Specific */
.page-game-lobby-poker-game-category {
  margin-top: 60px;
}

.page-game-lobby-poker-category-title {
  font-size: 2em;
  color: #000080; /* Dark Blue */
  margin-bottom: 30px;
  font-weight: bold;
}

.page-game-lobby-poker-game-item {
  display: flex;
  align-items: center;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: left;
}

.page-game-lobby-poker-game-image {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  object-fit: cover;
  margin-right: 25px;
  flex-shrink: 0;
}

.page-game-lobby-poker-game-info {
  flex-grow: 1;
}

.page-game-lobby-poker-game-title {
  font-size: 1.4em;
  color: #000080; /* Dark Blue */
  margin-bottom: 8px;
  font-weight: 600;
}

.page-game-lobby-poker-game-description {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 10px;
}

.page-game-lobby-poker-game-strategy {
  margin-top: 60px;
  text-align: left;
}

.page-game-lobby-poker-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-top: 20px;
  color: #333333;
}

.page-game-lobby-poker-list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-game-lobby-poker-list li strong {
  color: #000080; /* Dark Blue */
}