/* style/game-bai-doi-thuong.css */
:root {
  --primary-color: #007bff;
  --secondary-color: #ffc107;
  --dark-bg-color: #050505;
  --light-text-color: #ffffff;
  --dark-text-color: #333333;
  --card-bg-color: #ffffff;
  --border-color: #e0e0e0;
  --segment-separator-color: #e4e4e4;
}

.page-game-bai-doi-thuong {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--light-text-color); /* Default text color for dark body background */
  background-color: var(--dark-bg-color);
}

/* HERO Section */
.page-game-bai-doi-thuong__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 180px; /* Desktop: Adjust based on fixed header height */
  background-color: #1a1a1a; /* Slightly lighter dark background for contrast */
  color: var(--light-text-color);
}

.page-game-bai-doi-thuong__hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-game-bai-doi-thuong__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-game-bai-doi-thuong__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-game-bai-doi-thuong__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-game-bai-doi-thuong__hero-content h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--light-text-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-bai-doi-thuong__hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-game-bai-doi-thuong__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, var(--primary-color), #0056b3);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-game-bai-doi-thuong__cta-button:hover {
  background: linear-gradient(135deg, #0056b3, var(--primary-color));
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Game Leaderboard Section */
.page-game-bai-doi-thuong__game-leaderboard-section {
  padding: 60px 20px;
  background-color: #f1f3f5; /* Light background for leaderboard */
  color: var(--dark-text-color);
}

.page-game-bai-doi-thuong__page-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--dark-text-color);
  text-align: center;
  margin-bottom: 40px;
}

.page-game-bai-doi-thuong__game-leaderboard {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-game-bai-doi-thuong__game-card {
  background: var(--card-bg-color);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-bai-doi-thuong__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-game-bai-doi-thuong__game-card-segment {
  padding: 0 20px;
  height: 100%; /* Ensure segments align vertically */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.page-game-bai-doi-thuong__segment-1 {
  flex-shrink: 0;
  width: 120px;
  padding-left: 0;
  border-right: 1px solid var(--segment-separator-color);
  position: relative;
}

.page-game-bai-doi-thuong__rank-badge {
  position: absolute;
  top: -10px;
  left: 0px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b35, #ff8c42); /* Default for 4+ */
  color: #ffffff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.page-game-bai-doi-thuong__rank-1 {
  background: linear-gradient(135deg, #FFD700, #FFA500); /* Gold */
}

.page-game-bai-doi-thuong__rank-2 {
  background: linear-gradient(135deg, #C0C0C0, #A0A0A0); /* Silver */
}

.page-game-bai-doi-thuong__rank-3 {
  background: linear-gradient(135deg, #CD7F32, #B87333); /* Bronze */
}

.page-game-bai-doi-thuong__game-icon {
  max-width: 80px; /* Reduced icon size for better layout */
  height: auto;
  display: block;
  border-radius: 4px;
  margin-top: 15px;
}

.page-game-bai-doi-thuong__segment-2 {
  flex: 1;
  border-right: 1px solid var(--segment-separator-color);
}

.page-game-bai-doi-thuong__game-name {
  font-size: 22px;
  font-weight: bold;
  color: var(--dark-text-color);
  margin-bottom: 5px;
  text-align: center;
  text-transform: uppercase;
}

.page-game-bai-doi-thuong__game-name-link {
  color: var(--dark-text-color);
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.page-game-bai-doi-thuong__game-name-link:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-game-bai-doi-thuong__game-description {
  font-size: 14px;
  color: var(--dark-text-color);
  font-weight: bold;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.page-game-bai-doi-thuong__game-description a {
  color: #0066cc;
  font-weight: bold;
  text-decoration: none;
}

.page-game-bai-doi-thuong__game-description a:hover {
  color: #004499;
  text-decoration: underline;
}

.page-game-bai-doi-thuong__segment-3 {
  flex-shrink: 0;
  width: 150px;
  border-right: 1px solid var(--segment-separator-color);
}

.page-game-bai-doi-thuong__game-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
}

.page-game-bai-doi-thuong__stars {
  color: var(--secondary-color);
  font-size: 18px;
  margin-right: 5px;
  font-weight: bold;
}

.page-game-bai-doi-thuong__rating-number {
  font-size: 16px;
  font-weight: bold;
  color: var(--dark-text-color);
}

.page-game-bai-doi-thuong__promotion-text {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--dark-text-color);
}

.page-game-bai-doi-thuong__promotion-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-game-bai-doi-thuong__promotion-link:hover {
  text-decoration: underline;
}

.page-game-bai-doi-thuong__hot-badge {
  background: #dc3545;
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
  margin-left: 5px;
}

.page-game-bai-doi-thuong__segment-4 {
  flex-shrink: 0;
  width: 200px;
  padding-right: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-game-bai-doi-thuong__btn-download,
.page-game-bai-doi-thuong__btn-review {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-game-bai-doi-thuong__btn-download {
  background: linear-gradient(135deg, var(--primary-color), #0056b3);
  color: #ffffff;
}

.page-game-bai-doi-thuong__btn-download:hover {
  background: linear-gradient(135deg, #0056b3, var(--primary-color));
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-game-bai-doi-thuong__btn-review {
  background: linear-gradient(135deg, var(--secondary-color), #d39e00);
  color: var(--dark-text-color);
}

.page-game-bai-doi-thuong__btn-review:hover {
  background: linear-gradient(135deg, #d39e00, var(--secondary-color));
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Brand Review Content Section */
.page-game-bai-doi-thuong__review-content-section {
  padding: 40px 20px;
  background: var(--dark-bg-color); /* Dark background for review section */
  color: var(--light-text-color);
}

.page-game-bai-doi-thuong__review-content-container {
  max-width: 1400px;
  margin: 0 auto;
}

.page-game-bai-doi-thuong__review-content-card {
  background: #1a1a1a; /* Darker card background for contrast */
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  padding: 40px;
}

.page-game-bai-doi-thuong__review-content-card h2 {
  font-size: 28px;
  font-weight: bold;
  color: var(--light-text-color);
  margin-bottom: 24px;
  text-align: center;
}

.page-game-bai-doi-thuong__review-content-card h3 {
  font-size: 20px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-top: 24px;
  margin-bottom: 12px;
}

.page-game-bai-doi-thuong__review-body {
  color: #e0e0e0;
  line-height: 1.7;
}

.page-game-bai-doi-thuong__review-body p {
  margin-bottom: 16px;
  font-size: 16px;
}

/* Homepage Introduction Section */
.page-game-bai-doi-thuong__intro-section {
  padding: 60px 20px;
  background: var(--primary-color); /* Using primary color for a section */
  color: var(--light-text-color);
  text-align: center;
}

.page-game-bai-doi-thuong__intro-section h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--light-text-color);
}

.page-game-bai-doi-thuong__intro-section p {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-game-bai-doi-thuong__intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-game-bai-doi-thuong__intro-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  transition: transform 0.3s ease, background 0.3s ease;
}

.page-game-bai-doi-thuong__intro-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.page-game-bai-doi-thuong__intro-item h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.page-game-bai-doi-thuong__intro-item p {
  font-size: 15px;
  color: #e0e0e0;
  margin-bottom: 0;
}

/* Core Games/Services Section */
.page-game-bai-doi-thuong__games-section {
  padding: 60px 20px;
  background: #0d0d0d; /* Darker background */
  color: var(--light-text-color);
  text-align: center;
}

.page-game-bai-doi-thuong__games-section h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--light-text-color);
}

.page-game-bai-doi-thuong__games-section p {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-game-bai-doi-thuong__games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-game-bai-doi-thuong__game-item {
  background: #1a1a1a;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-game-bai-doi-thuong__game-item:hover {
  transform: translateY(-5px);
  background: #2a2a2a;
}

.page-game-bai-doi-thuong__game-image {
  max-width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 20px;
}

.page-game-bai-doi-thuong__game-item h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.page-game-bai-doi-thuong__game-item p {
  font-size: 15px;
  color: #e0e0e0;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-game-bai-doi-thuong__btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(135deg, var(--primary-color), #0056b3);
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border: none;
}

.page-game-bai-doi-thuong__btn-primary:hover {
  background: linear-gradient(135deg, #0056b3, var(--primary-color));
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Promotions Section */
.page-game-bai-doi-thuong__promotions-section {
  padding: 60px 20px;
  background: var(--dark-bg-color);
  color: var(--light-text-color);
  text-align: center;
}

.page-game-bai-doi-thuong__promotions-section h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--light-text-color);
}

.page-game-bai-doi-thuong__promotions-section p {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-game-bai-doi-thuong__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 40px auto;
}

.page-game-bai-doi-thuong__promotion-card {
  background: #1a1a1a;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-game-bai-doi-thuong__promotion-card:hover {
  transform: translateY(-5px);
  background: #2a2a2a;
}

.page-game-bai-doi-thuong__promotion-image {
  max-width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 20px;
}

.page-game-bai-doi-thuong__promotion-card h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.page-game-bai-doi-thuong__promotion-card p {
  font-size: 15px;
  color: #e0e0e0;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-game-bai-doi-thuong__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(135deg, var(--secondary-color), #d39e00);
  color: var(--dark-text-color);
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border: none;
}

.page-game-bai-doi-thuong__btn-secondary:hover {
  background: linear-gradient(135deg, #d39e00, var(--secondary-color));
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-game-bai-doi-thuong__view-all-promos {
  margin-top: 40px;
}

/* Blog Section */
.page-game-bai-doi-thuong__blog-section {
  padding: 60px 20px;
  background: #1a1a1a; /* Darker background */
  color: var(--light-text-color);
  text-align: center;
}

.page-game-bai-doi-thuong__blog-section h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--light-text-color);
}

.page-game-bai-doi-thuong__blog-section p {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-game-bai-doi-thuong__blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 40px auto;
}

.page-game-bai-doi-thuong__blog-card {
  background: #0d0d0d;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  transition: transform 0.3s ease, background 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-game-bai-doi-thuong__blog-card:hover {
  transform: translateY(-5px);
  background: #1a1a1a;
}

.page-game-bai-doi-thuong__blog-image {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 20px;
}

.page-game-bai-doi-thuong__blog-card h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.page-game-bai-doi-thuong__blog-title-link {
  color: var(--light-text-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-game-bai-doi-thuong__blog-title-link:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.page-game-bai-doi-thuong__blog-card p {
  font-size: 15px;
  color: #e0e0e0;
  flex-grow: 1;
  margin-bottom: 15px;
}

.page-game-bai-doi-thuong__blog-card span {
  font-size: 13px;
  color: #999999;
  display: block;
  margin-bottom: 10px;
}

.page-game-bai-doi-thuong__btn-text-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-game-bai-doi-thuong__btn-text-link:hover {
  color: #d39e00;
  text-decoration: underline;
}

.page-game-bai-doi-thuong__view-all-blog {
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-game-bai-doi-thuong__hero-content h1 {
    font-size: 40px;
  }

  .page-game-bai-doi-thuong__hero-content p {
    font-size: 18px;
  }

  .page-game-bai-doi-thuong__page-title {
    font-size: 30px;
  }

  .page-game-bai-doi-thuong__game-card {
    flex-wrap: wrap;
    justify-content: center;
    padding: 15px;
  }

  .page-game-bai-doi-thuong__game-card-segment {
    border: none !important;
    padding: 10px;
    width: 100%;
  }

  .page-game-bai-doi-thuong__segment-1 {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 10px;
  }

  .page-game-bai-doi-thuong__rank-badge {
    position: static;
    margin-right: 15px;
  }

  .page-game-bai-doi-thuong__game-icon {
    margin-top: 0;
  }

  .page-game-bai-doi-thuong__segment-2 {
    order: -1; /* Move game info to top on mobile */
    padding-bottom: 10px;
  }

  .page-game-bai-doi-thuong__segment-3 {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .page-game-bai-doi-thuong__segment-4 {
    width: 100%;
    flex-direction: row;
    gap: 10px;
    padding-top: 10px;
    padding-bottom: 0;
  }
  
  .page-game-bai-doi-thuong__btn-download,
  .page-game-bai-doi-thuong__btn-review {
    flex: 1;
    font-size: 14px;
    padding: 10px 15px;
  }

  .page-game-bai-doi-thuong__intro-section h2,
  .page-game-bai-doi-thuong__games-section h2,
  .page-game-bai-doi-thuong__promotions-section h2,
  .page-game-bai-doi-thuong__blog-section h2 {
    font-size: 28px;
  }

  .page-game-bai-doi-thuong__intro-section p,
  .page-game-bai-doi-thuong__games-section p,
  .page-game-bai-doi-thuong__promotions-section p,
  .page-game-bai-doi-thuong__blog-section p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .page-game-bai-doi-thuong {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-game-bai-doi-thuong__hero-section {
    padding-top: 140px !important; /* Mobile: Adjust based on mobile fixed header height */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-game-bai-doi-thuong__hero-content h1 {
    font-size: 32px;
  }

  .page-game-bai-doi-thuong__hero-content p {
    font-size: 16px;
  }

  .page-game-bai-doi-thuong__cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }

  .page-game-bai-doi-thuong__page-title {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .page-game-bai-doi-thuong__game-leaderboard-section,
  .page-game-bai-doi-thuong__review-content-section,
  .page-game-bai-doi-thuong__intro-section,
  .page-game-bai-doi-thuong__games-section,
  .page-game-bai-doi-thuong__promotions-section,
  .page-game-bai-doi-thuong__blog-section {
    padding: 30px 15px;
  }

  .page-game-bai-doi-thuong__game-card {
    padding: 15px;
  }

  .page-game-bai-doi-thuong__review-content-card {
    padding: 24px 20px;
  }
  
  .page-game-bai-doi-thuong__review-content-card h2 {
    font-size: 24px;
  }
  
  .page-game-bai-doi-thuong__review-content-card h3 {
    font-size: 18px;
  }
  
  .page-game-bai-doi-thuong__review-body p {
    font-size: 15px;
  }

  .page-game-bai-doi-thuong__intro-grid,
  .page-game-bai-doi-thuong__games-grid,
  .page-game-bai-doi-thuong__promotions-grid,
  .page-game-bai-doi-thuong__blog-grid {
    gap: 20px;
  }

  .page-game-bai-doi-thuong__intro-item h3,
  .page-game-bai-doi-thuong__game-item h3,
  .page-game-bai-doi-thuong__promotion-card h3,
  .page-game-bai-doi-thuong__blog-card h3 {
    font-size: 20px;
  }

  .page-game-bai-doi-thuong__game-image,
  .page-game-bai-doi-thuong__promotion-image,
  .page-game-bai-doi-thuong__blog-image {
    height: 150px;
  }

  /* Force responsive for all images and containers */
  .page-game-bai-doi-thuong img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-game-bai-doi-thuong__section,
  .page-game-bai-doi-thuong__card,
  .page-game-bai-doi-thuong__container,
  .page-game-bai-doi-thuong__hero-section,
  .page-game-bai-doi-thuong__game-leaderboard-section,
  .page-game-bai-doi-thuong__review-content-section,
  .page-game-bai-doi-thuong__intro-section,
  .page-game-bai-doi-thuong__games-section,
  .page-game-bai-doi-thuong__promotions-section,
  .page-game-bai-doi-thuong__blog-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-game-bai-doi-thuong__segment-4 {
    max-width: 100%;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .page-game-bai-doi-thuong__btn-download,
  .page-game-bai-doi-thuong__btn-review {
    max-width: 100%;
    width: 100%;
    font-size: 12px;
    padding: 8px 12px;
    white-space: normal;
    word-wrap: break-word;
    min-width: auto;
  }
}