/* Main container with a slight background to separate from the page */
.review-container { 
    max-width: 850px; 
    margin: 0 auto; 
    padding: 40px 20px; 
    line-height: 1.8; /* Increased line height for easier tracking */
    color: #FFFFFF; /* Pure white for maximum contrast */
    background-color: #121212; /* Deep dark grey, easier on eyes than pure black */
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* Headers need to be bold and bright */
h1, h2, h3 {
    color: #FFD700; /* Gold/Yellow stands out perfectly on dark themes */
    margin-top: 1.5em;
    font-weight: 800;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    text-align: center;
}

.the-fountain{
     object-fit: fill;
      max-width: 850px; 
}
h1 { font-size: 2.5rem; line-height: 1.2; }

/* Paragraphs - using an off-white/light-grey for long reading */
p {
    font-size: 1.1rem;
    color: #E0E0E0; 
    margin-bottom: 1.5em;
}

img{
    max-width: 100%;
   height: auto;
   display: block;
   margin: auto;
   width: 100%;
}

.bigger-image {
  width: 750px; /* or a percentage, e.g., 50% */
  height: auto; /* automatically calculates height to maintain aspect ratio */
}

/* Enhancing the Summary Table Readability */
.summary-table { 
    width: 100%; 
    background: #1e1e1e; 
    color: #fff;
    border: 1px solid #444;
}

.summary-table td { 
    padding: 15px; 
    border-bottom: 1px solid #333;
    font-size: 1rem;
}

.summary-table th {
    background-color: #FFD700; /* Gold header */
    color: #000; /* Black text on gold is highly readable */
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Making the "Pros and Cons" much clearer */
.pros, .cons {
    padding: 20px;
    border-radius: 8px;
    background: rgba(255,255,255,0.05); /* Subtle box to group text */
}

.pros li { color: #ffcc00; margin-bottom: 10px; } /* Bright Green */
.cons li { color: #ffcc00 ; margin-bottom: 10px; } /* Bright Red */

/* The Verdict Box needs to stand out */
.verdict-box { 
    background: #2c2c2c; 
    border-left: 6px solid #FFD700; 
    padding: 25px; 
    margin: 30px 0;
    font-size: 1.2rem;
    color: #fff;
}

        .review-container { max-width: 800px; margin: 0 auto; padding: 20px; line-height: 1.6; color: white; }
        .verdict-box { background: #1a1a1a; border-left: 5px solid #f39c12; padding: 20px; margin: 20px 0; border-radius: 4px; }
        .highlight-grid { display: grid; grid-template-columns: repeat(auto-fit, min-minmax(250px, 1fr)); gap: 20px; margin: 20px 0; }
        .highlight-card { background: #0a0808; padding: 15px; border-radius: 8px; border: 1px solid #ddd; }
        .summary-table { width: 100%; border-collapse: collapse; margin: 30px 0; background: #1a1a1a; }
        .summary-table th, .summary-table td { border: 1px solid #FFD700; padding: 12px; text-align: left; }
        .summary-table th { background-color: #1a1a1a; color: white; }
        .pro-con-container { display: flex; gap: 40px; flex-wrap: wrap; }

        .map-container { margin: 30px 0; border-radius: 8px; overflow: hidden; }
        blockquote { font-style: italic; border-left: 3px solid #ccc; margin: 20px 0; padding-left: 20px; color: #555; }
        .rating-tag { font-weight: bold; color: #FFD700; }

.okada
{
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%; /* Optional: set a specific width */

}