:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #B22222; /* Deep Red */
  --dark-background: #1a1a1a;
  --text-color-light: #ffffff;
  --text-color-dark: #333333;
  --card-background: #2a2a2a;
  --border-color: #444444;
  --button-hover-bg: #e0b400;
}

.page-resources-vip-66-latest-promotions-analysis {
  font-family: 'Arial', sans-serif;
  color: var(--text-color-light);
  background-color: var(--dark-background);
  line-height: 1.6;
}

.page-resources-vip-66-latest-promotions-analysis-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-resources-vip-66-latest-promotions-analysis-section {
  padding: 60px 0;
  text-align: center;
}

.page-resources-vip-66-latest-promotions-analysis-section:nth-of-type(even) {
  background-color: #222222;
}

.page-resources-vip-66-latest-promotions-analysis h1,
.page-resources-vip-66-latest-promotions-analysis h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
}

.page-resources-vip-66-latest-promotions-analysis h1 {
  font-size: 3.2em;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-vip-66-latest-promotions-analysis h2 {
  font-size: 2.5em;
  border-bottom: 3px solid var(--secondary-color);
  display: inline-block;
  padding-bottom: 10px;
  margin-top: 40px;
  text-align: center;
}

.page-resources-vip-66-latest-promotions-analysis h3 {
  color: var(--primary-color);
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-resources-vip-66-latest-promotions-analysis p {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #e0e0e0;
}

.page-resources-vip-66-latest-promotions-analysis a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources-vip-66-latest-promotions-analysis a:hover {
  color: var(--secondary-color);
}

.page-resources-vip-66-latest-promotions-analysis-button {
  display: inline-block;
  padding: 12px 30px;
  background: var(--secondary-color);
  color: var(--text-color-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-resources-vip-66-latest-promotions-analysis-button:hover {
  background: #a01a1a;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* HERO Section */
.page-resources-vip-66-latest-promotions-analysis-hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  overflow: hidden;
  background-color: #000; /* Fallback for image loading */
}

.page-resources-vip-66-latest-promotions-analysis-hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-resources-vip-66-latest-promotions-analysis-hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
}

.page-resources-vip-66-latest-promotions-analysis-hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.page-resources-vip-66-latest-promotions-analysis-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-resources-vip-66-latest-promotions-analysis-hero-content p {
  max-width: 800px;
  margin: 0 auto 30px auto;
  font-size: 1.2em;
}

.page-resources-vip-66-latest-promotions-analysis-cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--primary-color);
  color: var(--text-color-dark);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.4em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-resources-vip-66-latest-promotions-analysis-cta-button:hover {
  background: var(--button-hover-bg);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  color: var(--text-color-dark);
}

.page-resources-vip-66-latest-promotions-analysis-cta-large {
  padding: 20px 50px;
  font-size: 1.6em;
}

/* Quick Access Links */
.page-resources-vip-66-latest-promotions-analysis-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-resources-vip-66-latest-promotions-analysis-link-card {
  background: var(--card-background);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 180px;
}

.page-resources-vip-66-latest-promotions-analysis-link-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
  background: #3a3a3a;
}

.page-resources-vip-66-latest-promotions-analysis-link-card h3 {
  color: var(--primary-color);
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-resources-vip-66-latest-promotions-analysis-link-card p {
  color: #cccccc;
  font-size: 1em;
  flex-grow: 1;
}

/* Promotions Detail */
.page-resources-vip-66-latest-promotions-analysis-promo-item {
  background: var(--card-background);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  text-align: left;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-resources-vip-66-latest-promotions-analysis-promo-item h3 {
  color: var(--primary-color);
  font-size: 2em;
  margin-top: 20px;
  text-align: center;
}

.page-resources-vip-66-latest-promotions-analysis-promo-item p {
  color: #e0e0e0;
  font-size: 1.1em;
  margin-top: 15px;
  text-align: justify;
}

.page-resources-vip-66-latest-promotions-analysis-promo-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

/* How to Claim */
.page-resources-vip-66-latest-promotions-analysis-how-to-claim ol {
  list-style: none;
  counter-reset: my-awesome-counter;
  padding: 0;
  text-align: left;
  max-width: 800px;
  margin: 30px auto;
}

.page-resources-vip-66-latest-promotions-analysis-how-to-claim ol li {
  counter-increment: my-awesome-counter;
  margin-bottom: 20px;
  padding-left: 60px;
  position: relative;
  font-size: 1.15em;
  color: #e0e0e0;
}

.page-resources-vip-66-latest-promotions-analysis-how-to-claim ol li::before {
  content: counter(my-awesome-counter);
  background: var(--primary-color);
  color: var(--text-color-dark);
  font-weight: bold;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-resources-vip-66-latest-promotions-analysis-how-to-claim ol li strong {
  color: var(--primary-color);
}

/* Terms and Conditions */
.page-resources-vip-66-latest-promotions-analysis-terms-conditions ul {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 800px;
  margin: 30px auto;
}

.page-resources-vip-66-latest-promotions-analysis-terms-conditions ul li {
  background: var(--card-background);
  border-left: 5px solid var(--secondary-color);
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  color: #e0e0e0;
  font-size: 1.05em;
}

.page-resources-vip-66-latest-promotions-analysis-terms-conditions ul li strong {
  color: var(--primary-color);
}

/* Game Highlights */
.page-resources-vip-66-latest-promotions-analysis-game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-resources-vip-66-latest-promotions-analysis-game-card {
  background: var(--card-background);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.page-resources-vip-66-latest-promotions-analysis-game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
  background: #3a3a3a;
}

.page-resources-vip-66-latest-promotions-analysis-game-card h3 {
  color: var(--primary-color);
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-resources-vip-66-latest-promotions-analysis-game-card p {
  color: #cccccc;
  font-size: 1em;
  flex-grow: 1;
}

.page-resources-vip-66-latest-promotions-analysis-game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* Security and Support */
.page-resources-vip-66-latest-promotions-analysis-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-vip-66-latest-promotions-analysis-info-card {
  background: var(--card-background);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid var(--border-color);
}

.page-resources-vip-66-latest-promotions-analysis-info-card h3 {
  color: var(--primary-color);
  font-size: 1.6em;
  margin-bottom: 10px;
}

.page-resources-vip-66-latest-promotions-analysis-info-card p {
  color: #cccccc;
}

.page-resources-vip-66-latest-promotions-analysis-info-image {
  width: 100%;
  max-width: 400px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

/* FAQ Section */
.page-resources-vip-66-latest-promotions-analysis-faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: var(--card-background);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #3a3a3a;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.3em;
  color: var(--text-color-light);
  flex-grow: 1;
  text-align: left;
}

.faq-toggle {
  font-size: 2.2em;
  font-weight: bold;
  color: var(--primary-color);
  margin-left: 15px;
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--secondary-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #222222;
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  border-radius: 0 0 8px 8px;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 20px 25px;
}

.faq-answer p {
  color: #cccccc;
  font-size: 1.05em;
  text-align: justify;
}

/* Latest News/Blog */
.page-resources-vip-66-latest-promotions-analysis-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-resources-vip-66-latest-promotions-analysis-blog-card {
  background: var(--card-background);
  padding: 20px;
  border-radius: 10px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-resources-vip-66-latest-promotions-analysis-blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
  background: #3a3a3a;
}

.page-resources-vip-66-latest-promotions-analysis-blog-card h3 {
  color: var(--primary-color);
  font-size: 1.4em;
  margin-top: 15px;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-resources-vip-66-latest-promotions-analysis-blog-card p {
  color: #cccccc;
  font-size: 0.95em;
  flex-grow: 1;
}

.page-resources-vip-66-latest-promotions-analysis-blog-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.page-resources-vip-66-latest-promotions-analysis-blog-date {
  display: block;
  font-size: 0.85em;
  color: #999999;
  margin-top: 10px;
}

.page-resources-vip-66-latest-promotions-analysis-read-more {
  display: inline-block;
  margin-top: 10px;
  color: var(--secondary-color);
  font-weight: bold;
}

.page-resources-vip-66-latest-promotions-analysis-read-more:hover {
  color: var(--primary-color);
}

/* Call to Action */
.page-resources-vip-66-latest-promotions-analysis-call-to-action {
  background: linear-gradient(135deg, var(--secondary-color), #8b1a1a);
  padding: 80px 0;
}

.page-resources-vip-66-latest-promotions-analysis-call-to-action h2 {
  color: var(--text-color-light);
  border-bottom-color: var(--primary-color);
}

.page-resources-vip-66-latest-promotions-analysis-call-to-action p {
  color: var(--text-color-light);
  max-width: 900px;
  margin: 0 auto 30px auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-vip-66-latest-promotions-analysis-hero-content h1 {
    font-size: 2.8em;
  }
  .page-resources-vip-66-latest-promotions-analysis h2 {
    font-size: 2em;
  }
  .page-resources-vip-66-latest-promotions-analysis h3 {
    font-size: 1.6em;
  }
  .page-resources-vip-66-latest-promotions-analysis-cta-button {
    font-size: 1.2em;
    padding: 15px 35px;
  }
  .page-resources-vip-66-latest-promotions-analysis-cta-large {
    font-size: 1.4em;
    padding: 18px 45px;
  }
}

@media (max-width: 768px) {
  .page-resources-vip-66-latest-promotions-analysis-section {
    padding: 40px 0;
  }
  .page-resources-vip-66-latest-promotions-analysis-hero-section {
    padding: 60px 15px;
  }
  .page-resources-vip-66-latest-promotions-analysis-hero-content h1 {
    font-size: 2.2em;
  }
  .page-resources-vip-66-latest-promotions-analysis-hero-content p {
    font-size: 1em;
  }
  .page-resources-vip-66-latest-promotions-analysis h2 {
    font-size: 1.8em;
  }
  .page-resources-vip-66-latest-promotions-analysis h3 {
    font-size: 1.4em;
  }
  .page-resources-vip-66-latest-promotions-analysis p {
    font-size: 0.95em;
  }
  .page-resources-vip-66-latest-promotions-analysis-links-grid,
  .page-resources-vip-66-latest-promotions-analysis-game-grid,
  .page-resources-vip-66-latest-promotions-analysis-info-grid,
  .page-resources-vip-66-latest-promotions-analysis-blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-resources-vip-66-latest-promotions-analysis-promo-item {
    padding: 20px;
  }
  .page-resources-vip-66-latest-promotions-analysis-how-to-claim ol li {
    padding-left: 50px;
    font-size: 1em;
  }
  .page-resources-vip-66-latest-promotions-analysis-how-to-claim ol li::before {
    width: 35px;
    height: 35px;
    font-size: 1.1em;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 1.15em;
  }
  .faq-toggle {
    font-size: 1.8em;
  }
  .faq-answer {
    padding: 15px 20px;
  }
  .faq-answer p {
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .page-resources-vip-66-latest-promotions-analysis-hero-content h1 {
    font-size: 1.8em;
  }
  .page-resources-vip-66-latest-promotions-analysis h2 {
    font-size: 1.5em;
  }
  .page-resources-vip-66-latest-promotions-analysis h3 {
    font-size: 1.2em;
  }
  .page-resources-vip-66-latest-promotions-analysis-cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-resources-vip-66-latest-promotions-analysis-cta-large {
    font-size: 1.2em;
    padding: 15px 30px;
  }
  .page-resources-vip-66-latest-promotions-analysis-promo-item h3 {
    font-size: 1.6em;
  }
}