.page-promotions-game-specific {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0;
  background-color: #0A192F;
  line-height: 1.6;
}

.page-promotions-game-specific__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promotions-game-specific__hero {
  background: linear-gradient(135deg, #0A192F 0%, #20354F 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #FFD700;
}

.page-promotions-game-specific__hero::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  filter: blur(80px);
  animation: float1 10s infinite ease-in-out;
}

.page-promotions-game-specific__hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: rgba(255, 215, 0, 0.08);
  border-radius: 50%;
  filter: blur(100px);
  animation: float2 12s infinite ease-in-out;
}

@keyframes float1 {
  0% { transform: translate(0, 0); }
  50% { transform: translate(20px, 20px); }
  100% { transform: translate(0, 0); }
}

@keyframes float2 {
  0% { transform: translate(0, 0); }
  50% { transform: translate(-20px, -20px); }
  100% { transform: translate(0, 0); }
}

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

.page-promotions-game-specific__hero-title .highlight {
  color: #FFD700;
}

.page-promotions-game-specific__hero-description {
  font-size: 1.2em;
  color: #B0B0B0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-promotions-game-specific__hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-promotions-game-specific__button {
  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-promotions-game-specific__button.primary {
  background-color: #FFD700;
  color: #0A192F;
}

.page-promotions-game-specific__button.primary:hover {
  background-color: #E6C200;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(255, 215, 0, 0.3);
}

.page-promotions-game-specific__button.secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-promotions-game-specific__button.secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(255, 215, 0, 0.3);
}

.page-promotions-game-specific__button.small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-promotions-game-specific__button.large {
  padding: 18px 35px;
  font-size: 1.3em;
}

.page-promotions-game-specific__section {
  padding: 80px 0;
  text-align: center;
}

.page-promotions-game-specific__section:nth-of-type(even) {
  background-color: #1A2A40;
}

.page-promotions-game-specific__section-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-promotions-game-specific__section p {
  font-size: 1.1em;
  color: #B0B0B0;
  margin-bottom: 25px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-game-specific__image-full-width {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: 12px;
  margin-top: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

.page-promotions-game-specific__card {
  background-color: #1A2A40;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  border: 1px solid #FFD70030;
}

.page-promotions-game-specific__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  border-color: #FFD700;
}

.page-promotions-game-specific__card-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

.page-promotions-game-specific__card-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-game-specific__card p {
  font-size: 1em;
  color: #C0C0C0;
  margin-bottom: 0;
}

.page-promotions-game-specific__promotion-list {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 50px;
}

.page-promotions-game-specific__promotion-item {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  text-align: left;
  background-color: #1A2A40;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  border: 1px solid #FFD70020;
}

.page-promotions-game-specific__promotion-item:nth-child(even) {
  flex-direction: row-reverse;
}

.page-promotions-game-specific__promotion-image {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: 2px solid #FFD700;
}

.page-promotions-game-specific__promotion-content {
  flex-grow: 1;
}

.page-promotions-game-specific__promotion-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-game-specific__promotion-content p {
  font-size: 1em;
  color: #C0C0C0;
  margin-bottom: 15px;
  text-align: left;
  max-width: none;
}

.page-promotions-game-specific__promotion-content strong {
  color: #FFD700;
}

.page-promotions-game-specific__how-to-claim {
  background-color: #0A192F;
}

.page-promotions-game-specific__steps {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  counter-reset: step-counter;
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-promotions-game-specific__steps li {
  counter-increment: step-counter;
  font-size: 1.1em;
  color: #E0E0E0;
  position: relative;
  padding-left: 60px;
  min-height: 40px;
  display: flex;
  align-items: center;
}

.page-promotions-game-specific__steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: #FFD700;
  color: #0A192F;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.3em;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-promotions-game-specific__steps li strong {
  color: #FFD700;
  margin-right: 10px;
}

.page-promotions-game-specific__steps li a {
  color: #FFD700;
  text-decoration: underline;
}

.page-promotions-game-specific__steps li a:hover {
  color: #E6C200;
}

.page-promotions-game-specific__image-inline {
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  margin: 40px auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  display: block;
}

.page-promotions-game-specific__cta-text {
  font-size: 1.3em;
  font-weight: bold;
  color: #FFD700;
  margin-top: 50px;
  margin-bottom: 30px;
}

.page-promotions-game-specific__faq {
  background-color: #1A2A40;
}

.page-promotions-game-specific__accordion {
  max-width: 900px;
  margin: 50px auto 0 auto;
  text-align: left;
}

.page-promotions-game-specific__accordion-item {
  background-color: #0A192F;
  border: 1px solid #FFD70040;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-promotions-game-specific__accordion-header {
  width: 100%;
  padding: 20px 25px;
  background-color: #0A192F;
  color: #FFD700;
  font-size: 1.2em;
  font-weight: bold;
  text-align: left;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-promotions-game-specific__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-promotions-game-specific__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-promotions-game-specific__accordion-header:hover {
  background-color: #1A2A40;
}

.page-promotions-game-specific__accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promotions-game-specific__accordion-content p {
  color: #C0C0C0;
  padding-bottom: 20px;
  margin-bottom: 0;
  font-size: 1em;
  text-align: left;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions-game-specific__hero-title {
    font-size: 2.8em;
  }
  .page-promotions-game-specific__section-title {
    font-size: 2.2em;
  }
  .page-promotions-game-specific__promotion-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-promotions-game-specific__promotion-item:nth-child(even) {
    flex-direction: column;
  }
  .page-promotions-game-specific__promotion-image {
    width: 80%;
    height: auto;
    margin-bottom: 20px;
  }
  .page-promotions-game-specific__promotion-content {
    text-align: center;
  }
  .page-promotions-game-specific__promotion-content p {
    text-align: center;
  }
  .page-promotions-game-specific__button.small {
    margin-top: 15px;
  }
}

@media (max-width: 768px) {
  .page-promotions-game-specific__hero {
    padding: 80px 0;
  }
  .page-promotions-game-specific__hero-title {
    font-size: 2.2em;
  }
  .page-promotions-game-specific__hero-description {
    font-size: 1em;
  }
  .page-promotions-game-specific__hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions-game-specific__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-promotions-game-specific__section {
    padding: 60px 0;
  }
  .page-promotions-game-specific__section-title {
    font-size: 1.8em;
  }
  .page-promotions-game-specific__grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-game-specific__steps li {
    font-size: 1em;
    padding-left: 50px;
    min-height: 35px;
  }
  .page-promotions-game-specific__steps li::before {
    width: 35px;
    height: 35px;
    font-size: 1.1em;
  }
  .page-promotions-game-specific__cta-text {
    font-size: 1.1em;
  }
  .page-promotions-game-specific__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-promotions-game-specific__accordion-content p {
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .page-promotions-game-specific__hero-title {
    font-size: 1.8em;
  }
  .page-promotions-game-specific__hero-description {
    font-size: 0.9em;
  }
  .page-promotions-game-specific__section-title {
    font-size: 1.5em;
  }
  .page-promotions-game-specific__button.large {
    font-size: 1.1em;
    padding: 15px 25px;
  }
  .page-promotions-game-specific__promotion-image {
    width: 100%;
  }
  .page-promotions-game-specific__promotion-title {
    font-size: 1.5em;
  }
  .page-promotions-game-specific__section p {
    font-size: 0.95em;
  }
}