/* style/blog-win23-official-safe-reliable.css */

/* Custom Colors */
:root {
  --win23-primary: #11A84E;
  --win23-secondary: #22C768;
  --win23-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --win23-card-bg: #11271B;
  --win23-bg: #08160F;
  --win23-text-main: #F2FFF6;
  --win23-text-secondary: #A7D9B8;
  --win23-border: #2E7A4E;
  --win23-glow: #57E38D;
  --win23-gold: #F2C14E;
  --win23-divider: #1E3A2A;
  --win23-deep-green: #0A4B2C;
}

/* Base styles for the page content */
.page-blog-win23-official-safe-reliable {
  font-family: Arial, sans-serif;
  color: var(--win23-text-main); /* Default text color for main content */
  background-color: var(--win23-bg); /* Main background color */
  line-height: 1.6;
}

.page-blog-win23-official-safe-reliable__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-win23-official-safe-reliable__section-title {
  font-size: 2.5em;
  font-weight: bold;
  color: var(--win23-text-main);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-blog-win23-official-safe-reliable__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--win23-primary);
  border-radius: 2px;
}

.page-blog-win23-official-safe-reliable__description {
  font-size: 1.1em;
  color: var(--win23-text-secondary);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
}

/* Hero Section */
.page-blog-win23-official-safe-reliable__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  overflow: hidden;
  text-align: center;
}

.page-blog-win23-official-safe-reliable__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.page-blog-win23-official-safe-reliable__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability */
}

.page-blog-win23-official-safe-reliable__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
}

.page-blog-win23-official-safe-reliable__main-title {
  font-size: clamp(2.2em, 5vw, 3.8em);
  font-weight: 900;
  color: var(--win23-text-main);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

.page-blog-win23-official-safe-reliable__hero-content .page-blog-win23-official-safe-reliable__description {
  font-size: 1.2em;
  color: var(--win23-text-secondary);
  margin-bottom: 40px;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.page-blog-win23-official-safe-reliable__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-win23-official-safe-reliable__btn-primary,
.page-blog-win23-official-safe-reliable__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.page-blog-win23-official-safe-reliable__btn-primary {
  background: var(--win23-btn-gradient);
  color: var(--win23-text-main);
  border: none;
}

.page-blog-win23-official-safe-reliable__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-blog-win23-official-safe-reliable__btn-secondary {
  background-color: transparent;
  color: var(--win23-primary);
  border: 2px solid var(--win23-primary);
}

.page-blog-win23-official-safe-reliable__btn-secondary:hover {
  background-color: var(--win23-primary);
  color: var(--win23-text-main);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* About Section */
.page-blog-win23-official-safe-reliable__about-section,
.page-blog-win23-official-safe-reliable__games-section,
.page-blog-win23-official-safe-reliable__advantages-section,
.page-blog-win23-official-safe-reliable__guide-section,
.page-blog-win23-official-safe-reliable__policy-section,
.page-blog-win23-official-safe-reliable__faq-section,
.page-blog-win23-official-safe-reliable__conclusion-section {
  padding: 80px 0;
}

.page-blog-win23-official-safe-reliable__about-section {
  background-color: var(--win23-deep-green);
}

.page-blog-win23-official-safe-reliable__content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.page-blog-win23-official-safe-reliable__content-wrapper p {
  text-align: justify;
  font-size: 1.05em;
  color: var(--win23-text-secondary);
  max-width: 900px;
}

.page-blog-win23-official-safe-reliable__image-content {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: block;
  margin-top: 30px;
}

/* Games Section */
.page-blog-win23-official-safe-reliable__games-section {
  background-color: var(--win23-bg);
}

.page-blog-win23-official-safe-reliable__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.page-blog-win23-official-safe-reliable__game-card {
  background-color: var(--win23-card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--win23-border);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-blog-win23-official-safe-reliable__game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.page-blog-win23-official-safe-reliable__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-blog-win23-official-safe-reliable__game-card .page-blog-win23-official-safe-reliable__card-title {
  font-size: 1.4em;
  font-weight: bold;
  color: var(--win23-text-main);
  margin: 20px 20px 10px 20px;
}

.page-blog-win23-official-safe-reliable__game-card .page-blog-win23-official-safe-reliable__card-title a {
  color: inherit;
  text-decoration: none;
}

.page-blog-win23-official-safe-reliable__game-card .page-blog-win23-official-safe-reliable__card-title a:hover {
  color: var(--win23-primary);
}

.page-blog-win23-official-safe-reliable__game-card .page-blog-win23-official-safe-reliable__card-text {
  font-size: 0.95em;
  color: var(--win23-text-secondary);
  padding: 0 20px 20px 20px;
  flex-grow: 1;
}

/* Advantages Section */
.page-blog-win23-official-safe-reliable__advantages-section {
  background-color: var(--win23-deep-green);
}

.page-blog-win23-official-safe-reliable__advantage-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.page-blog-win23-official-safe-reliable__advantage-item {
  background-color: var(--win23-card-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--win23-border);
}

.page-blog-win23-official-safe-reliable__advantage-title {
  font-size: 1.3em;
  font-weight: bold;
  color: var(--win23-primary);
  margin-bottom: 15px;
}

.page-blog-win23-official-safe-reliable__advantage-item p {
  color: var(--win23-text-secondary);
  font-size: 1em;
}

/* Guide Section */
.page-blog-win23-official-safe-reliable__guide-section {
  background-color: var(--win23-bg);
}

.page-blog-win23-official-safe-reliable__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 60px;
  text-align: center;
}

.page-blog-win23-official-safe-reliable__step-item {
  background-color: var(--win23-card-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--win23-border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-blog-win23-official-safe-reliable__step-title {
  font-size: 1.4em;
  font-weight: bold;
  color: var(--win23-text-main);
  margin-bottom: 15px;
}

.page-blog-win23-official-safe-reliable__step-item p {
  color: var(--win23-text-secondary);
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-blog-win23-official-safe-reliable__guide-section .page-blog-win23-official-safe-reliable__image-content {
  margin-top: 60px;
}

/* Policy Section */
.page-blog-win23-official-safe-reliable__policy-section {
  background-color: var(--win23-deep-green);
}

.page-blog-win23-official-safe-reliable__policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.page-blog-win23-official-safe-reliable__policy-item {
  background-color: var(--win23-card-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--win23-border);
  text-align: center;
}

.page-blog-win23-official-safe-reliable__policy-title {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 15px;
}

.page-blog-win23-official-safe-reliable__policy-title a {
  color: var(--win23-primary);
  text-decoration: none;
}

.page-blog-win23-official-safe-reliable__policy-title a:hover {
  text-decoration: underline;
}

.page-blog-win23-official-safe-reliable__policy-item p {
  color: var(--win23-text-secondary);
  font-size: 0.95em;
}

/* FAQ Section */
.page-blog-win23-official-safe-reliable__faq-section {
  background-color: var(--win23-bg);
}

.page-blog-win23-official-safe-reliable__faq-list {
  max-width: 900px;
  margin: 60px auto 0 auto;
}

.page-blog-win23-official-safe-reliable__faq-item {
  background-color: var(--win23-card-bg);
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--win23-border);
  overflow: hidden;
}

.page-blog-win23-official-safe-reliable__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: var(--win23-text-main);
  transition: background-color 0.3s ease;
}

.page-blog-win23-official-safe-reliable__faq-question:hover {
  background-color: rgba(var(--win23-primary), 0.1);
}

.page-blog-win23-official-safe-reliable__faq-qtext {
  flex-grow: 1;
}

.page-blog-win23-official-safe-reliable__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--win23-primary);
}

.page-blog-win23-official-safe-reliable__faq-item[open] .page-blog-win23-official-safe-reliable__faq-toggle {
  content: '−';
}

.page-blog-win23-official-safe-reliable__faq-answer {
  padding: 0 25px 20px 25px;
  color: var(--win23-text-secondary);
  font-size: 1em;
  line-height: 1.7;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-blog-win23-official-safe-reliable__faq-item:not([open]) .page-blog-win23-official-safe-reliable__faq-answer {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}

.page-blog-win23-official-safe-reliable__faq-item[open] .page-blog-win23-official-safe-reliable__faq-answer {
  max-height: 500px; /* Adjust as needed for content */
}

.page-blog-win23-official-safe-reliable__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-win23-official-safe-reliable__faq-item summary {
  list-style: none;
}

/* Conclusion Section */
.page-blog-win23-official-safe-reliable__conclusion-section {
  padding-bottom: 80px;
  background-color: var(--win23-deep-green);
}

.page-blog-win23-official-safe-reliable__conclusion-section .page-blog-win23-official-safe-reliable__description {
  margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-win23-official-safe-reliable__section-title {
    font-size: 2em;
  }
  .page-blog-win23-official-safe-reliable__description {
    font-size: 1em;
    margin-bottom: 40px;
  }
  .page-blog-win23-official-safe-reliable__game-grid,
  .page-blog-win23-official-safe-reliable__advantage-list,
  .page-blog-win23-official-safe-reliable__guide-steps,
  .page-blog-win23-official-safe-reliable__policy-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .page-blog-win23-official-safe-reliable {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-win23-official-safe-reliable__hero-section {
    min-height: 500px;
    padding-bottom: 40px;
  }

  .page-blog-win23-official-safe-reliable__main-title {
    font-size: clamp(2em, 8vw, 3em);
  }

  .page-blog-win23-official-safe-reliable__hero-content .page-blog-win23-official-safe-reliable__description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-blog-win23-official-safe-reliable__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-win23-official-safe-reliable__btn-primary,
  .page-blog-win23-official-safe-reliable__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-win23-official-safe-reliable__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-blog-win23-official-safe-reliable__description {
    margin-bottom: 40px;
  }

  .page-blog-win23-official-safe-reliable__about-section,
  .page-blog-win23-official-safe-reliable__games-section,
  .page-blog-win23-official-safe-reliable__advantages-section,
  .page-blog-win23-official-safe-reliable__guide-section,
  .page-blog-win23-official-safe-reliable__policy-section,
  .page-blog-win23-official-safe-reliable__faq-section,
  .page-blog-win23-official-safe-reliable__conclusion-section {
    padding: 50px 0;
  }

  .page-blog-win23-official-safe-reliable__game-grid,
  .page-blog-win23-official-safe-reliable__advantage-list,
  .page-blog-win23-official-safe-reliable__guide-steps,
  .page-blog-win23-official-safe-reliable__policy-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .page-blog-win23-official-safe-reliable__game-card,
  .page-blog-win23-official-safe-reliable__advantage-item,
  .page-blog-win23-official-safe-reliable__step-item,
  .page-blog-win23-official-safe-reliable__policy-item,
  .page-blog-win23-official-safe-reliable__faq-item {
    padding: 20px;
  }

  .page-blog-win23-official-safe-reliable__card-image {
    height: 180px;
  }

  .page-blog-win23-official-safe-reliable__image-content {
    margin-top: 40px;
  }

  /* Image responsiveness */
  .page-blog-win23-official-safe-reliable img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Container responsiveness */
  .page-blog-win23-official-safe-reliable__hero-section,
  .page-blog-win23-official-safe-reliable__about-section,
  .page-blog-win23-official-safe-reliable__games-section,
  .page-blog-win23-official-safe-reliable__advantages-section,
  .page-blog-win23-official-safe-reliable__guide-section,
  .page-blog-win23-official-safe-reliable__policy-section,
  .page-blog-win23-official-safe-reliable__faq-section,
  .page-blog-win23-official-safe-reliable__conclusion-section,
  .page-blog-win23-official-safe-reliable__container,
  .page-blog-win23-official-safe-reliable__game-card,
  .page-blog-win23-official-safe-reliable__advantage-item,
  .page-blog-win23-official-safe-reliable__step-item,
  .page-blog-win23-official-safe-reliable__policy-item,
  .page-blog-win23-official-safe-reliable__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no horizontal scroll */
  }

  .page-blog-win23-official-safe-reliable__hero-section {
    padding-top: 10px !important;
  }
}

/* Contrast Fixes - Apply as needed if issues detected */
.page-blog-win23-official-safe-reliable__contrast-fix {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
}

.page-blog-win23-official-safe-reliable__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}