.page-reviews-guides-betting-strategy-sharing {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

.page-reviews-guides-betting-strategy-sharing h1, .page-reviews-guides-betting-strategy-sharing h2, .page-reviews-guides-betting-strategy-sharing h3 {
  color: #007bff;
  margin-bottom: 15px;
}

.page-reviews-guides-betting-strategy-sharing h1 {
  font-size: 2.8em;
  text-align: center;
  color: #0056b3; /* Darker blue for better contrast on hero */
}

.page-reviews-guides-betting-strategy-sharing h2 {
  font-size: 2.2em;
  border-bottom: 2px solid #ffc107;
  padding-bottom: 10px;
  margin-top: 40px;
}

.page-reviews-guides-betting-strategy-sharing h3 {
  font-size: 1.6em;
  color: #007bff;
  margin-top: 25px;
}

.page-reviews-guides-betting-strategy-sharing__hero {
  background: linear-gradient(135deg, #007bff 0%, #4da3ff 100%);
  color: #fff;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-reviews-guides-betting-strategy-sharing__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-reviews-guides-betting-strategy-sharing__hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0f2ff;
}

.page-reviews-guides-betting-strategy-sharing__hero-image {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.2;
  z-index: 0;
  max-width: 500px;
}

.page-reviews-guides-betting-strategy-sharing__hero-image img {
  width: 100%;
  height: auto;
}

.page-reviews-guides-betting-strategy-sharing__cta-button {
  display: inline-block;
  background-color: #ffc107;
  color: #333;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-reviews-guides-betting-strategy-sharing__cta-button:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

.page-reviews-guides-betting-strategy-sharing__cta-button--secondary {
  background-color: #007bff;
  color: #fff;
}

.page-reviews-guides-betting-strategy-sharing__cta-button--secondary:hover {
  background-color: #0056b3;
}

.page-reviews-guides-betting-strategy-sharing__section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.page-reviews-guides-betting-strategy-sharing__section:last-of-type {
  border-bottom: none;
}

.page-reviews-guides-betting-strategy-sharing__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-reviews-guides-betting-strategy-sharing__introduction p {
  font-size: 1.1em;
  margin-bottom: 15px;
}

.page-reviews-guides-betting-strategy-sharing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-reviews-guides-betting-strategy-sharing__grid-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-reviews-guides-betting-strategy-sharing__grid-item img {
  max-width: 100%;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-reviews-guides-betting-strategy-sharing__grid-item h3 {
  color: #007bff;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-reviews-guides-betting-strategy-sharing__section article {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.page-reviews-guides-betting-strategy-sharing__section article:last-of-type {
  margin-bottom: 0;
}

.page-reviews-guides-betting-strategy-sharing__section article h3 {
  color: #007bff;
  margin-top: 0;
}

.page-reviews-guides-betting-strategy-sharing__section ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-reviews-guides-betting-strategy-sharing__section ul li {
  margin-bottom: 8px;
  color: #555;
}

.page-reviews-guides-betting-strategy-sharing__section article img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.page-reviews-guides-betting-strategy-sharing__floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #ffc107;
  color: #333;
  padding: 15px 25px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 1000;
  animation: floatEffect 2s ease-in-out infinite;
}

.page-reviews-guides-betting-strategy-sharing__floating-cta p {
  margin: 0;
  font-weight: bold;
  font-size: 1.1em;
}

.page-reviews-guides-betting-strategy-sharing__floating-button {
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-reviews-guides-betting-strategy-sharing__floating-button:hover {
  background-color: #0056b3;
}

@keyframes floatEffect {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

@media (max-width: 768px) {
  .page-reviews-guides-betting-strategy-sharing h1 {
    font-size: 2em;
  }
  .page-reviews-guides-betting-strategy-sharing h2 {
    font-size: 1.8em;
  }
  .page-reviews-guides-betting-strategy-sharing__hero {
    padding: 60px 15px;
  }
  .page-reviews-guides-betting-strategy-sharing__hero p {
    font-size: 1em;
  }
  .page-reviews-guides-betting-strategy-sharing__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-reviews-guides-betting-strategy-sharing__section {
    padding: 40px 0;
  }
  .page-reviews-guides-betting-strategy-sharing__grid {
    grid-template-columns: 1fr;
  }
  .page-reviews-guides-betting-strategy-sharing__floating-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 15px;
    bottom: 10px;
    right: 10px;
    width: calc(100% - 40px);
    border-radius: 10px;
  }
  .page-reviews-guides-betting-strategy-sharing__floating-cta p {
    font-size: 0.9em;
    margin-bottom: 10px;
  }
  .page-reviews-guides-betting-strategy-sharing__floating-button {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .page-reviews-guides-betting-strategy-sharing h1 {
    font-size: 1.8em;
  }
  .page-reviews-guides-betting-strategy-sharing h2 {
    font-size: 1.6em;
  }
  .page-reviews-guides-betting-strategy-sharing__hero-image {
    display: none;
  }
}