:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #8B0000; /* Deep Red */
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #000000;
  --bg-card-dark: rgba(255, 255, 255, 0.08);
  --border-color-dark: rgba(255, 255, 255, 0.15);
}

.page-resources-suncity-platform-advantages {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Light text for dark body background */
  background-color: var(--bg-dark); /* Body background is dark */
  padding-top: 120px; /* Adjust for fixed header on desktop */
}

/* Video Section */
.page-resources-suncity-platform-advantages__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Desktop: Adjust for fixed header */
  background: linear-gradient(135deg, var(--secondary-color) 0%, #000000 100%);
}

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

.page-resources-suncity-platform-advantages__video-link {
  display: block;
  text-decoration: none;
  position: relative;
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-suncity-platform-advantages__video-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.page-resources-suncity-platform-advantages__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  border: 3px solid var(--primary-color);
}

.page-resources-suncity-platform-advantages__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
  object-fit: cover;
  pointer-events: none; /* Prevent video controls from blocking click */
}

.page-resources-suncity-platform-advantages__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.page-resources-suncity-platform-advantages__video-link:hover .page-resources-suncity-platform-advantages__video-overlay {
  opacity: 1;
}

.page-resources-suncity-platform-advantages__video-click-hint {
  color: var(--text-light);
  font-size: 20px;
  font-weight: bold;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
  padding: 12px 25px;
  background: rgba(255, 215, 0, 0.7);
  border-radius: 30px;
  white-space: nowrap;
  border: 1px solid var(--text-light);
}

.page-resources-suncity-platform-advantages__video-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.page-resources-suncity-platform-advantages__play-now-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--primary-color);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
}

.page-resources-suncity-platform-advantages__play-now-button:hover {
  background: darken(var(--primary-color), 10%); /* Darken gold on hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.page-resources-suncity-platform-advantages__play-now-button:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(255, 215, 0, 0.2);
}

/* Title Section */
.page-resources-suncity-platform-advantages__title-section {
  padding: 80px 20px;
  text-align: center;
  background: var(--bg-dark);
  position: relative;
  z-index: 2;
}

.page-resources-suncity-platform-advantages__title-container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-resources-suncity-platform-advantages__main-title {
  font-size: 3.2em;
  color: var(--primary-color);
  margin-bottom: 25px;
  line-height: 1.2;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.page-resources-suncity-platform-advantages__title-description {
  font-size: 1.2em;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-suncity-platform-advantages__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-suncity-platform-advantages__cta-button {
  display: inline-block;
  padding: 15px 35px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
}

.page-resources-suncity-platform-advantages__cta-button--primary {
  background: var(--primary-color);
  color: var(--text-dark);
  border: 2px solid var(--primary-color);
}

.page-resources-suncity-platform-advantages__cta-button--primary:hover {
  background: darken(var(--primary-color), 10%);
  border-color: darken(var(--primary-color), 10%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.page-resources-suncity-platform-advantages__cta-button--secondary {
  background: var(--secondary-color);
  color: var(--text-light);
  border: 2px solid var(--secondary-color);
}

.page-resources-suncity-platform-advantages__cta-button--secondary:hover {
  background: darken(var(--secondary-color), 10%);
  border-color: darken(var(--secondary-color), 10%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(139, 0, 0, 0.4);
}

/* General Content Sections */
.page-resources-suncity-platform-advantages__brand-section,
.page-resources-suncity-platform-advantages__games-section,
.page-resources-suncity-platform-advantages__promotions-section,
.page-resources-suncity-platform-advantages__security-section,
.page-resources-suncity-platform-advantages__guide-section,
.page-resources-suncity-platform-advantages__faq-section,
.page-resources-suncity-platform-advantages__blog-section {
  padding: 60px 20px;
  background-color: var(--bg-dark);
  text-align: center;
}

.page-resources-suncity-platform-advantages__brand-container,
.page-resources-suncity-platform-advantages__games-container,
.page-resources-suncity-platform-advantages__promotions-container,
.page-resources-suncity-platform-advantages__security-container,
.page-resources-suncity-platform-advantages__guide-container,
.page-resources-suncity-platform-advantages__faq-container,
.page-resources-suncity-platform-advantages__blog-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-resources-suncity-platform-advantages__brand-title,
.page-resources-suncity-platform-advantages__games-title,
.page-resources-suncity-platform-advantages__promotions-title,
.page-resources-suncity-platform-advantages__security-title,
.page-resources-suncity-platform-advantages__guide-title,
.page-resources-suncity-platform-advantages__faq-title,
.page-resources-suncity-platform-advantages__blog-title {
  font-size: 2.5em;
  color: var(--primary-color);
  margin-bottom: 40px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.page-resources-suncity-platform-advantages__games-description,
.page-resources-suncity-platform-advantages__promotions-description,
.page-resources-suncity-platform-advantages__security-description,
.page-resources-suncity-platform-advantages__guide-description {
  font-size: 1.1em;
  color: var(--text-light);
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Brand Section */
.page-resources-suncity-platform-advantages__brand-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-resources-suncity-platform-advantages__brand-item {
  background: var(--bg-card-dark);
  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;
  border: 1px solid var(--border-color-dark);
}

.page-resources-suncity-platform-advantages__brand-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-resources-suncity-platform-advantages__brand-item h3 {
  color: var(--primary-color);
  font-size: 1.6em;
  margin-top: 20px;
  margin-bottom: 15px;
}

.page-resources-suncity-platform-advantages__brand-item p {
  color: var(--text-light);
  font-size: 1em;
}

.page-resources-suncity-platform-advantages__brand-image {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid var(--primary-color);
}

/* Games Section */
.page-resources-suncity-platform-advantages__game-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-suncity-platform-advantages__game-card {
  background: var(--bg-card-dark);
  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;
  border: 1px solid var(--border-color-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-resources-suncity-platform-advantages__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-resources-suncity-platform-advantages__game-image {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 2px solid var(--primary-color);
}

.page-resources-suncity-platform-advantages__game-card h3 {
  color: var(--primary-color);
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-resources-suncity-platform-advantages__game-card p {
  color: var(--text-light);
  font-size: 1em;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-resources-suncity-platform-advantages__btn-secondary {
  background: var(--secondary-color);
  color: var(--text-light);
  border: 2px solid var(--secondary-color);
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  margin-top: auto;
}

.page-resources-suncity-platform-advantages__btn-secondary:hover {
  background: darken(var(--secondary-color), 10%);
  border-color: darken(var(--secondary-color), 10%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Promotions Section */
.page-resources-suncity-platform-advantages__promo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-suncity-platform-advantages__promo-card {
  background: var(--bg-card-dark);
  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;
  border: 1px solid var(--border-color-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-resources-suncity-platform-advantages__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-resources-suncity-platform-advantages__promo-image {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 2px solid var(--primary-color);
}

.page-resources-suncity-platform-advantages__promo-card h3 {
  color: var(--primary-color);
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-resources-suncity-platform-advantages__promo-card p {
  color: var(--text-light);
  font-size: 1em;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-resources-suncity-platform-advantages__btn-primary {
  background: var(--primary-color);
  color: var(--text-dark);
  border: 2px solid var(--primary-color);
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  margin-top: auto;
}

.page-resources-suncity-platform-advantages__btn-primary:hover {
  background: darken(var(--primary-color), 10%);
  border-color: darken(var(--primary-color), 10%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Security Section */
.page-resources-suncity-platform-advantages__security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-resources-suncity-platform-advantages__feature-item {
  background: var(--bg-card-dark);
  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;
  border: 1px solid var(--border-color-dark);
}

.page-resources-suncity-platform-advantages__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-resources-suncity-platform-advantages__feature-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
  border: none; /* Icons usually don't need borders */
}

.page-resources-suncity-platform-advantages__feature-item h3 {
  color: var(--primary-color);
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-resources-suncity-platform-advantages__feature-item p {
  color: var(--text-light);
  font-size: 1em;
}

/* Guide Section */
.page-resources-suncity-platform-advantages__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-resources-suncity-platform-advantages__step-item {
  background: var(--bg-card-dark);
  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;
  border: 1px solid var(--border-color-dark);
  display: flex;
  flex-direction: column;
}

.page-resources-suncity-platform-advantages__step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-resources-suncity-platform-advantages__step-item h3 {
  color: var(--primary-color);
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-resources-suncity-platform-advantages__step-item p {
  color: var(--text-light);
  font-size: 1em;
  flex-grow: 1;
  margin-bottom: 20px;
}

/* FAQ Section */
.page-resources-suncity-platform-advantages__faq-list {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.page-resources-suncity-platform-advantages__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color-dark);
  background: var(--bg-card-dark);
}

.page-resources-suncity-platform-advantages__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: var(--bg-card-dark);
  border-bottom: 1px solid transparent; /* No bottom border initially */
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-resources-suncity-platform-advantages__faq-item.active .page-resources-suncity-platform-advantages__faq-question {
  border-bottom-color: var(--border-color-dark); /* Add border when active */
  background: rgba(255, 255, 255, 0.12);
}

.page-resources-suncity-platform-advantages__faq-question:hover {
  background: rgba(255, 255, 255, 0.1);
}

.page-resources-suncity-platform-advantages__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  color: var(--primary-color);
  pointer-events: none;
}

.page-resources-suncity-platform-advantages__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: var(--primary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-resources-suncity-platform-advantages__faq-item.active .page-resources-suncity-platform-advantages__faq-toggle {
  transform: rotate(45deg); /* Change to X or minus */
  color: var(--text-light);
}

.page-resources-suncity-platform-advantages__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 20px;
  opacity: 0;
  color: var(--text-light);
  font-size: 0.95em;
}

.page-resources-suncity-platform-advantages__faq-item.active .page-resources-suncity-platform-advantages__faq-answer {
  max-height: 2000px !important;
  padding: 20px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0 0 8px 8px;
}

/* Blog Section */
.page-resources-suncity-platform-advantages__blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-resources-suncity-platform-advantages__blog-item {
  background: var(--bg-card-dark);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color-dark);
  overflow: hidden;
}

.page-resources-suncity-platform-advantages__blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-resources-suncity-platform-advantages__blog-link {
  display: block;
  text-decoration: none;
  color: inherit;
  padding-bottom: 20px;
}

.page-resources-suncity-platform-advantages__blog-item-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--border-color-dark);
}

.page-resources-suncity-platform-advantages__blog-item-title {
  font-size: 1.4em;
  color: var(--primary-color);
  margin: 0 20px 10px;
}

.page-resources-suncity-platform-advantages__blog-item-excerpt {
  font-size: 0.95em;
  color: var(--text-light);
  margin: 0 20px 15px;
}

.page-resources-suncity-platform-advantages__blog-item-date {
  font-size: 0.85em;
  color: #aaa;
  margin: 0 20px;
  display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-suncity-platform-advantages__main-title {
    font-size: 2.8em;
  }
  .page-resources-suncity-platform-advantages__brand-title,
  .page-resources-suncity-platform-advantages__games-title,
  .page-resources-suncity-platform-advantages__promotions-title,
  .page-resources-suncity-platform-advantages__security-title,
  .page-resources-suncity-platform-advantages__guide-title,
  .page-resources-suncity-platform-advantages__faq-title,
  .page-resources-suncity-platform-advantages__blog-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-resources-suncity-platform-advantages {
    padding-top: 100px; /* Adjust for fixed header on mobile */
  }

  /* Video Section Mobile */
  .page-resources-suncity-platform-advantages__video-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-resources-suncity-platform-advantages__video-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }

  .page-resources-suncity-platform-advantages__video-link {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-resources-suncity-platform-advantages__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    border-radius: 8px;
    overflow: hidden !important;
    border-width: 2px;
  }

  .page-resources-suncity-platform-advantages__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 8px;
    object-fit: contain;
  }

  .page-resources-suncity-platform-advantages__video-click-hint {
    font-size: 16px;
    padding: 10px 20px;
  }

  .page-resources-suncity-platform-advantages__video-cta {
    margin-top: 25px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .page-resources-suncity-platform-advantages__play-now-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 15px 30px !important;
    font-size: 18px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* Title Section Mobile */
  .page-resources-suncity-platform-advantages__title-section {
    padding: 60px 15px;
  }

  .page-resources-suncity-platform-advantages__main-title {
    font-size: 2.2em;
  }

  .page-resources-suncity-platform-advantages__title-description {
    font-size: 1em;
  }

  .page-resources-suncity-platform-advantages__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-suncity-platform-advantages__cta-button {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 12px 25px;
    font-size: 1em;
    white-space: normal;
    word-wrap: break-word;
  }

  /* General Sections Mobile */
  .page-resources-suncity-platform-advantages__brand-section,
  .page-resources-suncity-platform-advantages__games-section,
  .page-resources-suncity-platform-advantages__promotions-section,
  .page-resources-suncity-platform-advantages__security-section,
  .page-resources-suncity-platform-advantages__guide-section,
  .page-resources-suncity-platform-advantages__faq-section,
  .page-resources-suncity-platform-advantages__blog-section {
    padding: 40px 15px;
  }

  .page-resources-suncity-platform-advantages__brand-title,
  .page-resources-suncity-platform-advantages__games-title,
  .page-resources-suncity-platform-advantages__promotions-title,
  .page-resources-suncity-platform-advantages__security-title,
  .page-resources-suncity-platform-advantages__guide-title,
  .page-resources-suncity-platform-advantages__faq-title,
  .page-resources-suncity-platform-advantages__blog-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-resources-suncity-platform-advantages__games-description,
  .page-resources-suncity-platform-advantages__promotions-description,
  .page-resources-suncity-platform-advantages__security-description,
  .page-resources-suncity-platform-advantages__guide-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  /* Card/Item Mobile */
  .page-resources-suncity-platform-advantages__brand-item,
  .page-resources-suncity-platform-advantages__game-card,
  .page-resources-suncity-platform-advantages__promo-card,
  .page-resources-suncity-platform-advantages__feature-item,
  .page-resources-suncity-platform-advantages__step-item,
  .page-resources-suncity-platform-advantages__blog-item {
    padding: 25px;
    border-radius: 8px;
  }

  .page-resources-suncity-platform-advantages__brand-item h3,
  .page-resources-suncity-platform-advantages__game-card h3,
  .page-resources-suncity-platform-advantages__promo-card h3,
  .page-resources-suncity-platform-advantages__feature-item h3,
  .page-resources-suncity-platform-advantages__step-item h3 {
    font-size: 1.4em;
  }

  .page-resources-suncity-platform-advantages__game-image,
  .page-resources-suncity-platform-advantages__promo-image,
  .page-resources-suncity-platform-advantages__blog-item-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    border-width: 1px;
  }

  .page-resources-suncity-platform-advantages__feature-icon {
    width: 60px;
    height: 60px;
  }

  /* Buttons Mobile */
  .page-resources-suncity-platform-advantages__btn-primary,
  .page-resources-suncity-platform-advantages__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 10px 20px !important;
    font-size: 1em !important;
  }

  /* FAQ Mobile */
  .page-resources-suncity-platform-advantages__faq-question {
    padding: 15px;
  }
  .page-resources-suncity-platform-advantages__faq-question h3 {
    font-size: 1em;
  }
  .page-resources-suncity-platform-advantages__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }
  .page-resources-suncity-platform-advantages__faq-answer {
    padding: 0 15px;
  }
  .page-resources-suncity-platform-advantages__faq-item.active .page-resources-suncity-platform-advantages__faq-answer {
    padding: 15px !important;
  }

  /* Blog Mobile */
  .page-resources-suncity-platform-advantages__blog-item-title {
    font-size: 1.2em;
    margin: 0 15px 8px;
  }
  .page-resources-suncity-platform-advantages__blog-item-excerpt,
  .page-resources-suncity-platform-advantages__blog-item-date {
    margin: 0 15px 10px;
  }
}

@media (max-width: 480px) {
  .page-resources-suncity-platform-advantages__main-title {
    font-size: 1.8em;
  }
  .page-resources-suncity-platform-advantages__brand-title,
  .page-resources-suncity-platform-advantages__games-title,
  .page-resources-suncity-platform-advantages__promotions-title,
  .page-resources-suncity-platform-advantages__security-title,
  .page-resources-suncity-platform-advantages__guide-title,
  .page-resources-suncity-platform-advantages__faq-title,
  .page-resources-suncity-platform-advantages__blog-title {
    font-size: 1.6em;
  }
  .page-resources-suncity-platform-advantages__video-click-hint {
    font-size: 14px;
    padding: 8px 15px;
  }
}