:root{
  --bg:#f4f6fb;
  --text:#222;
  --card:#fff;
  --accent:#4f5bff;
  --border:#dcdfff;
  --footer-bg:#222;
  --footer-text:#aaa;
}

@media (prefers-color-scheme: dark){
  :root{
    --bg:#0f1115;
    --text:#eaeaea;
    --card:#232730;
    --border:#3a3f8f;
    --footer-bg:#000;
    --footer-text:rgba(255,255,255,0.7);
  }
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
  font-family:Arial,sans-serif;
}

body{
  background:var(--bg);
  color:var(--text);
  min-height:100vh;
  display:flex;
  flex-direction:column;
  padding-top:80px;
}

/* ===== NAVBAR ===== */
.navbar{
  position:fixed;
  top:0;
  width:100%;
  z-index:1000;
  background:rgba(0,0,0,0.65);
  backdrop-filter:blur(10px);
}

.nav-container{
  max-width:1100px;
  margin:auto;
  padding:14px 18px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{
  color:#fff;
  font-size:18px;
  font-weight:bold;
  text-decoration:none;
}

.menu-btn{
  width:28px;
  height:22px;
  position:relative;
  cursor:pointer;
}

.menu-btn span{
  position:absolute;
  height:3px;
  width:100%;
  background:#fff;
  transition:.3s;
}

.menu-btn span:nth-child(1){top:0}
.menu-btn span:nth-child(2){top:9px}
.menu-btn span:nth-child(3){top:18px}

.menu-btn.active span:nth-child(1){
  transform:rotate(45deg);
  top:9px;
}
.menu-btn.active span:nth-child(2){opacity:0}
.menu-btn.active span:nth-child(3){
  transform:rotate(-45deg);
  top:9px;
}

.nav-menu{
  display:none;
  flex-direction:column;
  background:rgba(0,0,0,0.95);
}

.nav-menu a{
  color:#fff;
  padding:14px 20px;
  text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,0.1);
}

.nav-menu a:hover{
  background:rgba(255,255,255,0.1);
}

@media(min-width:768px){
  .menu-btn{display:none}
  .nav-menu{
    display:flex!important;
    flex-direction:row;
    justify-content:center;
    background:none;
    padding-bottom:10px;
  }
  .nav-menu a{
    border:none;
    padding:0 14px;
  }
}

    .blog-feature-image{
      width:80%;
      max-width:600px;
      margin:20px auto;
      display:block;
      border-radius:11px;
    }


/* ===== CONTENT ===== */
.container{
  max-width:900px;
  margin:30px auto;
  background:var(--card);
  padding:32px;
  border-radius:14px;
  flex:1;
}

h1{font-size:26px;margin-bottom:14px}
h2{margin-top:28px;margin-bottom:10px;font-size:20px}

p{
  font-size:15px;
  line-height:1.7;
  margin-bottom:14px;
}

ul{padding-left:20px;margin-bottom:14px}
li{margin-bottom:8px}

.inline-link{
  color:var(--accent);
  font-weight:bold;
  text-decoration:none;
}
.inline-link:hover{text-decoration:underline}

/* ===== SHARE FLOAT ===== */
.share-fab{
  position:fixed;
  bottom:22px;
  right:22px;
  width:56px;
  height:56px;
  border-radius:50%;
  background:var(--accent);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  cursor:pointer;
  z-index:9999;
  box-shadow:0 12px 30px rgba(0,0,0,.35);
  transition:.3s;
}
.share-fab:hover{transform:scale(1.05)}

.share-menu{
  position:fixed;
  bottom:90px;
  right:22px;
  background:#fff;
  border-radius:14px;
  box-shadow:0 15px 35px rgba(0,0,0,.25);
  overflow:hidden;
  transform:scale(0);
  transform-origin:bottom right;
  transition:.25s ease;
  z-index:9998;
}

.share-menu.show{transform:scale(1)}

.share-menu a{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 18px;
  font-size:14px;
  color:#222;
  text-decoration:none;
  border-bottom:1px solid #eee;
}

.share-menu a:last-child{border:none}
.share-menu a:hover{background:#f4f6fb}

/* ===== FOOTER ===== */
footer{
  background:var(--footer-bg);
  color:var(--footer-text);
  text-align:center;
  padding:16px 10px;
  font-size:14px;
}

footer a{
  color:var(--footer-text);
  text-decoration:none;
  margin:0 6px;
}
footer a:hover{text-decoration:underline}


a {
  text-decoration: none;
  color: #0000EE;
  font-weight: bold;
}


.post-meta{
font-size:14px;
color:#666;
margin-top:-10px;
margin-bottom:20px;
}
