.page-resources-twin68-guide {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #1E90FF; /* Dodger Blue */
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f4f7f6;
  --bg-dark: #1a1a1a;
  --border-color: #e0e0e0;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

.page-resources-twin68-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-resources-twin68-guide__title {
  font-size: 2.8em;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-twin68-guide__subtitle {
  font-size: 1.3em;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-resources-twin68-guide__heading {
  font-size: 2.2em;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-twin68-guide__heading::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.page-resources-twin68-guide__description {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  font-size: 1.1em;
  color: #555;
}

/* Hero Section */
.page-resources-twin68-guide .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  overflow: hidden;
}

.page-resources-twin68-guide .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-twin68-guide .hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-resources-twin68-guide .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-resources-twin68-guide .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-resources-twin68-guide__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.3em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid var(--primary-color);
}

.page-resources-twin68-guide__cta-button:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

/* Section Intro */
.page-resources-twin68-guide .section-intro {
  background-color: var(--bg-light);
  padding: 60px 0;
}

.page-resources-twin68-guide .section-intro p {
  font-size: 1.1em;
  text-align: justify;
  margin-bottom: 20px;
}

.page-resources-twin68-guide__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-resources-twin68-guide__feature-item {
  background-color: var(--text-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-twin68-guide__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-twin68-guide__feature-item img {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-resources-twin68-guide__feature-item h3 {
  font-size: 1.5em;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-resources-twin68-guide__feature-item p {
  font-size: 1em;
  color: #666;
  text-align: center;
}

/* Section Steps */
.page-resources-twin68-guide .section-steps {
  padding: 60px 0;
  background-color: var(--text-light);
}

.page-resources-twin68-guide__step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 60px;
  gap: 30px;
}

.page-resources-twin68-guide__step-number {
  background-color: var(--primary-color);
  color: var(--text-light);
  font-size: 2.5em;
  font-weight: bold;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-twin68-guide__step-content h3 {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-top: 0;
  margin-bottom: 15px;
}

.page-resources-twin68-guide__step-content p {
  font-size: 1.05em;
  margin-bottom: 15px;
  text-align: justify;
}

.page-resources-twin68-guide__step-content ol, .page-resources-twin68-guide__step-content ul {
  margin-left: 25px;
  margin-bottom: 20px;
  font-size: 1.05em;
  color: #444;
}

.page-resources-twin68-guide__step-content ol li, .page-resources-twin68-guide__step-content ul li {
  margin-bottom: 10px;
}

.page-resources-twin68-guide__btn-small {
  display: inline-block;
  padding: 12px 25px;
  background-color: var(--secondary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 15px;
}

.page-resources-twin68-guide__btn-small:hover {
  background-color: #1a7ad8;
  transform: translateY(-2px);
}

.page-resources-twin68-guide__btn-main {
  display: inline-block;
  padding: 15px 35px;
  background-color: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.page-resources-twin68-guide__btn-main:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-resources-twin68-guide__game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-resources-twin68-guide__game-card {
  background-color: var(--bg-light);
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-twin68-guide__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-resources-twin68-guide__game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
}

.page-resources-twin68-guide__game-card h4 {
  font-size: 1.4em;
  color: var(--secondary-color);
  margin: 20px 15px 10px 15px;
}

.page-resources-twin68-guide__game-card h4 a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources-twin68-guide__game-card h4 a:hover {
  color: var(--primary-color);
}

.page-resources-twin68-guide__game-card p {
  font-size: 0.95em;
  color: #666;
  padding: 0 15px 20px 15px;
}

/* Section Promotions */
.page-resources-twin68-guide .section-promotions {
  background-color: var(--bg-dark);
  padding: 60px 0;
  color: var(--text-light);
}

.page-resources-twin68-guide .section-promotions .page-resources-twin68-guide__heading {
  color: var(--text-light);
}

.page-resources-twin68-guide .section-promotions .page-resources-twin68-guide__description {
  color: #cccccc;
}

.page-resources-twin68-guide__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-resources-twin68-guide__promo-card {
  background-color: #2a2a2a;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-twin68-guide__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-resources-twin68-guide__promo-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid #3a3a3a;
}

.page-resources-twin68-guide__promo-card h3 {
  font-size: 1.4em;
  color: var(--primary-color);
  margin: 20px 15px 10px 15px;
}

.page-resources-twin68-guide__promo-card h3 a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources-twin68-guide__promo-card h3 a:hover {
  color: var(--secondary-color);
}

.page-resources-twin68-guide__promo-card p {
  font-size: 0.95em;
  color: #bbbbbb;
  padding: 0 15px 20px 15px;
}

.page-resources-twin68-guide__btn-promo {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--secondary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-bottom: 20px;
}

.page-resources-twin68-guide__btn-promo:hover {
  background-color: #1a7ad8;
  transform: translateY(-2px);
}

/* Section Tips */
.page-resources-twin68-guide .section-tips {
  background-color: var(--bg-light);
  padding: 60px 0;
}

.page-resources-twin68-guide .section-tips ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
}

.page-resources-twin68-guide .section-tips ul li {
  background-color: var(--text-light);
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: var(--text-dark);
  position: relative;
  padding-left: 40px;
  text-align: justify;
}

.page-resources-twin68-guide .section-tips ul li::before {
  content: '✓';
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.3em;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}

/* Section Support */
.page-resources-twin68-guide .section-support {
  padding: 60px 0;
  background-color: var(--text-light);
}

.page-resources-twin68-guide__contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-twin68-guide__method-card {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-twin68-guide__method-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-twin68-guide__method-card img {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-resources-twin68-guide__method-card h3 {
  font-size: 1.5em;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-resources-twin68-guide__method-card h3 a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources-twin68-guide__method-card h3 a:hover {
  color: var(--primary-color);
}

.page-resources-twin68-guide__method-card p {
  font-size: 1em;
  color: #666;
}

/* Section FAQ */
.page-resources-twin68-guide .section-faq {
  background-color: var(--bg-light);
  padding: 60px 0;
}

.page-resources-twin68-guide__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: var(--text-light);
  border: 1px solid var(--border-color);
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #f5f5f5;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: var(--text-dark);
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 15px 20px;
  border: 1px solid var(--border-color);
  border-top: none;
}

.faq-item.active .faq-answer p {
  margin: 0;
  color: #555;
  font-size: 1em;
}

/* Footer Placeholder Styling (for contrast) */
.page-resources-twin68-guide footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 40px 20px;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-resources-twin68-guide__title {
    font-size: 2.2em;
  }
  .page-resources-twin68-guide__subtitle {
    font-size: 1.1em;
  }
  .page-resources-twin68-guide__heading {
    font-size: 1.8em;
  }
  .page-resources-twin68-guide__description {
    font-size: 1em;
  }
  .page-resources-twin68-guide__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-resources-twin68-guide__step-number {
    margin-bottom: 20px;
  }
  .page-resources-twin68-guide__step-content ol, .page-resources-twin68-guide__step-content ul {
    text-align: left;
  }
  .page-resources-twin68-guide__game-categories, .page-resources-twin68-guide__promo-grid, .page-resources-twin68-guide__contact-methods {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-resources-twin68-guide .hero-section {
    padding: 40px 15px;
  }
  .page-resources-twin68-guide .hero-image img {
    border-radius: 4px;
  }
  .page-resources-twin68-guide__cta-button {
    padding: 15px 35px;
    font-size: 1.1em;
  }
  .page-resources-twin68-guide__title {
    font-size: 1.8em;
  }
  .page-resources-twin68-guide__subtitle {
    font-size: 1em;
  }
  .page-resources-twin68-guide__heading {
    font-size: 1.6em;
  }
  .page-resources-twin68-guide__feature-item img, .page-resources-twin68-guide__method-card img {
    width: 80px;
    height: 80px;
  }
  .faq-question {
    padding: 12px 15px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-toggle {
    font-size: 20px;
  }
  .faq-item.active .faq-answer {
    padding: 10px 15px;
  }
}