/* review.css */

/* Reset Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Base Styles */
  body {
    background-color: black;
    color: white;
    font-family: 'Exo 2', sans-serif;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  

  /* Language Selector */
  .language-selector {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;
    font-size: 18px;
  }
  
  .language-option {
    cursor: pointer;
    color: white;
    margin-left: 10px;
  }
  
  .language-option.active {
    color: #a76bcf;
  }



  
  
  /* Review Container */
  .review-container {
    max-width: 512px;
    margin: 0 auto;
    padding: 20px;
  }
  
  
  .review-thumbnail {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .review-thumbnail img {
    width: 100%;
    height: auto;
  }
  
  .review-thumbnail .thumbnail-text {
    background-color: #010203;
    color: #83cc6e;
    width: 100%;
    text-align: center;
    padding: 10px;
    font-size: 24px;
  }
  
  /* Media Facts */
  .media-facts {
    margin-top: 20px;
    color: #a76bcf;
    font-size: 16px;
  }
  
  .media-facts p {
    margin: 5px 0;
  }
  
  /* Main Content */
  .review-content {
    margin-top: 20px;
  }
  
  .review-content p {
    font-size: 18px;
    line-height: 1.6;
    text-align: justify;
  }

/* Caption Style for Text Under Images */
p .image-caption {
  font-size: 14px;  /* Smaller font size */
  line-height: 1.4; /* Slightly tighter line spacing */
  text-align: center; /* Center the caption under the image */
  font-style: italic; /* Optional: Make the text italic for emphasis */
  color: #adadad; /* Optional: Use a lighter color for captions */
  margin-top: 5px; /* Add spacing between the image and caption */
}

p img {
  width: 100%;
  height: auto;
 
}
   /* Main Content Paragraph Titles*/
   .review-content-paragraph-titles{
    font-size: 20px;
    color: #83cc6e;

   }

   /*Main Content Highlights*/
   .review-content-highlights{
    color:#adadad;
   }
  
  .review-content img {
    width: 100%;
    height: auto;
    margin-top: 20px;
  }
  
  /* Language Selector Hover Effect */
  .language-option:hover {
    color: #a76bcf;
  }
  
  .spoilers {
    font-weight: bold;
    color: #ff3b5c;
  }
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .language-selector {
      justify-content: center;
    }
  
    .review-container {
      width: 90%;
    }
    .review-thumbnail .thumbnail-text {
      
      font-size: 18px;
    }

    .media-facts {
      margin-top: 10px;
     
      font-size: 14px;
    }
  }
  