* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
     .content a {
  color: #4fc3f7;       /* Light blue (good contrast on dark bg) */
  text-decoration: none; /* Remove underline */
  font-weight: bold;     /* Make it stand out */
}

.content a:hover {
  color: #81d4fa;        /* Brighter on hover */
  text-decoration: underline;
}

/* Image container styling */
.content .image-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0;                     /* space above and below */
  padding: 10px;
  background: rgba(255, 255, 255, 0.03); /* slight background */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;                /* rounded edges */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Thumbnail images */
.content .image-box img {
  max-width: 300px;       /* smaller thumbnail width */
  cursor: pointer;        /* make it clickable */
  border-radius: 12px;
  display: block;
  transition: transform 0.3s ease;
}

.content .image-box img:hover {
  transform: scale(1.05);
}

/* Fullscreen image overlay */
.fullscreen-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.fullscreen-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
}

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
      color: #ffffff;
      line-height: 1.7;
      overflow-x: hidden;
      min-height: 100vh;
    }

    /* Animated background */
    body::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.01) 0%, transparent 30%);
      animation: float 30s ease-in-out infinite;
      pointer-events: none;
      z-index: -1;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0px) rotate(0deg); }
      50% { transform: translateY(-10px) rotate(0.5deg); }
    }

    /* Header Styles */
    header {
      position: fixed;
      top: 0;
      width: 100%;
      background: rgba(10, 10, 10, 0.95);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      z-index: 1000;
      transition: all 0.3s ease;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 5%;
      height: 70px;
    }

    header .logo {
      font-family: 'JetBrains Mono', monospace;
      font-size: 1.6rem;
      font-weight: 600;
      color: #ffffff;
      text-decoration: none;
      position: relative;
    }

    nav ul {
      display: flex;
      list-style: none;
      gap: 2rem;
      align-items: center;
      margin: 0;
      padding: 0;
    }

    nav a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      font-weight: 500;
      padding: 0.5rem 1rem;
      border-radius: 20px;
      transition: all 0.3s ease;
      font-size: 0.95rem;
    }

    nav a:hover,
    nav a.active {
      color: #ffffff;
      background: rgba(255, 255, 255, 0.1);
      transform: translateY(-1px);
    }

    .menu-toggle {
      display: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: #ffffff;
      background: none;
      border: none;
      padding: 0.5rem;
      z-index: 1001;
    }

    /* Container - Enhanced Design */
    .container { 
      max-width: 900px; 
      margin: 100px auto 0; 
      padding: 40px; 
      background: rgba(255, 255, 255, 0.03);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
      position: relative;
    }

    .container::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.01)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
      border-radius: 20px;
      pointer-events: none;
      opacity: 0.3;
    }

    /* Post Image - Enhanced */
    .post-img { 
      width: 100%; 
      border-radius: 15px; 
      margin-bottom: 30px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      transition: all 0.3s ease;
    }

    .post-img:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    }

    /* Title - Keep Original */
    h1 { 
      margin-bottom: 20px;
      color: #ffffff;
      font-weight: 700;
      position: relative;
      z-index: 2;
      font-size: clamp(1.8rem, 4vw, 2.5rem);
      line-height: 1.3;
    }

    /* Date - Enhanced */
    .date { 
      font-size: 14px; 
      color: rgba(255, 255, 255, 0.7); 
      margin-bottom: 30px;
      font-family: 'JetBrains Mono', monospace;
      padding: 8px 15px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 20px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      display: inline-block;
      position: relative;
      z-index: 2;
    }

    /* Content - Enhanced */
    .content { 
      white-space: pre-wrap; 
      font-size: 18px; 
      color: rgba(255, 255, 255, 0.9);
      line-height: 1.8;
      background: rgba(255, 255, 255, 0.02);
      padding: 30px;
      border-radius: 15px;
      border: 1px solid rgba(255, 255, 255, 0.05);
      margin-bottom: 40px;
      position: relative;
      z-index: 2;
    }

    /* Comments Section - Enhanced */
    .comments { 
      margin-top: 50px;
      background: rgba(255, 255, 255, 0.02);
      padding: 30px;
      border-radius: 15px;
      border: 1px solid rgba(255, 255, 255, 0.05);
      position: relative;
      z-index: 2;
    }

    .comments h3 { 
      margin-bottom: 25px;
      color: #ffffff;
      font-size: 1.5rem;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .comments h3::before {
      content: '💬';
      font-size: 1.2rem;
    }

    /* Comment Box - Enhanced */
    .comment-box { 
      margin-bottom: 20px;
      background: rgba(255, 255, 255, 0.05);
      padding: 20px;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.3s ease;
    }

    .comment-box:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.15);
      transform: translateY(-2px);
    }

    .comment-box strong { 
      display: block; 
      font-size: 16px;
      color: #ffffff;
      margin-bottom: 8px;
      font-weight: 600;
    }

    .comment-box p { 
      margin: 0; 
      font-size: 15px;
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.6;
    }

    /* Comment Form - Enhanced */
    .comment-form {
      background: rgba(255, 255, 255, 0.03);
      padding: 25px;
      border-radius: 15px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      margin-top: 30px;
    }

    .comment-form input, 
    .comment-form textarea { 
      width: 100%; 
      margin-bottom: 15px; 
      padding: 15px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 10px;
      color: #ffffff;
      font-size: 16px;
      outline: none;
      transition: all 0.3s ease;
      font-family: 'Inter', sans-serif;
    }

    .comment-form input::placeholder,
    .comment-form textarea::placeholder {
      color: rgba(255, 255, 255, 0.5);
    }

    .comment-form input:focus,
    .comment-form textarea:focus {
      border-color: rgba(255, 255, 255, 0.3);
      background: rgba(255, 255, 255, 0.08);
      box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    }

    .comment-form textarea {
      min-height: 120px;
      resize: vertical;
    }

    .comment-form button { 
      padding: 15px 30px; 
      background: rgba(255, 255, 255, 0.1);
      color: #ffffff;
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 25px; 
      cursor: pointer;
      font-size: 16px;
      font-weight: 600;
      transition: all 0.3s ease;
      font-family: 'Inter', sans-serif;
    }

    .comment-form button:hover {
      background: rgba(255, 255, 255, 0.15);
      border-color: rgba(255, 255, 255, 0.3);
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .comment-form button:active {
      transform: translateY(0);
    }

    /* Footer - Enhanced */
    footer {
      background: rgba(0, 0, 0, 0.5);
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding: 30px;
      text-align: center;
      margin-top: 50px;
      color: rgba(255, 255, 255, 0.7);
    }

    footer a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    footer a:hover {
      color: #ffffff;
    }

    footer p {
      margin-top: 15px;
      color: rgba(255, 255, 255, 0.6);
    }

    /* Loading Animation */
    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .container {
      animation: fadeIn 0.8s ease-out;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      header {
        padding: 1rem 3%;
      }

      .menu-toggle {
        display: block;
      }

      nav {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 999;
        animation: slideDown 0.3s ease-out;
      }

      nav.active {
        display: block !important;
      }

      nav ul {
        flex-direction: column;
        padding: 2rem 0;
        gap: 0;
      }

      nav li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      }

      nav a {
        display: block;
        padding: 1rem 2rem;
        width: 100%;
        border-radius: 0;
      }

      .container {
        margin: 80px 20px 0;
        padding: 25px;
      }

      .content {
        font-size: 16px;
        padding: 20px;
      }

      .comments {
        padding: 20px;
      }

      .comment-form {
        padding: 20px;
      }
    }

    @media (max-width: 480px) {
      .container {
        margin: 80px 10px 0;
        padding: 20px;
      }

      .content {
        padding: 15px;
      }

      .comments, .comment-form {
        padding: 15px;
      }
    }

    @keyframes slideDown {
      from {
        opacity: 0;
        transform: translateY(-20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Add scroll indicator */
    .scroll-indicator {
      position: fixed;
      top: 70px;
      left: 0;
      width: 100%;
      height: 3px;
      background: rgba(255, 255, 255, 0.1);
      z-index: 999;
    }

    .scroll-progress {
      height: 100%;
      background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.8));
      width: 0%;
      transition: width 0.3s ease;
    }

    .content {
  line-height: 1.6; /* Reduce line spacing */
}

.content p,
.content ul,
.content ol,
.content pre {
  margin: 10px 0; /* Reduce top and bottom spacing */
}

.content li {
  margin: 4px 0; /* Reduce list item gaps */
}


.content hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 15px 0; /* Less space than default */
}


.content pre,
.content div code {
  font-size: 14px;
  padding: 8px;
  border-radius: 6px;
  background: #1e1e1e;
}
