/* style/blog-eubet-official-website-safe-reliable.css */
:root {
  --eubet-primary-color: #11A84E;
  --eubet-secondary-color: #22C768;
  --eubet-card-bg: #11271B;
  --eubet-page-bg: #08160F;
  --eubet-text-main: #F2FFF6;
  --eubet-text-secondary: #A7D9B8;
  --eubet-border-color: #2E7A4E;
  --eubet-glow-color: #57E38D;
  --eubet-gold-color: #F2C14E;
  --eubet-divider-color: #1E3A2A;
  --eubet-deep-green: #0A4B2C;
  --eubet-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-blog-eubet-official-website-safe-reliable {
  font-family: 'Arial', sans-serif;
  color: var(--eubet-text-main); /* Light text on dark body background */
  background-color: var(--eubet-page-bg);
  line-height: 1.6;
}

.page-blog-eubet-official-website-safe-reliable__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-eubet-official-website-safe-reliable__section-title {
  font-size: clamp(1.8rem, 2.5vw, 2.8rem);
  color: var(--eubet-gold-color);
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-eubet-official-website-safe-reliable__section-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--eubet-text-secondary);
  text-align: center;
  margin-bottom: 40px;
}

.page-blog-eubet-official-website-safe-reliable__text-block {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--eubet-text-main);
  margin-bottom: 20px;
}

/* Buttons */
.page-blog-eubet-official-website-safe-reliable__btn-primary,
.page-blog-eubet-official-website-safe-reliable__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  max-width: 100%; /* Ensure responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-eubet-official-website-safe-reliable__btn-primary {
  background: var(--eubet-button-gradient);
  color: var(--eubet-text-main);
  border: 2px solid transparent;
}

.page-blog-eubet-official-website-safe-reliable__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 0 15px var(--eubet-glow-color);
}

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

.page-blog-eubet-official-website-safe-reliable__btn-secondary:hover {
  background-color: var(--eubet-primary-color);
  color: var(--eubet-text-main);
  border-color: var(--eubet-primary-color);
}

/* Hero Section */
.page-blog-eubet-official-website-safe-reliable__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small decorative top padding */
  padding-bottom: 60px;
  background-color: var(--eubet-page-bg);
  overflow: hidden;
}

.page-blog-eubet-official-website-safe-reliable__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  margin-bottom: 30px;
}

.page-blog-eubet-official-website-safe-reliable__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.page-blog-eubet-official-website-safe-reliable__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 0 20px;
}

.page-blog-eubet-official-website-safe-reliable__hero-title {
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  color: var(--eubet-gold-color);
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-blog-eubet-official-website-safe-reliable__hero-description {
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  color: var(--eubet-text-secondary);
  margin-bottom: 30px;
}

.page-blog-eubet-official-website-safe-reliable__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* About Section */
.page-blog-eubet-official-website-safe-reliable__about-section {
  padding: 80px 0;
  background-color: var(--eubet-page-bg);
}

.page-blog-eubet-official-website-safe-reliable__about-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-blog-eubet-official-website-safe-reliable__about-content p {
  flex: 1;
}

.page-blog-eubet-official-website-safe-reliable__about-image {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.page-blog-eubet-official-website-safe-reliable__about-cta {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

/* Registration & Login Section */
.page-blog-eubet-official-website-safe-reliable__registration-login-section {
  padding: 80px 0;
  background-color: var(--eubet-card-bg);
}

.page-blog-eubet-official-website-safe-reliable__grid-2-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-eubet-official-website-safe-reliable__card {
  background-color: var(--eubet-card-bg);
  border: 1px solid var(--eubet-border-color);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  color: var(--eubet-text-main);
}

.page-blog-eubet-official-website-safe-reliable__card-title {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  color: var(--eubet-gold-color);
  margin-bottom: 15px;
  font-weight: bold;
}

/* Games Section */
.page-blog-eubet-official-website-safe-reliable__games-section {
  padding: 80px 0;
  background-color: var(--eubet-page-bg);
}

.page-blog-eubet-official-website-safe-reliable__games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-blog-eubet-official-website-safe-reliable__game-card .page-blog-eubet-official-website-safe-reliable__card-title {
  color: var(--eubet-gold-color);
}

.page-blog-eubet-official-website-safe-reliable__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

/* Promotions Section */
.page-blog-eubet-official-website-safe-reliable__promotions-section {
  padding: 80px 0;
  background-color: var(--eubet-card-bg);
}

.page-blog-eubet-official-website-safe-reliable__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-blog-eubet-official-website-safe-reliable__promotion-card .page-blog-eubet-official-website-safe-reliable__card-title {
  color: var(--eubet-gold-color);
}

.page-blog-eubet-official-website-safe-reliable__promotion-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-blog-eubet-official-website-safe-reliable__view-all-promotions {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

/* VIP & Affiliate Section */
.page-blog-eubet-official-website-safe-reliable__vip-affiliate-section {
  padding: 80px 0;
  background-color: var(--eubet-page-bg);
}

/* Security & Support Section */
.page-blog-eubet-official-website-safe-reliable__security-support-section {
  padding: 80px 0;
  background-color: var(--eubet-card-bg);
}

.page-blog-eubet-official-website-safe-reliable__security-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 20px;
}

/* FAQ Section */
.page-blog-eubet-official-website-safe-reliable__faq-section {
  padding: 80px 0;
  background-color: var(--eubet-page-bg);
}

.page-blog-eubet-official-website-safe-reliable__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-blog-eubet-official-website-safe-reliable__faq-item {
  background-color: var(--eubet-card-bg);
  border: 1px solid var(--eubet-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--eubet-text-main);
}

.page-blog-eubet-official-website-safe-reliable__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--eubet-gold-color);
  list-style: none;
}

.page-blog-eubet-official-website-safe-reliable__faq-question::-webkit-details-marker {
  display: none;
}

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

.page-blog-eubet-official-website-safe-reliable__faq-answer {
  padding: 0 25px 20px;
  font-size: 0.95rem;
  color: var(--eubet-text-secondary);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-blog-eubet-official-website-safe-reliable__faq-item[open] .page-blog-eubet-official-website-safe-reliable__faq-answer {
  max-height: 500px; /* Adjust as needed */
  padding-top: 10px;
}

/* Conclusion Section */
.page-blog-eubet-official-website-safe-reliable__conclusion-section {
  padding: 80px 0;
  text-align: center;
  background-color: var(--eubet-card-bg);
}

.page-blog-eubet-official-website-safe-reliable__conclusion-cta {
  margin-top: 40px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-blog-eubet-official-website-safe-reliable__about-content {
    flex-direction: column;
    text-align: center;
  }

  .page-blog-eubet-official-website-safe-reliable__about-image {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .page-blog-eubet-official-website-safe-reliable__container {
    padding: 0 15px !important;
  }

  .page-blog-eubet-official-website-safe-reliable__hero-section {
    padding-bottom: 40px;
  }

  .page-blog-eubet-official-website-safe-reliable__hero-title {
    font-size: 2.2rem;
  }

  .page-blog-eubet-official-website-safe-reliable__hero-description {
    font-size: 1rem;
  }

  .page-blog-eubet-official-website-safe-reliable__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-eubet-official-website-safe-reliable__btn-primary,
  .page-blog-eubet-official-website-safe-reliable__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-eubet-official-website-safe-reliable__section-title {
    font-size: 2rem;
  }

  .page-blog-eubet-official-website-safe-reliable__section-subtitle {
    font-size: 1rem;
  }

  .page-blog-eubet-official-website-safe-reliable__text-block {
    font-size: 0.95rem;
  }

  .page-blog-eubet-official-website-safe-reliable img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-eubet-official-website-safe-reliable video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-eubet-official-website-safe-reliable__video-section,
  .page-blog-eubet-official-website-safe-reliable__video-container,
  .page-blog-eubet-official-website-safe-reliable__video-wrapper,
  .page-blog-eubet-official-website-safe-reliable__section,
  .page-blog-eubet-official-website-safe-reliable__card,
  .page-blog-eubet-official-website-safe-reliable__container,
  .page-blog-eubet-official-website-safe-reliable__cta-buttons,
  .page-blog-eubet-official-website-safe-reliable__button-group,
  .page-blog-eubet-official-website-safe-reliable__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  
  .page-blog-eubet-official-website-safe-reliable__video-section {
    padding-top: 10px !important; /* body 已承担 --header-offset，此处禁止 var(--header-offset) */
  }

  .page-blog-eubet-official-website-safe-reliable__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-blog-eubet-official-website-safe-reliable__faq-answer {
    font-size: 0.9rem;
    padding: 0 20px 15px;
  }
}