/* style/game-lobby-phom-zone.css */

/* Base Styles */
.page-game-lobby-phom-zone {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
  background-color: #FFFFFF; /* Default background for main content, assuming body is light */
}

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

.page-game-lobby-phom-zone__section-title {
  font-size: 2.5em;
  color: #26A9E0; /* Brand color for titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-game-lobby-phom-zone__sub-title {
  font-size: 1.8em;
  color: #26A9E0; /* Brand color for sub-titles */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-game-lobby-phom-zone__section-intro {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-lobby-phom-zone__btn-primary,
.page-game-lobby-phom-zone__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-align: center;
  max-width: 100%; /* Responsive button */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-game-lobby-phom-zone__btn-primary {
  background-color: #26A9E0; /* Brand primary color */
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-game-lobby-phom-zone__btn-primary:hover {
  background-color: #1a7fb8; /* Darker shade for hover */
  border-color: #1a7fb8;
}

.page-game-lobby-phom-zone__btn-secondary {
  background-color: #FFFFFF;
  color: #26A9E0; /* Brand primary color */
  border: 2px solid #26A9E0;
}

.page-game-lobby-phom-zone__btn-secondary:hover {
  background-color: #26A9E0;
  color: #FFFFFF;
}

/* Section Backgrounds */
.page-game-lobby-phom-zone__light-bg {
  background-color: #FFFFFF;
  color: #333333;
  padding: 80px 0;
}

.page-game-lobby-phom-zone__dark-bg {
  background-color: #26A9E0; /* Brand primary color */
  color: #FFFFFF;
  padding: 80px 0;
}

.page-game-lobby-phom-zone__dark-bg .page-game-lobby-phom-zone__section-title,
.page-game-lobby-phom-zone__dark-bg .page-game-lobby-phom-zone__sub-title {
  color: #FFFFFF;
}

/* Images and Videos Responsive */
.page-game-lobby-phom-zone img {
  max-width: 100%;
  height: auto;
  display: block;
  filter: none !important; /* Ensure no filter on images */
}

.page-game-lobby-phom-zone video {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

/* Content area image size lower bound */
.page-game-lobby-phom-zone *:not(.shared-header):not(.shared-footer) img {
    min-width: 200px;
    min-height: 200px;
    object-fit: cover; /* Ensure images fill their space without distortion */
}

/* Hero Section */
.page-game-lobby-phom-zone__hero-section {
  position: relative;
  background-color: #26A9E0; /* Hero background using brand color */
  color: #FFFFFF;
  padding: 120px 0 80px; /* Base padding, adjust for header offset */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  min-height: 600px;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

.page-game-lobby-phom-zone__hero-content {
  max-width: 800px;
  z-index: 1;
}

.page-game-lobby-phom-zone__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-game-lobby-phom-zone__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-lobby-phom-zone__hero-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-game-lobby-phom-zone__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-game-lobby-phom-zone__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2; /* Subtle background image */
}

/* About Phỏm Section */
.page-game-lobby-phom-zone__about-phom-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

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

.page-game-lobby-phom-zone__feature-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  color: #333333; /* Ensure text color contrast */
}

.page-game-lobby-phom-zone__feature-card:hover {
  transform: translateY(-5px);
}

.page-game-lobby-phom-zone__feature-icon {
  width: 100%; /* Ensure large image, not icon */
  height: auto;
  max-height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-game-lobby-phom-zone__feature-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-game-lobby-phom-zone__feature-description {
  font-size: 1em;
  color: #555555;
}

/* Rules Section */
.page-game-lobby-phom-zone__rules-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-game-lobby-phom-zone__rules-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.page-game-lobby-phom-zone__rules-text {
  flex: 2;
}

.page-game-lobby-phom-zone__rules-text p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #FFFFFF; /* Text color for dark background */
}

.page-game-lobby-phom-zone__rules-text ul {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-game-lobby-phom-zone__rules-text li {
  margin-bottom: 8px;
  font-size: 1.05em;
  color: #FFFFFF; /* Text color for dark background */
}

.page-game-lobby-phom-zone__rules-text strong {
  color: #FFFFFF;
}

.page-game-lobby-phom-zone__rules-image-wrapper {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-game-lobby-phom-zone__rules-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-game-lobby-phom-zone__section-conclusion {
  margin-top: 30px;
  font-style: italic;
  font-size: 1.1em;
  text-align: center;
  color: #FFFFFF;
}

/* Strategy Section */
.page-game-lobby-phom-zone__strategy-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

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

.page-game-lobby-phom-zone__strategy-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  color: #333333;
}

.page-game-lobby-phom-zone__strategy-card:hover {
  transform: translateY(-5px);
}

.page-game-lobby-phom-zone__card-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-game-lobby-phom-zone__card-description {
  font-size: 1em;
  color: #555555;
}

.page-game-lobby-phom-zone__strategy-image-wrapper {
  margin-top: 50px;
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-lobby-phom-zone__strategy-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}