/* Global Styles */
body {
    --wp--preset--color--black: #000000;
    --wp--preset--color--cyan-bluish-gray: #abb8c3;
    --wp--preset--color--white: #ffffff;
    --wp--preset--color--pale-pink: #f78da7;
    --wp--preset--color--vivid-red: #cf2e2e;
    --wp--preset--color--luminous-vivid-orange: #ff6900;
    --wp--preset--color--luminous-vivid-amber: #fcb900;
    --wp--preset--color--light-green-cyan: #7bdcb5;
    --wp--preset--color--vivid-green-cyan: #00d084;
    --wp--preset--color--pale-cyan-blue: #8ed1fc;
    --wp--preset--color--vivid-cyan-blue: #0693e3;
    --wp--preset--color--vivid-purple: #9b51e0;
    background-color: #393939;
    color: #fff;
  }
  
  /* Header Styles */
  header#header {
    padding: 30px 0;
    background: #00000059;
  }
  
  /* Text Alignment */
  .entry-content, .entry-content p, .entry-content h2, .entry-content h3 {
    text-align: justify;
  }
  
  /* Text Colors */
  h1, h3 {
    color: #ffce3f;
  }
  
  p {
    color: #fff;
  }
  
  .entry-content h2 {
    color: #ffce3f;
  }
  
  /* Button Styles */
  .button-text {
    position: relative;
    padding: 15px 30px;
    background-color: #fefeff;
    color: #212121;
    font-size: 20px;
    border: none;
    border-radius: 50px;
    text-transform: uppercase;
    box-shadow: -1px 11px 20px 4px rgb(128 195 243 / 48%);
    cursor: pointer;
    animation: blink 1s infinite alternate;
  }
  
  .button-text:hover {
    background-color: #2980b9;
  }
  
  .button-text::before {
    content: "\25B6"; /* Unicode character for play symbol */
    position: absolute;
    right: 25px; /* Adjusted left spacing */
    top: 50%;
    transform: translateY(-50%);
    color: darkgoldenrod;
  }
  
  .button-text span {
    padding-right: 25px; /* Adjusted padding for space between text and icon */
  }
  
  @keyframes blink {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0.5;
    }
  }
  
  /* Watch Section */
  .watch {
    text-align: center;
    margin: 20px 0;
    font-size: 18px;
    color: yellow;
  }
  
  /* Footer Styles */
  .footer-copyright {
    text-align: center;
  }
  
  /* Responsive Adjustments */
  @media screen and (max-width: 783px) {
    .heateor_sss_vertical_sharing {
      display: none !important;
    }
  }
  