    body {background:#000;color:#f0f0f0; font-family:Arial; padding:20px; max-width:800px; margin:auto;user-select: none;-webkit-user-select: none;-moz-user-select: none;-ms-user-select: none; }
    h1 { margin-bottom:20px; }

/* Header Layout and hamburger menu ;d */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  margin-top: 20px;
}

.header-left h1 {
  margin: 0;
}

.header-left h3 {
  margin: 0;
  color: #999;
  border-bottom: 1px solid #333;
}

.header-right {
  font-size: 28px;
  cursor: pointer;
  user-select: none;
  padding: 10px;
}

.hamburger {
  transition: color 0.3s ease;
}

.hamburger:hover {
  color: #fff;
  text-shadow: 0 0 10px #fff;
}
.hamburger svg {
  fill: #fff;                  
  transition: all 0.3s ease;   
  cursor: pointer;
}

.hamburger:hover svg {
  filter: drop-shadow(0 0 5px #fff)
          drop-shadow(0 0 10px #fff)
          drop-shadow(0 0 20px #fff);
  transform: scale(1.1);       
}
/* Slide-out menu */
.menu {
  position: fixed;
  top: 0;
  right: -250px; /* hidden */
  width: 250px;
  height: 100%;
  background: rgba(0,0,0,0.85);
  box-shadow: -2px 0 10px rgba(0,0,0,0.8);
  transition: right 0.3s ease;
  padding-top: 80px;
  z-index: 999;
}

.menu.open {
  right: 0;
}

.menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu ul li {
  text-align: center;
  margin: 20px 0;
}

.menu ul li a {
  color: #dbdbdb;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.menu ul li a:hover {
  color: #fff;
  text-shadow: 0 0 10px #fff;
}
/* hamburger menu end =] */
    header {margin-bottom:20px;margin-top:20px}
    header h1 { margin:0px; }
    header h3 {margin:0px;color:#999;border-bottom:1px solid #333}
    a { color:#f0f0f0;text-decoration:none;  }
    a:hover { text-decoration:underline; }
    .date { color:#888; font-size:0.9rem; margin-bottom:15px; }
    .post { margin-bottom:10px; border-bottom:1px solid #333; padding-bottom:20px; }
.readpost {
    position: relative;   
    z-index: 1;
    margin: auto;text-shadow: 1px 1px #000;
}
.post-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    border-top: 1px solid #333;
    padding-top: 15px;
}

.post-navigation a {
    color: #f0f0f0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block; /* needed for transform animation */
}

.post-navigation a:hover {
    text-decoration: none;
    color: #fff;
    text-shadow:
        0 0 5px #fff,
        0 0 10px #fff,
        0 0 20px #fff,
        0 0 40px #fff,
        0 0 60px #fff;
    transform: scale(1.10);
    animation: shake 0.3s; /* small shake */
}

/* Small shake keyframes */
@keyframes shake {
    0% { transform: translateX(0) scale(1.05); }
    20% { transform: translateX(-2px) scale(1.05); }
    40% { transform: translateX(2px) scale(1.05); }
    60% { transform: translateX(-2px) scale(1.05); }
    80% { transform: translateX(2px) scale(1.05); }
    100% { transform: translateX(0) scale(1.05); }
}

.nav-left, .nav-center, .nav-right {
    flex: 1;
}

.nav-center {
    text-align: center;
}

.nav-right {
    text-align: right;
}
#fade-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    pointer-events: none; /* don't block clicks */
    transition: opacity 1s ease;
    z-index: 9999;
}
.overlay {
    position: fixed;     
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 0;            
}
.pagination {
    text-align: center;
    margin-top: 30px;
}
.pagination a, .pagination span {
    display: inline-block;
    padding: 6px 10px;
    margin: 0 3px;
    border: 1px solid #333;
    color: #f0f0f0;
    font-size: 0.9rem;
}
.pagination a:hover {
    background: #333;
}
.pagination .active {
    background: #f0f0f0;
    color: #000;
}
.pagination .disabled {
    color: #555;
    border-color: #222;
}
    footer {    position: relative;
    z-index: 1;color:#777;font-size:0.9rem;margin-top:50px;}
    footer a {color:#999;}
    footer a:hover {color:#fff;}
.alert{padding:15px 20px;margin:10px 0;border-radius:8px;font-family:sans-serif;font-size:16px;color:#fff;box-shadow:0 2px 6px rgb(0 0 0 / .1)}.alert.success{background-color:#178c00;border:2px solid #2aff00;color:#fff;}.alert.warning{background-color:#8c6900;border:2px solid #ffc000;color:#fff}.alert.danger{background-color:#8e0000;border:2px solid #ff0000;color:#fff;}

/* Mobile adjustments */
@media (max-width: 600px) {
  .header-left h3 {
    display: none;
  }
.menu ul li a {font-size:24px;}
}

