:root {
  --winph-primary: #F2C14E;
  --winph-secondary: #FFD36B;
  --winph-card-bg: #111111;
  --winph-background: #0A0A0A;
  --winph-text-main: #FFF6D6;
  --winph-border: #3A2A12;
  --winph-glow: #FFD36B;
  --winph-button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  --header-offset: 120px; /* Default desktop offset */
}

.page-blog-winph-platform-introduction {
  background-color: var(--winph-background);
  color: var(--winph-text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset); /* Fixed header spacing for desktop */
}

.page-blog-winph-platform-introduction__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.page-blog-winph-platform-introduction__heading {
  color: var(--winph-secondary);
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5em;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-winph-platform-introduction__paragraph {
  margin-bottom: 1em;
  font-size: 1.1em;
}

.page-blog-winph-platform-introduction__paragraph a {
  color: var(--winph-primary);
  text-decoration: underline;
}

.page-blog-winph-platform-introduction__paragraph a:hover {
  color: var(--winph-secondary);
}

.page-blog-winph-platform-introduction__btn-primary,
.page-blog-winph-platform-introduction__btn-secondary,
.page-blog-winph-platform-introduction__btn-text {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-winph-platform-introduction__btn-primary {
  background: var(--winph-button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
}

.page-blog-winph-platform-introduction__btn-primary:hover {
  background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
  box-shadow: 0 6px 20px rgba(255, 211, 107, 0.6);
}

.page-blog-winph-platform-introduction__btn-secondary {
  background-color: transparent;
  color: var(--winph-primary);
  border: 2px solid var(--winph-primary);
}

.page-blog-winph-platform-introduction__btn-secondary:hover {
  background-color: var(--winph-primary);
  color: #ffffff;
}

.page-blog-winph-platform-introduction__btn-text {
  background: none;
  border: none;
  color: var(--winph-primary);
  padding: 0;
  text-decoration: underline;
  font-size: 1em;
}

.page-blog-winph-platform-introduction__text-link {
  color: var(--winph-primary);
  text-decoration: underline;
}

.page-blog-winph-platform-introduction__text-link:hover {
  color: var(--winph-secondary);
}

.page-blog-winph-platform-introduction__btn-text:hover {
  color: var(--winph-secondary);
}

.page-blog-winph-platform-introduction img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  filter: none; /* Ensure no filter on images */
}

.page-blog-winph-platform-introduction__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 60px;
  background: var(--winph-background);
}

.page-blog-winph-platform-introduction__hero-image-wrapper {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-winph-platform-introduction__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0;
}

.page-blog-winph-platform-introduction__hero-content {
  text-align: center;
  padding: 30px 20px;
  max-width: 900px;
  z-index: 1;
  margin-top: -100px;
  background: var(--winph-background);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  position: relative;
}

.page-blog-winph-platform-introduction__hero-title {
  color: var(--winph-text-main);
  font-size: clamp(2.5em, 4vw, 3.5em);
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-blog-winph-platform-introduction__hero-description {
  color: var(--winph-text-main);
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-blog-winph-platform-introduction__hero-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.page-blog-winph-platform-introduction__section {
  padding: 60px 0;
}

.page-blog-winph-platform-introduction__introduction,
.page-blog-winph-platform-introduction__responsible-gaming,
.page-blog-winph-platform-introduction__customer-support {
  background-color: var(--winph-card-bg);
  color: var(--winph-text-main);
  border-bottom: 1px solid var(--winph-border);
}

.page-blog-winph-platform-introduction__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-winph-platform-introduction__feature-card {
  background-color: var(--winph-card-bg);
  border: 1px solid var(--winph-border);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--winph-text-main);
}

.page-blog-winph-platform-introduction__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px var(--winph-glow);
}

.page-blog-winph-platform-introduction__feature-image {
  margin-bottom: 20px;
  max-height: 250px;
  object-fit: cover;
}

.page-blog-winph-platform-introduction__feature-title {
  color: var(--winph-secondary);
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-blog-winph-platform-introduction__feature-description {
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-winph-platform-introduction__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-winph-platform-introduction__step-card {
  background-color: var(--winph-card-bg);
  border: 1px solid var(--winph-border);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  color: var(--winph-text-main);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-blog-winph-platform-introduction__step-title {
  color: var(--winph-primary);
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-blog-winph-platform-introduction__step-description {
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-winph-platform-introduction__advantage-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px auto;
  max-width: 800px;
}

.page-blog-winph-platform-introduction__list-item {
  background-color: var(--winph-card-bg);
  border: 1px solid var(--winph-border);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  font-size: 1.1em;
  color: var(--winph-text-main);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-winph-platform-introduction__list-item strong {
  color: var(--winph-primary);
  margin-right: 10px;
}

.page-blog-winph-platform-introduction__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-blog-winph-platform-introduction__faq-item {
  background-color: var(--winph-card-bg);
  border: 1px solid var(--winph-border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--winph-text-main);
}

.page-blog-winph-platform-introduction__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--winph-secondary);
  transition: background-color 0.3s ease;
}

.page-blog-winph-platform-introduction__faq-question:hover {
  background-color: rgba(255, 211, 107, 0.1);
}

.page-blog-winph-platform-introduction__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-blog-winph-platform-introduction__faq-item.active .page-blog-winph-platform-introduction__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-winph-platform-introduction__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 1em;
}

.page-blog-winph-platform-introduction__faq-item.active .page-blog-winph-platform-introduction__faq-answer {
  max-height: 1000px !important;
  padding: 15px 20px;
}

@media (max-width: 1024px) {
  .page-blog-winph-platform-introduction__hero-title {
    font-size: clamp(2em, 5vw, 3em);
  }
  .page-blog-winph-platform-introduction__heading {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-blog-winph-platform-introduction {
    padding-top: var(--header-offset, 100px) !important;
  }
}