/* style/blog-top-features-of-365ball.css */

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

.page-blog-top-features-of-365ball {
  font-family: Arial, sans-serif;
  color: var(--text-main);
  background-color: var(--background-color);
  line-height: 1.6;
}

.page-blog-top-features-of-365ball__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0;
  text-align: center;
  overflow: hidden;
  background-color: var(--deep-green-color);
}

.page-blog-top-features-of-365ball__hero-image-wrapper {
  width: 100%;
  max-height: 675px;
  overflow: hidden;
}

.page-blog-top-features-of-365ball__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly dim the image for text readability */
}

.page-blog-top-features-of-365ball__hero-content {
  max-width: 900px;
  margin-top: 40px;
  padding: 0 20px;
}

.page-blog-top-features-of-3365ball__main-title {
  color: var(--gold-color);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-blog-top-features-of-365ball__subtitle {
  color: var(--text-secondary);
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-blog-top-features-of-365ball__btn-primary,
.page-blog-top-features-of-365ball__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
}

.page-blog-top-features-of-365ball__btn-primary {
  background: var(--button-gradient);
  color: var(--text-main);
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-top-features-of-365ball__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  filter: brightness(1.1);
}

.page-blog-top-features-of-365ball__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  margin-left: 15px;
}

.page-blog-top-features-of-365ball__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-main);
  transform: translateY(-2px);
}

.page-blog-top-features-of-365ball__dark-bg {
  background-color: var(--background-color);
  color: var(--text-main);
}

.page-blog-top-features-of-365ball__content-area,
.page-blog-top-features-of-365ball__why-choose-us,
.page-blog-top-features-of-365ball__call-to-action,
.page-blog-top-features-of-365ball__faq-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.page-blog-top-features-of-365ball__section-title {
  color: var(--gold-color);
  font-size: 2.5em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-top-features-of-365ball__section-description {
  color: var(--text-secondary);
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-top-features-of-365ball__feature-grid,
.page-blog-top-features-of-365ball__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-blog-top-features-of-365ball__feature-card,
.page-blog-top-features-of-365ball__benefit-card,
.page-blog-top-features-of-365ball__card {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  text-align: left;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-top-features-of-365ball__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.page-blog-top-features-of-365ball__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  filter: brightness(0.8);
}

.page-blog-top-features-of-365ball__card-title {
  font-size: 1.6em;
  color: var(--text-main);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-top-features-of-365ball__card-title a {
  color: var(--text-main);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-top-features-of-365ball__card-title a:hover {
  color: var(--gold-color);
}

.page-blog-top-features-of-365ball__card-text {
  color: var(--text-secondary);
  font-size: 1em;
}

.page-blog-top-features-of-365ball__video-section {
  padding: 60px 20px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.page-blog-top-features-of-365ball__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  margin-top: 40px;
  width: 100%; /* Ensure desktop also has 100% width */
}

.page-blog-top-features-of-365ball__video-link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.page-blog-top-features-of-365ball__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.page-blog-top-features-of-365ball__cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-top-features-of-365ball__faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-blog-top-features-of-365ball__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-blog-top-features-of-365ball__faq-item[open] {
  background-color: var(--deep-green-color);
}

.page-blog-top-features-of-365ball__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--text-main);
  cursor: pointer;
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-blog-top-features-of-365ball__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-top-features-of-365ball__faq-question:hover {
  background-color: rgba(var(--primary-color), 0.1);
}

.page-blog-top-features-of-365ball__faq-toggle {
  font-size: 1.5em;
  color: var(--gold-color);
  margin-left: 15px;
}

.page-blog-top-features-of-365ball__faq-answer {
  padding: 0 25px 20px;
  color: var(--text-secondary);
  font-size: 1em;
  line-height: 1.6;
}

.page-blog-top-features-of-365ball__faq-answer p {
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-top-features-of-365ball__section-title {
    font-size: 2em;
  }
  .page-blog-top-features-of-365ball__main-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-blog-top-features-of-365ball {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-top-features-of-365ball__hero-section {
    padding-bottom: 40px;
  }

  .page-blog-top-features-of-365ball__main-title {
    font-size: 1.8em;
    padding: 0 10px;
  }

  .page-blog-top-features-of-365ball__subtitle {
    font-size: 1em;
    padding: 0 10px;
  }

  .page-blog-top-features-of-365ball__btn-primary,
  .page-blog-top-features-of-365ball__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-bottom: 15px;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-blog-top-features-of-365ball__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 0 20px;
  }

  .page-blog-top-features-of-365ball__content-area,
  .page-blog-top-features-of-365ball__why-choose-us,
  .page-blog-top-features-of-365ball__call-to-action,
  .page-blog-top-features-of-365ball__faq-section,
  .page-blog-top-features-of-365ball__video-section {
    padding: 30px 15px;
  }

  .page-blog-top-features-of-365ball__section-title {
    font-size: 1.8em;
  }

  .page-blog-top-features-of-365ball__section-description {
    font-size: 0.95em;
  }

  .page-blog-top-features-of-365ball__feature-grid,
  .page-blog-top-features-of-365ball__benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-top-features-of-365ball__card-image {
    height: 180px;
  }

  .page-blog-top-features-of-365ball__card-title {
    font-size: 1.4em;
  }

  /* Mobile image responsiveness */
  .page-blog-top-features-of-365ball img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* All image/video containers */
  .page-blog-top-features-of-365ball__hero-image-wrapper,
  .page-blog-top-features-of-365ball__feature-card,
  .page-blog-top-features-of-365ball__benefit-card,
  .page-blog-top-features-of-365ball__card,
  .page-blog-top-features-of-365ball__video-wrapper,
  .page-blog-top-features-of-365ball__video-section,
  .page-blog-top-features-of-365ball__video-container,
  .page-blog-top-features-of-365ball__video-link {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-blog-top-features-of-365ball__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  .page-blog-top-features-of-365ball__faq-answer {
    padding: 0 20px 15px;
  }
}