.page-game-guides-poker-beginners {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Màu chữ sáng trên nền tối */
  background-color: #000000; /* Nền đen chủ đạo */
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

.page-game-guides-poker-beginners a {
  color: #FFD700; /* Màu vàng kim cho liên kết */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-game-guides-poker-beginners a:hover {
  color: #DC143C; /* Màu đỏ thẫm khi hover */
  text-decoration: underline;
}

.page-game-guides-poker-beginners__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  border: none;
}

.page-game-guides-poker-beginners__btn--primary {
  background-color: #FFD700; /* Nút chính màu vàng kim */
  color: #000000;
}

.page-game-guides-poker-beginners__btn--primary:hover {
  background-color: #DC143C; /* Hover đỏ thẫm */
  color: #FFFFFF;
  transform: translateY(-2px);
}

.page-game-guides-poker-beginners__btn--secondary {
  background-color: #333333; /* Nút phụ màu xám đậm */
  color: #FFD700;
  border: 1px solid #FFD700;
}

.page-game-guides-poker-beginners__btn--secondary:hover {
  background-color: #FFD700;
  color: #000000;
  transform: translateY(-2px);
}

.page-game-guides-poker-beginners__btn--lg {
  padding: 15px 30px;
  font-size: 1.1em;
  background-color: #DC143C; /* Nút lớn màu đỏ thẫm */
  color: #FFFFFF;
}

.page-game-guides-poker-beginners__btn--lg:hover {
  background-color: #FFD700;
  color: #000000;
}

.page-game-guides-poker-beginners__link-inline {
  font-weight: bold;
}

.page-game-guides-poker-beginners h1, 
.page-game-guides-poker-beginners h2, 
.page-game-guides-poker-beginners h3, 
.page-game-guides-poker-beginners h4 {
  color: #FFD700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-game-guides-poker-beginners h1 {
  font-size: 2.8em;
  text-align: center;
  color: #FFFFFF;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.page-game-guides-poker-beginners h2 {
  font-size: 2.2em;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
  margin-top: 40px;
  margin-bottom: 25px;
}

.page-game-guides-poker-beginners h3 {
  font-size: 1.6em;
  color: #FFD700;
  margin-top: 25px;
}

.page-game-guides-poker-beginners h4 {
  font-size: 1.2em;
  color: #FFD700;
}

.page-game-guides-poker-beginners p {
  margin-bottom: 15px;
}

.page-game-guides-poker-beginners ul, 
.page-game-guides-poker-beginners ol {
  margin-bottom: 15px;
  padding-left: 25px;
}

.page-game-guides-poker-beginners li {
  margin-bottom: 8px;
}

/* Hero Section */
.page-game-guides-poker-beginners__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  position: relative;
  overflow: hidden;
}

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

.page-game-guides-poker-beginners__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.page-game-guides-poker-beginners__hero-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #CCCCCC;
}

.page-game-guides-poker-beginners__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-game-guides-poker-beginners__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

/* General Section Styling */
.page-game-guides-poker-beginners__section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #1a1a1a;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
}

.page-game-guides-poker-beginners__section:nth-child(even) {
  background-color: #0a0a0a;
}

.page-game-guides-poker-beginners__content-block {
  margin-bottom: 25px;
  padding: 20px;
  background-color: #2a2a2a;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
}

.page-game-guides-poker-beginners__content-block h3 {
  color: #FFD700;
  margin-top: 0;
}

.page-game-guides-poker-beginners__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.page-game-guides-poker-beginners__list-columns {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
  list-style-type: disc;
}

@media (max-width: 768px) {
  .page-game-guides-poker-beginners__list-columns {
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
  }
}

/* Tips Section */
.page-game-guides-poker-beginners__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-game-guides-poker-beginners__tip-item {
  background-color: #2a2a2a;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border-top: 4px solid #FFD700;
}

.page-game-guides-poker-beginners__tip-icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 15px;
}

.page-game-guides-poker-beginners__tip-item h3 {
  color: #FFD700;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-game-guides-poker-beginners__tip-item p {
  color: #CCCCCC;
}

/* Why NHATVIP Section */
.page-game-guides-poker-beginners__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.page-game-guides-poker-beginners__feature-item {
  background-color: #2a2a2a;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-left: 4px solid #DC143C;
}

.page-game-guides-poker-beginners__feature-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 15px;
}

.page-game-guides-poker-beginners__feature-item h3 {
  color: #FFD700;
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-game-guides-poker-beginners__feature-item p {
  color: #CCCCCC;
}

.page-game-guides-poker-beginners__cta-banner {
  background-color: #333333;
  border-radius: 8px;
  margin-top: 50px;
  display: flex;
  align-items: center;
  padding: 30px;
  gap: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid #FFD700;
}

.page-game-guides-poker-beginners__cta-image {
  width: 150px;
  height: 150px;
  object-fit: contain;
  flex-shrink: 0;
}

.page-game-guides-poker-beginners__cta-text h3 {
  color: #FFD700;
  font-size: 1.8em;
  margin-bottom: 10px;
}

.page-game-guides-poker-beginners__cta-text p {
  color: #FFFFFF;
  font-size: 1.1em;
  margin-bottom: 20px;
}

.page-game-guides-poker-beginners__conclusion {
  text-align: center;
  padding-bottom: 60px;
}

.page-game-guides-poker-beginners__conclusion p {
  font-size: 1.1em;
  color: #CCCCCC;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-game-guides-poker-beginners__hero-content h1 {
    font-size: 2.5em;
  }
  .page-game-guides-poker-beginners h2 {
    font-size: 2em;
  }
  .page-game-guides-poker-beginners__list-columns {
    columns: 1;
  }
}

@media (max-width: 768px) {
  .page-game-guides-poker-beginners__hero {
    padding: 60px 15px;
  }
  .page-game-guides-poker-beginners__hero-content h1 {
    font-size: 2em;
  }
  .page-game-guides-poker-beginners__hero-content p {
    font-size: 1em;
  }
  .page-game-guides-poker-beginners__section {
    padding: 30px 15px;
  }
  .page-game-guides-poker-beginners h2 {
    font-size: 1.8em;
  }
  .page-game-guides-poker-beginners h3 {
    font-size: 1.4em;
  }
  .page-game-guides-poker-beginners__tips-grid, 
  .page-game-guides-poker-beginners__features-grid {
    grid-template-columns: 1fr;
  }
  .page-game-guides-poker-beginners__cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  .page-game-guides-poker-beginners__cta-image {
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .page-game-guides-poker-beginners__hero-content h1 {
    font-size: 1.8em;
  }
  .page-game-guides-poker-beginners h2 {
    font-size: 1.6em;
  }
  .page-game-guides-poker-beginners__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-game-guides-poker-beginners__btn--lg {
    padding: 12px 25px;
    font-size: 1em;
  }
}