  body {
    background-color: #000;
    color: #fff;
    font-family: "Segoe UI", Arial, sans-serif;
    display: flex;
    justify-content: center;
    padding: 20px;
  }

  .page-container {
    width: 750px;
  }

  /* ===== HEADER ===== */
  header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    height: 200px;
  }

  .logo-area {
    width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .logo img {
    width: 180px;
    height: 200px;
    display: block;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px rgba(0, 191, 255, 0.4));
  }

  .nav-links {
    width: 750px;
    margin: auto;
    margin-top: 20px;
    text-align: center;
  }

  .nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-block;
    margin: 3px 6px;
  }

  .nav-links a:hover {
    text-decoration: underline;
  }

  .header-right {
    flex: 1;
    text-align: center;
    margin-left: 20px;
  }

  .header-right img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #333;
  }

  .site-title {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #00bfff, #7ae8ff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 12px rgba(0, 191, 255, 0.25);
    border-bottom: 2px solid rgba(0, 191, 255, 0.4);
    padding-bottom: 6px;
    margin-bottom: 12px;
    margin-top: 10px;
    position: relative;
    display: inline-block;
  }

  .site-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 40%;
    height: 2px;
    background: linear-gradient(90deg, #00bfff, transparent);
    border-radius: 4px;
    animation: glowline 4s ease-in-out infinite;
  }

  @keyframes glowline {
    0%, 100% {
      width: 40%;
      opacity: 0.8;
    }
    50% {
      width: 60%;
      opacity: 1;
    }
  }

  /* ===== MAIN CONTENT ===== */
  main {
    background: #111;
    border: 1px solid #444;
    padding: 15px;
    text-align: justify;
    line-height: 1.6;
    margin-top: 100px;
    position: relative;
  }

  main strong {
    color: #00bfff;
    font-size: 1.1rem;
  }

  .top-section {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 20px;
  }

  .adbygoogle {
    flex: 1;
    height: 400px;
    width: 400px;
    border: 0px solid #555;
    color: #aaa;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0d0d0d;
  }

  .celeb-image {
    flex: 1;
    height: 400px;
    width: 350px;
    border-radius: 8px;
    border: 1px solid #333;
    object-fit: cover;
  }
  .ad-bottom-right {
    float: right;
    width: 370px;
    height: 350px;
    border: 0px dashed #555;
    color: #aaa;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0d0d0d;
    margin: 15px 0 0 15px;
  }

  .clear {
    clear: both;
  }

  footer {
    border-top: 1px solid #333;
    padding-top: 10px;
    font-size: 0.9rem;
    color: #888;
    margin-top: 20px;
    text-align: center;
  }

  footer a {
    color: white;
    text-decoration: none;
    margin: 0 5px;
    line-height: 1.6;
  }

  footer a:hover {
    text-decoration: underline;
  }

 /* ===== GALLERY SECTIONS ===== */
.gallery-section {
  margin: 40px 0;
  text-align: center;
}

.gallery-section h2 {
  color: #00bfff;
  margin-bottom: 15px;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Tight Flexbox gallery */
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0px;               /* No gap between items */
  margin: 0 auto;
  
  width: 100%;
}

/* Each image block */
.gallery-grid a {
  display: block;
  width: 20%;           /* 5 per row */
          /* Remove border to eliminate tiny gaps */
  margin: 0;
  margin-top: 17px;
  padding: 0;
  box-sizing: border-box;
}

.gallery-grid img {
  width: 90%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

/* Responsive breakpoints */
@media (max-width: 900px) {
  .gallery-grid a {
    width: 33.333%; /* 3 per row */
  }
}

@media (max-width: 600px) {
  .gallery-grid a {
    width: 50%; /* 2 per row */
  }
}
