.page-resources-sv388-registration-guide {
  --primary-color: #1A2B3C;
  --secondary-color: #FFD700;
  --text-color-dark: #333333;
  --text-color-light: #FFFFFF;
  --bg-light: #F8F8F8;
  --bg-dark: #1A2B3C;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark);
}

.page-resources-sv388-registration-guide .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-index.hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background-color: var(--bg-dark);
  color: var(--text-color-light);
}

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

.page-index .hero-image {
  width: 100%;
  margin-bottom: 30px;
}

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

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

.page-resources-sv388-registration-guide h1 {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-sv388-registration-guide .hero-content p {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: var(--text-color-light);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-sv388-registration-guide .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid var(--secondary-color);
}

.page-resources-sv388-registration-guide .cta-button:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-resources-sv388-registration-guide section {
  padding: 80px 0;
}

.page-resources-sv388-registration-guide section:nth-of-type(odd) {
  background-color: var(--bg-light);
}

.page-resources-sv388-registration-guide section:nth-of-type(even) {
  background-color: #FFFFFF;
}

.page-resources-sv388-registration-guide h2 {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-resources-sv388-registration-guide h3 {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-resources-sv388-registration-guide .section-description {
  text-align: center;
  font-size: 1.1em;
  color: #666;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Intro Section */
.page-resources-sv388-registration-guide .intro-section .intro-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.page-resources-sv388-registration-guide .intro-section .intro-content .content-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.page-resources-sv388-registration-guide .intro-section .intro-content .content-image.right {
  order: 2;
}

.page-resources-sv388-registration-guide .intro-section .intro-content p {
  flex: 2;
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
}

.page-resources-sv388-registration-guide .btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary-color);
  color: var(--text-color-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
  margin-top: 20px;
}

.page-resources-sv388-registration-guide .btn-secondary:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  border-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Registration Steps Section */
.page-resources-sv388-registration-guide .steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.page-resources-sv388-registration-guide .step-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-sv388-registration-guide .step-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-sv388-registration-guide .step-item .step-icon {
  width: 150px;
  height: 150px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-resources-sv388-registration-guide .step-item h3 {
  font-size: 1.4em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-resources-sv388-registration-guide .step-item p {
  font-size: 1em;
  color: #555;
}

.page-resources-sv388-registration-guide .step-item p a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-resources-sv388-registration-guide .step-item p a:hover {
  text-decoration: underline;
  color: var(--secondary-color);
}

.page-resources-sv388-registration-guide .quick-access-links h3 {
  text-align: center;
  margin-bottom: 25px;
  color: var(--primary-color);
}

.page-resources-sv388-registration-guide .link-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.page-resources-sv388-registration-guide .btn-link {
  display: inline-block;
  padding: 12px 25px;
  background: var(--primary-color);
  color: var(--text-color-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
}

.page-resources-sv388-registration-guide .btn-link:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  border-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Games Section */
.page-resources-sv388-registration-guide .game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-sv388-registration-guide .game-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-sv388-registration-guide .game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-sv388-registration-guide .game-card .game-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-resources-sv388-registration-guide .game-card h3 {
  font-size: 1.5em;
  padding: 20px 20px 10px;
  margin-bottom: 0;
}

.page-resources-sv388-registration-guide .game-card h3 .game-link {
  color: var(--primary-color);
  text-decoration: none;
}

.page-resources-sv388-registration-guide .game-card h3 .game-link:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.page-resources-sv388-registration-guide .game-card p {
  padding: 0 20px 20px;
  color: #555;
  font-size: 0.95em;
}

/* Promotions Section */
.page-resources-sv388-registration-guide .promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-sv388-registration-guide .promo-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-sv388-registration-guide .promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-sv388-registration-guide .promo-card .promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-resources-sv388-registration-guide .promo-card h3 {
  font-size: 1.4em;
  color: var(--primary-color);
  padding: 0 20px;
}

.page-resources-sv388-registration-guide .promo-card p {
  padding: 0 20px;
  color: #555;
  font-size: 0.95em;
  margin-bottom: 25px;
}

.page-resources-sv388-registration-guide .btn-promo {
  display: inline-block;
  padding: 10px 25px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.95em;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid var(--secondary-color);
}

.page-resources-sv388-registration-guide .btn-promo:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
  border-color: var(--primary-color);
}

/* Security & Support Section */
.page-resources-sv388-registration-guide .security-support-section {
  background-color: var(--bg-dark);
  color: var(--text-color-light);
}

.page-resources-sv388-registration-guide .security-support-section h2 {
  color: var(--secondary-color);
}

.page-resources-sv388-registration-guide .security-content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.page-resources-sv388-registration-guide .security-content .content-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-resources-sv388-registration-guide .security-content .content-image.left {
  order: 1;
}

.page-resources-sv388-registration-guide .security-content h3 {
  color: var(--secondary-color);
  font-size: 1.6em;
  margin-top: 0;
}

.page-resources-sv388-registration-guide .security-content p {
  flex: 2;
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #E0E0E0;
}

.page-resources-sv388-registration-guide .security-content .cta-button {
  margin-top: 30px;
  background: var(--secondary-color);
  color: var(--primary-color);
  border-color: var(--secondary-color);
}

.page-resources-sv388-registration-guide .security-content .cta-button:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

/* FAQ Section */
.page-resources-sv388-registration-guide .faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-sv388-registration-guide .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  background-color: #FFFFFF;
}

.page-resources-sv388-registration-guide .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-resources-sv388-registration-guide .faq-question:hover {
  background: #f5f5f5;
}

.page-resources-sv388-registration-guide .faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: var(--primary-color);
}

.page-resources-sv388-registration-guide .faq-toggle {
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.page-resources-sv388-registration-guide .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--secondary-color);
}

.page-resources-sv388-registration-guide .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 15px;
  background: #f9f9f9;
  border-top: 1px solid #e0e0e0;
}

.page-resources-sv388-registration-guide .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 15px;
  border-radius: 0 0 5px 5px;
}

.page-resources-sv388-registration-guide .faq-answer p {
  margin: 0;
  color: #555;
  font-size: 1em;
}

.page-resources-sv388-registration-guide .faq-answer a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-resources-sv388-registration-guide .faq-answer a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Blog Section */
.page-resources-sv388-registration-guide .blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-sv388-registration-guide .blog-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-sv388-registration-guide .blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-sv388-registration-guide .blog-card .blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-resources-sv388-registration-guide .blog-card h3 {
  font-size: 1.4em;
  padding: 20px 20px 10px;
  margin-bottom: 0;
}

.page-resources-sv388-registration-guide .blog-card h3 .blog-link {
  color: var(--primary-color);
  text-decoration: none;
}

.page-resources-sv388-registration-guide .blog-card h3 .blog-link:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.page-resources-sv388-registration-guide .blog-card p {
  padding: 0 20px 15px;
  color: #555;
  font-size: 0.95em;
}

.page-resources-sv388-registration-guide .btn-read-more {
  display: inline-block;
  padding: 8px 20px;
  background: var(--primary-color);
  color: var(--text-color-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9em;
  transition: all 0.3s ease;
  margin: 0 20px 20px;
}

.page-resources-sv388-registration-guide .btn-read-more:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-sv388-registration-guide h1 {
    font-size: 2.8em;
  }
  .page-resources-sv388-registration-guide h2 {
    font-size: 2.2em;
  }
  .page-resources-sv388-registration-guide .intro-section .intro-content,
  .page-resources-sv388-registration-guide .security-content {
    flex-direction: column;
    text-align: center;
  }
  .page-resources-sv388-registration-guide .intro-section .intro-content .content-image.right,
  .page-resources-sv388-registration-guide .security-content .content-image.left {
    order: initial;
  }
  .page-resources-sv388-registration-guide .intro-section .intro-content .content-image,
  .page-resources-sv388-registration-guide .security-content .content-image {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .page-resources-sv388-registration-guide section {
    padding: 50px 0;
  }
  .page-resources-sv388-registration-guide h1 {
    font-size: 2.2em;
  }
  .page-resources-sv388-registration-guide .hero-content p {
    font-size: 1.1em;
  }
  .page-resources-sv388-registration-guide .cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
  .page-resources-sv388-registration-guide h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-resources-sv388-registration-guide .section-description {
    margin-bottom: 40px;
  }
  .page-resources-sv388-registration-guide .steps-grid,
  .page-resources-sv388-registration-guide .game-grid,
  .page-resources-sv388-registration-guide .promo-grid,
  .page-resources-sv388-registration-guide .blog-grid {
    grid-template-columns: 1fr;
  }
  .page-resources-sv388-registration-guide .link-buttons {
    flex-direction: column;
    align-items: center;
  }
  .page-resources-sv388-registration-guide .faq-question {
    padding: 12px;
  }
  .page-resources-sv388-registration-guide .faq-question h3 {
    font-size: 1.1em;
  }
  .page-resources-sv388-registration-guide .faq-answer {
    padding: 0 12px;
  }
  .page-resources-sv388-registration-guide .faq-item.active .faq-answer {
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .page-resources-sv388-registration-guide h1 {
    font-size: 1.8em;
  }
  .page-resources-sv388-registration-guide .hero-content p {
    font-size: 1em;
  }
  .page-resources-sv388-registration-guide .cta-button {
    padding: 10px 25px;
    font-size: 1em;
  }
  .page-resources-sv388-registration-guide h2 {
    font-size: 1.6em;
  }
  .page-resources-sv388-registration-guide h3 {
    font-size: 1.3em;
  }
  .page-resources-sv388-registration-guide .step-item .step-icon {
    width: 100px;
    height: 100px;
  }
}