/* style/blog-how-to-securely-get-tydo88-official-link.css */
:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --background-color-page: #08160F; /* Page specific background, body uses shared var(--background-color) */
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;
}

.page-blog-how-to-securely-get-tydo88-official-link {
  background-color: var(--background-color-page);
  color: var(--text-main);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-blog-how-to-securely-get-tydo88-official-link__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-how-to-securely-get-tydo88-official-link__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding as body handles header offset */
  min-height: 600px;
}

.page-blog-how-to-securely-get-tydo88-official-link__hero-image {
  position: relative;
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  display: block;
  margin-bottom: 30px;
  border-radius: 10px;
}

.page-blog-how-to-securely-get-tydo88-official-link__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-how-to-securely-get-tydo88-official-link__main-title {
  color: var(--text-main);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-how-to-securely-get-tydo88-official-link__hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.page-blog-how-to-securely-get-tydo88-official-link__btn-primary,
.page-blog-how-to-securely-get-tydo88-official-link__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
}

.page-blog-how-to-securely-get-tydo88-official-link__btn-primary {
  background: var(--button-gradient);
  color: var(--text-main);
  border: none;
}

.page-blog-how-to-securely-get-tydo88-official-link__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(var(--primary-color-rgb), 0.4);
}

.page-blog-how-to-securely-get-tydo88-official-link__btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  margin-left: 15px;
}

.page-blog-how-to-securely-get-tydo88-official-link__btn-secondary:hover {
  background: var(--primary-color);
  color: var(--text-main);
  box-shadow: 0 5px 15px rgba(var(--primary-color-rgb), 0.2);
}

.page-blog-how-to-securely-get-tydo88-official-link__video-section {
  padding: 40px 20px;
  padding-top: 10px; /* Small top padding */
  text-align: center;
  background-color: var(--background-color-page);
}

.page-blog-how-to-securely-get-tydo88-official-link__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.page-blog-how-to-securely-get-tydo88-official-link__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  cursor: pointer;
}

.page-blog-how-to-securely-get-tydo88-official-link__video-link-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  cursor: pointer;
  background: transparent;
  text-decoration: none;
}

.page-blog-how-to-securely-get-tydo88-official-link__video-cta {
  margin-top: 20px;
}

.page-blog-how-to-securely-get-tydo88-official-link__content-area {
  padding: 40px 20px;
  background-color: var(--background-color-page);
}

.page-blog-how-to-securely-get-tydo88-official-link__section-title {
  color: var(--text-main);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 25px;
  text-align: center;
}

.page-blog-how-to-securely-get-tydo88-official-link__section-description,
.page-blog-how-to-securely-get-tydo88-official-link__text-block {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-how-to-securely-get-tydo88-official-link__feature-grid,
.page-blog-how-to-securely-get-tydo88-official-link__method-card-grid,
.page-blog-how-to-securely-get-tydo88-official-link__game-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-blog-how-to-securely-get-tydo88-official-link__card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-main);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-blog-how-to-securely-get-tydo88-official-link__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-securely-get-tydo88-official-link__card-title {
  color: var(--primary-color);
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-how-to-securely-get-tydo88-official-link__card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

.page-blog-how-to-securely-get-tydo88-official-link__card-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-blog-how-to-securely-get-tydo88-official-link__checklist {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-blog-how-to-securely-get-tydo88-official-link__checklist-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 20px 25px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-blog-how-to-securely-get-tydo88-official-link__checklist-item h3 {
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.page-blog-how-to-securely-get-tydo88-official-link__checklist-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

.page-blog-how-to-securely-get-tydo88-official-link__content-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px auto;
  display: block;
  max-width: 800px;
}

.page-blog-how-to-securely-get-tydo88-official-link__step-by-step {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-blog-how-to-securely-get-tydo88-official-link__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.page-blog-how-to-securely-get-tydo88-official-link__faq-list {
  margin-top: 30px;
}

.page-blog-how-to-securely-get-tydo88-official-link__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-blog-how-to-securely-get-tydo88-official-link__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  background-color: rgba(var(--primary-color-rgb), 0.1);
  list-style: none;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

.page-blog-how-to-securely-get-tydo88-official-link__faq-item[open] .page-blog-how-to-securely-get-tydo88-official-link__faq-question {
  background-color: var(--primary-color);
  color: var(--text-main);
}

.page-blog-how-to-securely-get-tydo88-official-link__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-how-to-securely-get-tydo88-official-link__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-blog-how-to-securely-get-tydo88-official-link__faq-item[open] .page-blog-how-to-securely-get-tydo88-official-link__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-how-to-securely-get-tydo88-official-link__faq-answer {
  padding: 15px 25px 20px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
  border-top: 1px solid var(--divider-color);
}

.page-blog-how-to-securely-get-tydo88-official-link__cta-bottom {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 20px;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .page-blog-how-to-securely-get-tydo88-official-link__hero-section {
    min-height: 500px;
    padding: 40px 15px;
  }

  .page-blog-how-to-securely-get-tydo88-official-link__main-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
  }

  .page-blog-how-to-securely-get-tydo88-official-link__hero-description {
    font-size: 1rem;
  }

  .page-blog-how-to-securely-get-tydo88-official-link__feature-grid,
  .page-blog-how-to-securely-get-tydo88-official-link__method-card-grid,
  .page-blog-how-to-securely-get-tydo88-official-link__game-types-grid,
  .page-blog-how-to-securely-get-tydo88-official-link__step-by-step {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-securely-get-tydo88-official-link__hero-section {
    min-height: 400px;
    padding: 30px 15px;
    padding-top: 10px !important;
  }

  .page-blog-how-to-securely-get-tydo88-official-link__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-blog-how-to-securely-get-tydo88-official-link__hero-description {
    font-size: 0.95rem;
  }

  .page-blog-how-to-securely-get-tydo88-official-link__btn-primary,
  .page-blog-how-to-securely-get-tydo88-official-link__btn-secondary,
  .page-blog-how-to-securely-get-tydo88-official-link a[class*="button"],
  .page-blog-how-to-securely-get-tydo88-official-link a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: 0 !important; /* Reset margin for single column */
  }

  .page-blog-how-to-securely-get-tydo88-official-link__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-how-to-securely-get-tydo88-official-link__video-section,
  .page-blog-how-to-securely-get-tydo88-official-link__content-area {
    padding: 20px 15px;
  }

  .page-blog-how-to-securely-get-tydo88-official-link__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .page-blog-how-to-securely-get-tydo88-official-link__text-block,
  .page-blog-how-to-securely-get-tydo88-official-link p,
  .page-blog-how-to-securely-get-tydo88-official-link li {
    font-size: 0.9rem;
  }

  .page-blog-how-to-securely-get-tydo88-official-link img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-how-to-securely-get-tydo88-official-link__section,
  .page-blog-how-to-securely-get-tydo88-official-link__card,
  .page-blog-how-to-securely-get-tydo88-official-link__container,
  .page-blog-how-to-securely-get-tydo88-official-link__video-section,
  .page-blog-how-to-securely-get-tydo88-official-link__video-container,
  .page-blog-how-to-securely-get-tydo88-official-link__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-how-to-securely-get-tydo88-official-link__card-title {
    font-size: 1.2rem;
  }

  .page-blog-how-to-securely-get-tydo88-official-link__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-blog-how-to-securely-get-tydo88-official-link__faq-answer {
    padding: 10px 20px 15px;
  }
}

@media (max-width: 480px) {
  .page-blog-how-to-securely-get-tydo88-official-link__hero-section {
    min-height: 350px;
  }

  .page-blog-how-to-securely-get-tydo88-official-link__main-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .page-blog-how-to-securely-get-tydo88-official-link__btn-primary,
  .page-blog-how-to-securely-get-tydo88-official-link__btn-secondary {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .page-blog-how-to-securely-get-tydo88-official-link__feature-grid,
  .page-blog-how-to-securely-get-tydo88-official-link__method-card-grid,
  .page-blog-how-to-securely-get-tydo88-official-link__game-types-grid,
  .page-blog-how-to-securely-get-tydo88-official-link__step-by-step {
    grid-template-columns: 1fr;
  }
}