/* style/blog-unveiling-the-magic-of-777-slots.css */

:root {
  --primary-color: #FFFFFF;
  --secondary-color: #025BE8;
  --text-color: #404040;
  --register-button-color: #1266EC;
  --login-button-color: #E5EEFD;
  --background-color: #F3F3F3;
  --footer-background-color: #191E2D;
  --header-offset: 120px; /* Default desktop offset */
}

.page-blog-unveiling-the-magic-of-777-slots {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
  padding-top: var(--header-offset); /* Ensure content is not hidden by fixed header */
}

.page-blog-unveiling-the-magic-of-777-slots__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-unveiling-the-magic-of-777-slots__hero-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  min-height: 500px; /* Ensure a decent height for the hero */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  padding-bottom: 40px;
}

.page-blog-unveiling-the-magic-of-777-slots__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.page-blog-unveiling-the-magic-of-777-slots__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6); /* Darken image for better text contrast */
}

.page-blog-unveiling-the-magic-of-777-slots__hero-content-wrapper {
  position: relative;
  z-index: 2;
  padding-top: 50px;
  padding-bottom: 20px;
  color: var(--primary-color);
  max-width: 800px;
  margin: 0 auto;
}

.page-blog-unveiling-the-magic-of-777-slots__main-title {
  font-size: clamp(2em, 5vw, 3.5em); /* Responsive font size for H1 */
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--primary-color);
}

.page-blog-unveiling-the-magic-of-777-slots__intro-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: var(--primary-color);
}

.page-blog-unveiling-the-magic-of-777-slots__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-unveiling-the-magic-of-777-slots__cta-button--primary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--secondary-color);
}

.page-blog-unveiling-the-magic-of-777-slots__cta-button--primary:hover {
  background-color: #0045B3;
  border-color: #0045B3;
}

.page-blog-unveiling-the-magic-of-777-slots__cta-button--secondary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-blog-unveiling-the-magic-of-777-slots__cta-button--secondary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.page-blog-unveiling-the-magic-of-777-slots__section {
  padding: 40px 0;
}

.page-blog-unveiling-the-magic-of-777-slots__section--blue-bg {
  background-color: var(--secondary-color);
}

.page-blog-unveiling-the-magic-of-777-slots__heading {
  font-size: 2.5em;
  margin-bottom: 25px;
  text-align: center;
  color: var(--text-color);
}

.page-blog-unveiling-the-magic-of-777-slots__heading--white {
  color: var(--primary-color);
}

.page-blog-unveiling-the-magic-of-777-slots__sub-heading {
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--text-color);
}

.page-blog-unveiling-the-magic-of-777-slots__sub-heading--white {
  color: var(--primary-color);
}

.page-blog-unveiling-the-magic-of-777-slots__paragraph {
  margin-bottom: 20px;
  color: #404040; /* Default text color for light backgrounds */
}

.page-blog-unveiling-the-magic-of-777-slots__paragraph--white {
  color: var(--primary-color);
}

.page-blog-unveiling-the-magic-of-777-slots__content-block {
  margin-bottom: 30px;
  background-color: var(--primary-color);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-blog-unveiling-the-magic-of-777-slots__section--blue-bg .page-blog-unveiling-the-magic-of-777-slots__content-block {
  background-color: rgba(255, 255, 255, 0.15); /* Semi-transparent white for contrast on blue background */
  color: var(--primary-color);
  box-shadow: none;
}

.page-blog-unveiling-the-magic-of-777-slots__section--blue-bg .page-blog-unveiling-the-magic-of-777-slots__content-block .page-blog-unveiling-the-magic-of-777-slots__sub-heading {
  color: var(--primary-color);
}

.page-blog-unveiling-the-magic-of-777-slots__section--blue-bg .page-blog-unveiling-the-magic-of-777-slots__content-block .page-blog-unveiling-the-magic-of-777-slots__paragraph {
  color: var(--primary-color);
}

.page-blog-unveiling-the-magic-of-777-slots__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce minimum image size */
  min-height: 200px; /* Enforce minimum image size */
}

.page-blog-unveiling-the-magic-of-777-slots__section--conclusion {
  text-align: center;
  padding-top: 60px;
  padding-bottom: 60px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-blog-unveiling-the-magic-of-777-slots {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .page-blog-unveiling-the-magic-of-777-slots__hero-section {
    min-height: 400px;
    padding-bottom: 20px;
  }

  .page-blog-unveiling-the-magic-of-777-slots__hero-content-wrapper {
    padding-top: 30px;
  }

  .page-blog-unveiling-the-magic-of-777-slots__main-title {
    font-size: clamp(1.8em, 8vw, 2.5em);
  }

  .page-blog-unveiling-the-magic-of-777-slots__intro-text {
    font-size: 1em;
  }

  .page-blog-unveiling-the-magic-of-777-slots__cta-button {
    padding: 12px 20px;
    font-size: 0.9em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-top: 10px;
  }

  .page-blog-unveiling-the-magic-of-777-slots__section {
    padding: 30px 0;
  }

  .page-blog-unveiling-the-magic-of-777-slots__heading {
    font-size: 2em;
    margin-bottom: 20px;
  }

  .page-blog-unveiling-the-magic-of-777-slots__sub-heading {
    font-size: 1.5em;
    margin-top: 25px;
  }

  .page-blog-unveiling-the-magic-of-777-slots__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 15px auto;
  }

  .page-blog-unveiling-the-magic-of-777-slots__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-unveiling-the-magic-of-777-slots__content-block {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .page-blog-unveiling-the-magic-of-777-slots__main-title {
    font-size: clamp(1.5em, 9vw, 2em);
  }
}