/* style/blog-bodog-poker-mobile-experience.css */
:root {
  --primary-color: #F2C14E;
  --secondary-color: #FFD36B;
  --background-color: #0A0A0A;
  --card-background-color: #111111;
  --text-main-color: #FFF6D6;
  --border-color: #3A2A12;
  --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  --button-text-color: #000000; /* Adjusted for contrast */
}

.page-blog-bodog-poker-mobile-experience {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main-color);
  background-color: var(--background-color);
}

.page-blog-bodog-poker-mobile-experience__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-bodog-poker-mobile-experience__section {
  padding: 60px 0;
  text-align: center;
}

.page-blog-bodog-poker-mobile-experience__section-title {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 1.2;
}

.page-blog-bodog-poker-mobile-experience__paragraph {
  font-size: 18px;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-main-color);
}

.page-blog-bodog-poker-mobile-experience__link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-blog-bodog-poker-mobile-experience__link:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Hero Section */
.page-blog-bodog-poker-mobile-experience__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 80px; /* Small top padding, more bottom padding */
  background-color: var(--background-color);
  overflow: hidden;
}

.page-blog-bodog-poker-mobile-experience__hero-container {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-blog-bodog-poker-mobile-experience__hero-image-wrapper {
  width: 100%;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.page-blog-bodog-poker-mobile-experience__hero-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-blog-bodog-poker-mobile-experience__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 15px;
}

.page-blog-bodog-poker-mobile-experience__main-title {
  font-size: 52px;
  color: var(--text-main-color);
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.page-blog-bodog-poker-mobile-experience__subtitle {
  font-size: 22px;
  color: var(--text-main-color);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

.page-blog-bodog-poker-mobile-experience__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--button-gradient);
  color: var(--button-text-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-blog-bodog-poker-mobile-experience__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-bodog-poker-mobile-experience__cta-button--small {
  padding: 12px 30px;
  font-size: 16px;
  margin-top: 30px;
}

.page-blog-bodog-poker-mobile-experience__cta-button--secondary {
  background: var(--card-background-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  margin-left: 20px;
}

.page-blog-bodog-poker-mobile-experience__cta-button--secondary:hover {
  background: var(--primary-color);
  color: var(--button-text-color);
}

/* Grid Layout */
.page-blog-bodog-poker-mobile-experience__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-bodog-poker-mobile-experience__card {
  background-color: var(--card-background-color);
  color: var(--text-main-color);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-bodog-poker-mobile-experience__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-bodog-poker-mobile-experience__card-title {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-bodog-poker-mobile-experience__card-text {
  font-size: 16px;
  color: var(--text-main-color);
}

.page-blog-bodog-poker-mobile-experience__image-full-width {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  margin: 50px auto 0;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

/* Lists */
.page-blog-bodog-poker-mobile-experience__ordered-list,
.page-blog-bodog-poker-mobile-experience__unordered-list,
.page-blog-bodog-poker-mobile-experience__feature-list,
.page-blog-bodog-poker-mobile-experience__strategy-list,
.page-blog-bodog-poker-mobile-experience__security-features {
  list-style-type: none;
  padding: 0;
  margin: 40px auto;
  max-width: 900px;
  text-align: left;
}

.page-blog-bodog-poker-mobile-experience__ordered-list li,
.page-blog-bodog-poker-mobile-experience__unordered-list li,
.page-blog-bodog-poker-mobile-experience__feature-list li,
.page-blog-bodog-poker-mobile-experience__strategy-list li,
.page-blog-bodog-poker-mobile-experience__security-features li {
  background-color: var(--card-background-color);
  margin-bottom: 15px;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  font-size: 17px;
  color: var(--text-main-color);
}

.page-blog-bodog-poker-mobile-experience__list-title {
  color: var(--primary-color);
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-blog-bodog-poker-mobile-experience__list-text {
  color: var(--text-main-color);
  font-size: 16px;
}

.page-blog-bodog-poker-mobile-experience__feature-list li strong,
.page-blog-bodog-poker-mobile-experience__strategy-list li strong,
.page-blog-bodog-poker-mobile-experience__security-features li strong {
  color: var(--secondary-color);
  font-weight: bold;
}

/* FAQ Section */
details.page-blog-bodog-poker-mobile-experience__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--card-background-color);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
details.page-blog-bodog-poker-mobile-experience__faq-item summary.page-blog-bodog-poker-mobile-experience__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
details.page-blog-bodog-poker-mobile-experience__faq-item summary.page-blog-bodog-poker-mobile-experience__faq-question::-webkit-details-marker {
  display: none;
}
details.page-blog-bodog-poker-mobile-experience__faq-item summary.page-blog-bodog-poker-mobile-experience__faq-question:hover {
  background: #1a1a1a; /* Slightly lighter dark for hover */
}
.page-blog-bodog-poker-mobile-experience__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--text-main-color);
}
.page-blog-bodog-poker-mobile-experience__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}
details.page-blog-bodog-poker-mobile-experience__faq-item .page-blog-bodog-poker-mobile-experience__faq-answer {
  padding: 0 25px 25px;
  background: #0f0f0f; /* Slightly darker than card for answer background */
  border-radius: 0 0 10px 10px;
  text-align: left;
}
.page-blog-bodog-poker-mobile-experience__faq-answer p {
  font-size: 16px;
  color: var(--text-main-color);
  margin: 0;
}

/* Latest Blog Section */
.page-blog-bodog-poker-mobile-experience__blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-bodog-poker-mobile-experience__blog-card {
  background-color: var(--card-background-color);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  text-align: left;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-bodog-poker-mobile-experience__blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-bodog-poker-mobile-experience__blog-card-image {
  width: 100%;
  height: 225px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-bodog-poker-mobile-experience__blog-card-content {
  padding: 20px;
}

.page-blog-bodog-poker-mobile-experience__blog-card-title {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-blog-bodog-poker-mobile-experience__blog-card-title a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-blog-bodog-poker-mobile-experience__blog-card-title a:hover {
  text-decoration: underline;
}

.page-blog-bodog-poker-mobile-experience__blog-card-excerpt {
  font-size: 15px;
  color: var(--text-main-color);
  margin-bottom: 15px;
}

.page-blog-bodog-poker-mobile-experience__blog-card-date {
  font-size: 14px;
  color: #999;
}

.page-blog-bodog-poker-mobile-experience__view-all-button-wrapper {
  margin-top: 50px;
  text-align: center;
}

.page-blog-bodog-poker-mobile-experience__button-group {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-bodog-poker-mobile-experience__section-title {
    font-size: 32px;
  }
  .page-blog-bodog-poker-mobile-experience__main-title {
    font-size: 44px;
  }
  .page-blog-bodog-poker-mobile-experience__subtitle {
    font-size: 20px;
  }
  .page-blog-bodog-poker-mobile-experience__cta-button {
    padding: 16px 40px;
    font-size: 18px;
  }
  .page-blog-bodog-poker-mobile-experience__hero-image {
    border-radius: 8px;
  }
}

@media (max-width: 768px) {
  .page-blog-bodog-poker-mobile-experience__section {
    padding: 40px 0;
  }
  .page-blog-bodog-poker-mobile-experience__section-title {
    font-size: 28px;
  }
  .page-blog-bodog-poker-mobile-experience__paragraph {
    font-size: 16px;
    padding: 0 15px;
  }
  .page-blog-bodog-poker-mobile-experience__hero-section {
    padding-top: 10px !important;
    padding-bottom: 60px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-bodog-poker-mobile-experience__main-title {
    font-size: 36px;
  }
  .page-blog-bodog-poker-mobile-experience__subtitle {
    font-size: 18px;
  }
  .page-blog-bodog-poker-mobile-experience__cta-button {
    padding: 14px 35px;
    font-size: 16px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .page-blog-bodog-poker-mobile-experience__cta-button--secondary {
    margin-top: 15px;
  }
  .page-blog-bodog-poker-mobile-experience__button-group {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-blog-bodog-poker-mobile-experience__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-blog-bodog-poker-mobile-experience__card {
    padding: 20px;
    border-radius: 8px;
  }
  .page-blog-bodog-poker-mobile-experience__card-title {
    font-size: 20px;
  }
  .page-blog-bodog-poker-mobile-experience__ordered-list li,
  .page-blog-bodog-poker-mobile-experience__unordered-list li,
  .page-blog-bodog-poker-mobile-experience__feature-list li,
  .page-blog-bodog-poker-mobile-experience__strategy-list li,
  .page-blog-bodog-poker-mobile-experience__security-features li {
    padding: 20px;
    font-size: 15px;
  }
  .page-blog-bodog-poker-mobile-experience__list-title {
    font-size: 20px;
  }
  .page-blog-bodog-poker-mobile-experience__faq-item {
    border-radius: 8px;
  }
  details.page-blog-bodog-poker-mobile-experience__faq-item summary.page-blog-bodog-poker-mobile-experience__faq-question {
    padding: 15px 20px;
  }
  .page-blog-bodog-poker-mobile-experience__faq-qtext {
    font-size: 16px;
  }
  .page-blog-bodog-poker-mobile-experience__faq-toggle {
    font-size: 24px;
    width: 24px;
  }
  details.page-blog-bodog-poker-mobile-experience__faq-item .page-blog-bodog-poker-mobile-experience__faq-answer {
    padding: 0 20px 20px;
  }
  .page-blog-bodog-poker-mobile-experience__blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-blog-bodog-poker-mobile-experience__blog-card {
    border-radius: 8px;
  }
  .page-blog-bodog-poker-mobile-experience__blog-card-image {
    height: 180px;
  }
  .page-blog-bodog-poker-mobile-experience__blog-card-title {
    font-size: 18px;
  }
  .page-blog-bodog-poker-mobile-experience__blog-card-excerpt {
    font-size: 14px;
  }
  .page-blog-bodog-poker-mobile-experience img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-blog-bodog-poker-mobile-experience__container,
  .page-blog-bodog-poker-mobile-experience__card,
  .page-blog-bodog-poker-mobile-experience__section,
  .page-blog-bodog-poker-mobile-experience__hero-section,
  .page-blog-bodog-poker-mobile-experience__faq-section,
  .page-blog-bodog-poker-mobile-experience__latest-blog {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-bodog-poker-mobile-experience__image-full-width {
    border-radius: 8px;
  }
}