:root {
    --bg-red-dark: #2a0004;
    --bg-red: #7a0013;
    --bg-bright: #d1002f;
    --accent: #ff3b3b;
    --glass: rgba(255, 255, 255, 0.06);
    --glass-strong: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.18);
    --text: #ececf2;
    --muted: #c7c7d0;
    --card-radius: 4px;
    --transition: 280ms cubic-bezier(.2, .9, .2, 1);
}

* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; overflow-x: hidden; }
body {
    font-family: Inter, system-ui, Arial, sans-serif;
    color: var(--text);
    background-color: #141414;
}

/* Dynamic Background */
#dynamic-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(180deg, #1a0000 0%, #0a0000 100%);
}

#blood-canvas {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.light-trail {
    position: absolute;
    width: 3px;
    height: 120vh;
    background: linear-gradient(to bottom, rgba(255, 77, 77, 0.9), rgba(255, 77, 77, 0));
    animation: trailMove 12s infinite linear;
    z-index: -1;
}
.trail-1 { left: 15%; animation-delay: 0s; }
.trail-2 { left: 50%; animation-delay: 3s; }
.trail-3 { left: 85%; animation-delay: 6s; }
@keyframes trailMove {
    0% { transform: translateY(-100vh); }
    100% { transform: translateY(100vh); }
}
.spiral-trail {
    position: absolute;
    width: 250px;
    height: 250px;
    border: 3px solid rgba(255, 77, 77, 0.7);
    border-radius: 50%;
    bottom: 0;
    left: 0;
    animation: spiralRotate 20s infinite linear;
    z-index: -1;
}
.spiral-inner {
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 77, 77, 0.5);
    border-radius: 50%;
    animation: spiralGrow 6s infinite alternate;
}
.overlay-circle {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 4px solid rgba(255, 42, 81, 0.8);
    border-radius: 50%;
    bottom: 10px;
    left: 10px;
    animation: overlayPulse 8s infinite alternate;
    z-index: 0;
}
@keyframes spiralRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes spiralGrow {
    0% { transform: scale(0.6); }
    100% { transform: scale(1.6); }
}
@keyframes overlayPulse {
    0% { transform: scale(0.8); opacity: 0.7; }
    100% { transform: scale(1.2); opacity: 1; }
}
.lens-flare {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 77, 77, 0.4) 0%, rgba(255, 77, 77, 0) 70%);
    top: 5%;
    left: 25%;
    filter: blur(60px);
    animation: flarePulse 10s infinite alternate;
    z-index: -1;
}
@keyframes flarePulse {
    0% { transform: scale(0.7); opacity: 0.6; }
    100% { transform: scale(1.3); opacity: 0.9; }
}

/* Updated Navbar Styles - Fixed for Mobile */
header { position: sticky; top: 0; z-index: 1000; }
.navbar {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.16));
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  padding: 14px 0;
}
.navbar:after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 14px;
  pointer-events: none;
  z-index: -1;
  filter: blur(18px);
  opacity: 0.6;
  background: linear-gradient(90deg, rgba(255, 42, 81, 0.10), rgba(255, 255, 255, 0.04));
  animation: glowSlow 6s ease-in-out infinite;
}
@keyframes glowSlow {
  0% { transform: scale(0.995); opacity: 0.55; }
  50% { transform: scale(1.01); opacity: 0.8; }
  100% { transform: scale(0.995); opacity: 0.55; }
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
}
.brand { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  z-index: 1003;
}
.brand .logo {
  width: 106px;
  height: 56px;
  border-radius: 12px;
  object-fit: contain;
}
.brand .title { font-weight: 800; font-size: 18px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-grow: 1;
  justify-content: center;
}
.nav-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 12px;
  align-items: center;
}
.nav-links li { position: relative; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  padding: 8px 12px;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-links .dropdown { position: relative; }
.nav-links .dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  display: none;
  flex-direction: column;
  min-width: 160px;
  z-index: 10;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}
.nav-links li:hover .dropdown-content { display: flex; }
.nav-links .dropdown-content a {
  padding: 10px 15px;
  color: var(--muted);
  display: block;
}
.nav-links .dropdown-content a:hover {
  color: var(--text);
  background: rgba(255, 42, 81, 0.1);
}

/* Auth Buttons - Always Visible */
.auth-buttons {
  display: flex !important;
  gap: 12px;
  align-items: center;
  z-index: 1003;
  flex-shrink: 0;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1003;
  background: none;
  border: none;
  padding: 5px;
  margin-left: 10px;
}
.bar {
  width: 25px;
  height: 3px;
  background-color: var(--text);
  margin: 3px 0;
  transition: 0.4s;
  border-radius: 2px;
}
.menu-toggle.active .bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active .bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.auth-btn {
  display: inline-block !important;
  padding: 10px 16px;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--accent), #b3002a);
  color: #fff !important;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(255, 42, 81, 0.2);
  transition: transform var(--transition), box-shadow var(--transition);
  font-family: Poppins, sans-serif;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
}
.auth-btn:hover {
  transform: translateY(-4px);
  background: linear-gradient(45deg, #ff6a6a, var(--accent));
}
.auth-btn:before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 10px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 42, 81, 0.12), rgba(255, 255, 255, 0.06));
  filter: blur(10px);
  opacity: 0.85;
  transition: opacity .25s ease, transform .25s ease;
}
.auth-btn:hover:before {
  transform: scale(1.04);
  opacity: 1;
}

/* Mobile Styles - FIXED */
@media (max-width: 980px) {

  .navbar .container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 6px 10px;
  }

  /* LOGO LEFT */
  .brand {
    justify-self: start;
  }

  .brand .logo {
    width: 70px;
  }

  /* BUTTONS CENTER */
  .auth-buttons {
    justify-self: flex-end;
    display: flex !important;
    gap: 8px;
  }

  .auth-btn {
    padding: 5px 10px !important;
    font-size: 11px !important;
    white-space: nowrap;
  }

  /* HAMBURGER RIGHT */
  .menu-toggle {
    justify-self: end;
    display: flex !important;
  }

  .menu-toggle .bar {
    width: 18px;
    height: 2px;
  }

  /* MOBILE MENU DROPDOWN */
  @media (max-width: 980px) {

  .nav-links {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 55vh;
    background: rgba(0,0,0,0.97);
    backdrop-filter: blur(6px);
    display: none;
    flex-direction: column;
    align-items: center;
    /* z-index: 100000; */
    padding-top: 90px; /* space for header */
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links ul {
    flex-direction: column;
    width: 100%;
    text-align: center;
    margin-top: 40px;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .nav-links a {
    padding: 12px;
    font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    width: 100%;
  }

}

  .nav-links.active {
    display: flex;
  }

  .nav-links ul {
    flex-direction: column;
    width: 100%;
  }

  .nav-links a {
    padding: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
}


/* Banner */
.banner {
    background: linear-gradient(135deg, var(--bg-red-dark), var(--bg-red));
    color: var(--text);
    padding: 60px 20px;
    text-align: center;
    position: relative;
}
.banner h1 {
    font-size: 40px;
    margin: 0;
    font-family: Poppins, sans-serif;
    font-weight: 700;
}
.banner p {
    font-size: 18px;
    color: var(--muted);
    margin: 10px 0 0;
    font-family: Inter, sans-serif;
}

/* Hero Slider Styles */
.bloghash-hero-slider {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    width: 100%;
}
.bloghash-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.bloghash-slide.active {
    display: block;
    opacity: 1;
    transform: scale(1);
}
.bloghash-slide:not(.active) {
    transform: scale(1.05);
}
.bloghash-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.bloghash-slide-caption {
    transition: transform 0.7s ease, opacity 0.7s ease;
    transform: translateY(50px);
    opacity: 0;
}
.bloghash-hero-slider.loaded .bloghash-slide-caption {
    transform: translateY(0);
    opacity: 1;
}

/* Navigation Arrows */
.bloghash-hero-slider button {
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.bloghash-hero-slider button:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

/* Spinner Styles */
.bloghash-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 10;
}
.bloghash-spinner.visible {
    opacity: 1;
    visibility: visible;
}
.bloghash-spinner:not(.visible) {
    opacity: 0;
    visibility: hidden;
}
.bloghash-hero-slider.loaded .bloghash-spinner {
    display: none;
}

/* Glassmorphism for Post and Sidebar Boxes */
.bloghash-archive-content article, .bloghash-sidebar-widget {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

/* Hover Effects */
.bloghash-archive-content article:hover, .bloghash-sidebar-widget:hover {
    transform: scale(1.03) translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Animation for Visibility */
.bloghash-archive-content article.visible, .bloghash-sidebar-widget.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Sticky Sidebar */
.bloghash-sidebar-inner {
    position: sticky;
    top: 80px;
}

/* Comments Section */
.comments-section {
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.comment-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--text);
}
.comment-form input, .comment-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.3);
    color: var(--text);
    font-family: Inter, sans-serif;
}
.comment-form textarea {
    height: 100px;
    resize: vertical;
}
.comment-form button {
    padding: 10px 20px;
    background: var(--bg-bright);
    border: none;
    border-radius: 4px;
    color: var(--text);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}
.comment-form button:hover {
    background: #ff4d4d;
}
.comment-list {
    margin-top: 20px;
}
.comment {
    padding: 15px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}
.comment .author {
    font-weight: 600;
    color: var(--accent);
}
.comment .date {
    font-size: 12px;
    color: var(--muted);
}
.comment .content {
    margin-top: 5px;
    color: var(--text);
}

/* Footer */
.footer {
    background: var(--bg-red-dark);
    padding: 40px 0;
    color: var(--text);
    margin-top: 40px;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}
.footer .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-box {
    background: var(--glass-strong);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--card-radius);
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 1200px;
}
.footer-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.footer-col {
    flex: 1;
    min-width: 200px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-col h2.logo {
    font-size: 10px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text);
}
.footer-col h2.logo span {
    color: var(--bg-bright);
}
.footer-col p {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 15px;
    text-align: center;
}
.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text);
}
.footer-col ul {
    list-style: none;
    padding: 0;
    text-align: center;
}
.footer-col ul li {
    margin-bottom: 8px;
}
.footer-col ul li a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}
.footer-col ul li a:hover {
    color: var(--bg-bright);
}
.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}
.social-links a {
    color: var(--muted);
    font-size: 18px;
    transition: color 0.3s ease;
}
.social-links a:hover {
    color: var(--bg-bright);
}
.footer-col form {
    display: flex;
    align-items: center;
    margin-top: 10px;
    width: 100%;
    max-width: 300px;
    justify-content: center;
}
.footer-col form input {
    flex: 1;
    padding: 8px;
    border: 1px solid var(--glass-border);
    border-radius: 4px 0 0 4px;
    background: rgba(0, 0, 0, 0.3);
    color: var(--text);
    font-size: 14px;
    box-sizing: border-box;
}
.footer-col form button {
    padding: 8px 15px;
    background: var(--bg-bright);
    border: none;
    border-radius: 0 4px 4px 0;
    color: var(--text);
    cursor: pointer;
    transition: background 0.3s ease;
    min-width: 80px;
    box-sizing: border-box;
}
.footer-col form button:hover {
    background: #ff4d4d;
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
    margin-top: 20px;
    width: 100%;
}
.footer-bottom p {
    font-size: 12px;
    color: var(--muted);
    margin: 0;
}
.footer-bottom span {
    color: var(--bg-bright);
}
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 56px;
    height: 56px;
    bottom: 16px;
    right: 16px;
    background: linear-gradient(180deg, var(--accent), #b3002a);
    color: var(--text);
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    box-shadow: 0 8px 24px rgba(255, 42, 81, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2.2s ease-in-out infinite;
    transition: transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(255, 42, 81, 0.3);
}
.whatsapp-float i {
    line-height: 56px;
}
.whatsapp-float:before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(90deg, rgba(255, 42, 81, 0.12), rgba(255, 255, 255, 0.06));
    filter: blur(10px);
    opacity: 0;
    transition: opacity .25s ease, transform .25s ease;
    z-index: -1;
}
.whatsapp-float:hover:before {
    transform: scale(1.04);
    opacity: 0.85;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

/* New Section Styles */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
}
.bloghash-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
    overflow-x: hidden;
}
.site-content {
    flex: 1;
    max-width: 100%;
}
.widget-area {
    width: 100%;
    max-width: 300px;
}
.sidebar {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0px 3px 8px rgba(0,0,0,0.1);
    height: fit-content;
}
.sidebar h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text);
    border-bottom: 2px solid var(--glass-border);
    padding-bottom: 5px;
}
.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar ul li {
    margin: 8px 0;
}
.sidebar ul li a {
    text-decoration: none;
    color: var(--muted);
    font-size: 14px;
}
.sidebar ul li a:hover {
    color: var(--bg-bright);
}
.main-content {
    flex: 1;
    width: 100%;
}
.top-stories {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 6px;
    padding: 10px 15px;
    box-shadow: 0px 2px 6px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    font-size: 14px;
}
.top-stories span {
    background: var(--bg-bright);
    color: var(--text);
    padding: 5px 12px;
    border-radius: 6px 6px 0 0;
    font-weight: bold;
    margin-right: 10px;
}
.top-stories a {
    text-decoration: none;
    color: var(--text);
    font-weight: bold;
    margin-right: 8px;
}
.top-stories small {
    color: var(--muted);
}
.blog-card {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 3px 8px rgba(0,0,0,0.1);
    margin: 20px 0;
    width: 100%;
}
.blog-image {
    background: #ccc;
    width: 40%;
    min-height: 220px;
}
.blog-content {
    padding: 20px;
    width: 60%;
}
.category {
    display: inline-block;
    background: #ff007f22;
    color: #ff007f;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}
.blog-title {
    font-size: 20px;
    font-weight: bold;
    margin: 5px 0;
    color: var(--text);
}
.blog-title a {
    color: var(--text);
    text-decoration: none;
}
.blog-title a:hover {
    color: var(--bg-bright);
}
.blog-excerpt {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 15px;
}
.read-more {
    color: var(--text);
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
}
.read-more:hover {
    text-decoration: underline;
}
.blog-meta {
    margin-top: 15px;
    font-size: 13px;
    color: var(--muted);
    display: flex;
    gap: 10px;
    align-items: center;
}
.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Responsive Design */


@media (max-width: 768px) {
    .bloghash-container, .container {
        flex-direction: column;
        padding: 15px;
        max-width: 100%;
        overflow-x: hidden;
    }
    .site-content, .widget-area, .main-content, .sidebar {
        width: 100%;
        max-width: 100%;
    }
    .banner h1 {
        font-size: 24px;
        line-height: 1.2;
    }
    .banner p {
        font-size: 14px;
        line-height: 1.5;
    }
    .sidebar {
        position: static;
        margin-bottom: 20px;
        padding: 12px;
    }
    .sidebar h3 {
        font-size: 16px;
    }
    .sidebar ul li a {
        font-size: 13px;
    }
    .bloghash-hero-slider {
        margin-bottom: 15px;
        width: 100%;
    }
    .bloghash-slide img {
        height: 60vw;
        object-fit: cover;
        width: 100%;
    }
    .bloghash-slide-caption {
        padding: 10px;
        bottom: 8px;
        left: 8px;
        right: 8px;
        background: rgba(0, 0, 0, 0.7);
        border-radius: 6px;
    }
    .bloghash-slide-caption h2 {
        font-size: 16px;
    }
    .bloghash-slide-caption p {
        font-size: 12px;
    }
    .bloghash-slide-caption a {
        font-size: 12px;
    }
    .bloghash-hero-slider button {
        padding: 8px;
        font-size: 14px;
    }
    .blog-card {
        flex-direction: column;
        margin: 15px 0;
        width: 100%;
    }
    .blog-image, .blog-content {
        width: 100%;
    }
    .blog-image {
        min-height: 40vw;
        background-size: cover;
        background-position: center;
    }
    .blog-content {
        padding: 15px;
    }
    .blog-title {
        font-size: 18px;
        line-height: 1.3;
    }
    .blog-excerpt {
        font-size: 13px;
        line-height: 1.5;
    }
    .read-more {
        font-size: 13px;
    }
    .blog-meta span {
        font-size: 12px;
    }
    .comments-section {
        padding: 15px;
    }
    .comment-form input, .comment-form textarea {
        font-size: 13px;
        padding: 8px;
    }
    .comment-form button {
        font-size: 13px;
        padding: 8px 16px;
    }
    .footer-row {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    .footer-col {
        min-width: 100%;
        padding: 10px;
    }
    .footer-col form {
        flex-direction: column;
        gap: 8px;
        max-width: 100%;
    }
    .footer-col form input {
        font-size: 13px;
        padding: 10px;
        border-radius: 4px;
    }
    .footer-col form button {
        font-size: 13px;
        padding: 10px;
        border-radius: 4px;
        min-width: 100%;
    }
    .social-links a {
        font-size: 16px;
    }
    .whatsapp-float {
        width: 60px;
        height: 60px;
        font-size: 30px;
        bottom: 12px;
        right: 12px;
    }
}

@media (max-width: 600px) {
    .banner {
        padding: 40px 15px;
    }
    .banner h1 {
        font-size: 20px;
    }
    .banner p {
        font-size: 12px;
    }
    .blog-card {
        margin: 10px 0;
    }
    .blog-title {
        font-size: 16px;
    }
    .blog-excerpt {
        font-size: 12px;
    }
    .read-more {
        font-size: 12px;
    }
    .blog-meta span {
        font-size: 11px;
    }
    .bloghash-slide-caption h2 {
        font-size: 14px;
    }
    .bloghash-slide-caption p {
        font-size: 11px;
    }
    .bloghash-slide-caption a {
        font-size: 11px;
    }
    .bloghash-hero-slider button {
        padding: 6px;
        font-size: 12px;
    }
    .bloghash-archive-content article {
        padding: 12px;
    }
    .bloghash-sidebar-widget {
        padding: 12px;
    }
    .footer {
        padding: 15px 0;
    }
    .footer-box {
        padding: 12px;
    }
    .footer-col h2.logo {
        font-size: 18px;
    }
    .footer-col p {
        font-size: 12px;
    }
    .footer-col h4 {
        font-size: 14px;
    }
    .footer-col ul li a {
        font-size: 12px;
    }
    .footer-bottom p {
        font-size: 10px;
    }
    .whatsapp-float {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
}

/* ---------- BLOG POSTS ---------- */
.bloghash-container {
  max-width: 1400px;
  margin: auto;
  padding: 20px;
  width: 100%;
  margin-top: 80px; /* Space for fixed header */
}

.glass-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all .3s;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .glass-card {
    flex-direction: row;
  }
}

.glass-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.glass-card:hover {
  transform: scale(1.015) translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,.4);
}

/* Image on left */
.glass-card img {
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,.3);
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: cover;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .glass-card img {
    max-width: 100%;
    height: 200px;
  }
}

/* Full article text */
.prose {
  font-size: 1rem;
  line-height: 1.7;
  flex: 1;
}

.prose p { margin-bottom: 1rem; }
.prose ul { margin: 1rem 0 1rem 1.5rem; list-style: disc; }
.prose strong { color: #fff; }