 body {
      font-family: Arial, sans-serif;
      background: #f9f9f9;
      margin: 0;
      padding: 0;
    }

    header {
      background-color: #ffffff;
      border-bottom: 1px solid #ddd;
      padding: 15px 20px;
    }

    .header-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      position: relative;
    }

    .logo a {
      text-decoration: none;
      font-size: 1.5rem;
      font-weight: bold;
      color: #333;
    }

    .nav-links {
      display: flex;
      gap: 20px;
    }

    .nav-links a {
      text-decoration: none;
      color: #333;
      font-size: 1rem;
    }

    .nav-links a:hover {
      color: #007BFF;
    }

    .menu-icon {
      display: none;
      font-size: 1.8rem;
      cursor: pointer;
    }

    #menu-toggle {
      display: none;
    }

    /* Responsive Styles */
    @media (max-width: 768px) {
      .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        border-top: 1px solid #ddd;
        padding: 15px 20px;
      }

      .menu-icon {
        display: block;
      }

      #menu-toggle:checked + .menu-icon + .nav-links {
        display: flex;
      }
    }

    .container {
      display: flex;
      flex-direction: row;
      max-width: 1300px;
      margin: 30px auto;
      padding: 0 20px;
      gap: 30px;
    }

    .main-content {
      flex: 3;
      background: white;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }

    .blog-title {
      font-size: 2rem;
      margin-bottom: 10px;
      color: #111;
    }

    .blog-meta {
      font-size: 0.9rem;
      color: #777;
      margin-bottom: 20px;
    }

    .blog-image {
      width: 100%;
      height: auto;
      margin-bottom: 20px;
      border-radius: 5px;
    }

    .blog-content p {
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: 1.2rem;
      color: #333;
    }

    aside {
      flex: 1;
      background: #fff;
      padding: 20px;
      border: 1px solid #ddd;
      border-radius: 5px;
      box-sizing: border-box;
      height: fit-content;
    }

    .widget {
      margin-bottom: 25px;
    }

    .widget h3 {
      font-size: 1.1rem;
      margin-bottom: 10px;
      color: #111;
    }

    .widget ul {
      list-style: none;
      padding: 0;
    }

    .widget ul li {
      margin-bottom: 8px;
    }

    .widget ul li a {
      color: #0073e6;
      text-decoration: none;
      font-size: 0.95rem;
    }

    .widget ul li a:hover {
      text-decoration: underline;
    }

    footer {
      background-color: #ffffff;
      border-top: 1px solid #ddd;
      text-align: center;
      padding: 20px 10px;
      margin-top: 40px;
      font-size: 0.9rem;
      color: #555;
    }

    .footer-links {
      margin-bottom: 10px;
    }

    .footer-links a {
      margin: 0 10px;
      color: #0073e6;
      text-decoration: none;
    }

    .footer-links a:hover {
      text-decoration: underline;
    }

    @media (max-width: 992px) {
      .container {
        flex-direction: column;
      }

      aside {
        margin-top: 20px;
        width: 100%;
      }
    }

    @media (max-width: 600px) {
      header {
        padding: 15px 20px;
        flex-direction: column;
        align-items: flex-start;
      }

      nav {
        margin-top: 10px;
      }

      .logo {
        font-size: 1.2rem;
      }
    }
    
    
      table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 20px;
    }
    th, td {
      border: 1px solid #ccc;
      padding: 12px;
      text-align: left;
      vertical-align: top;
    }
    th {
      background-color: #f2f2f2;
    }
    
    .table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-responsive table {
  width: 100%;
  min-width: 600px; /* ensures horizontal scroll on small screens */
  border-collapse: collapse;
}

.table-responsive th, .table-responsive td {
  border: 1px solid #ccc;
  padding: 12px;
  text-align: left;
  vertical-align: top;
}

.table-responsive th {
  background-color: #f2f2f2;
}

@media (max-width: 600px) {
  .table-responsive table {
    font-size: 0.9rem;
  }
}
 #recent-posts-list li {
  background-color: #f4f4f4;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px 12px;
  margin-bottom: 10px;
  transition: background-color 0.3s ease;
}

#recent-posts-list li:hover {
  background-color: #eaeaea;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

#recent-posts-list li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  font-size: 0.95rem;
  display: block;
}



/* REELS SECTION (DARK) */
#reelsWrap{
  width:100%;
  max-width:400px;
  margin:0 auto;
  padding:14px 0;
  background:transparent;
}

#reelsScroller{
  width:100%;
  display:flex;
  flex-direction:column;
  gap:16px;
  padding:0;
}

/* Reel Card */
.reel{
  width:100%;
  height:90vh;
  position:relative;
  overflow:hidden;
  background:#000;
  border-radius:16px;
  border:1px solid rgba(255,255,255,0.12);
  box-shadow:0 10px 25px rgba(0,0,0,0.65);
}

.reel video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  background:#000;
}

/* Blur */
.reel.blur video{
  filter:blur(5px);
  transform:scale(1.07);
}

/*  Reel Info */
.reelInfo{
  position:absolute;
  left:14px;
  bottom:16px;
  z-index:10;
  color:#fff;
  font-family:Arial, sans-serif;
  text-shadow:0 2px 10px rgba(0,0,0,0.75);
}

.reelInfo .title{
  font-size:16px;
  font-weight:900;
  margin-bottom:4px;
}
.reelInfo .sub{
  font-size:12px;
  opacity:0.85;
}

/*  Unlock Overlay Dark */
#unlockOverlay{
  position:fixed;
  inset:0;
  z-index:999999;
  display:none;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,0.75);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  padding:20px;
}

.unlockBox{
  width:min(92%, 420px);
  background:rgba(18,18,25,0.98);
  border-radius:18px;
  padding:22px 18px;
  text-align:center;
  border:1px solid rgba(255,255,255,0.10);
}

.unlockTitle{
  color:#fff;
  font-size:22px;
  font-weight:900;
  margin-bottom:8px;
}

.unlockSub{
  color:rgba(255,255,255,0.75);
  font-size:13px;
  margin-bottom:16px;
  line-height:1.4;
}

/*  Buttons */
.unlockBtn{
  width:100%;
  padding:16px 18px;
  border:none;
  border-radius:14px;
  font-size:18px;
  font-weight:900;
  cursor:pointer;
  color:#fff;
  background:linear-gradient(135deg,#22c55e,#16a34a);
}
.unlockBtn:active{
  transform:scale(0.98);
}