
html,
body {
  background: #000;
}
html {
  height: 100%;
}
body {
  color: #a39595;
  font-family: monospace;
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
  min-height: 100%;
  overflow-wrap: break-word;
}

.post-meta {
  text-align: right;
}

.site-title {
  font-size: 36pt;
  letter-spacing: 2pt;
}

.post-content {
  font-family: sans-serif;
  font-size: 16px;
  line-height: 150%;
}

.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6,
.post-content a {
  font-family: monospace;
}

h2,
h3,
h4,
h5,
h6 {
  margin-top: 3rem;
}

hr {
  margin: 2rem 0;
  text-align: center;
  border: 0;
}

hr:before {
  content: "/////";
}

hr:after {
  content: attr(data-content) "/////";
}

p {
  margin: 1rem 0;
}

li {
  margin: 0.4rem 0;
}

*:target {
  background: yellow;
}

.w {
  max-width: 700px;
  margin: 2em auto;
  padding: 1em 2rem;
  background-color: #000;
  box-shadow: 3pt;
}

table {
  width: 100%;
}

table,
th,
td {
  border: thin solid black;
  border-collapse: collapse;
  padding: 0.4rem;
}

code {
  color: white;
  background: black;
}

div.highlighter-rouge code {
  display: block;
  overflow-x: auto;
  white-space: pre-wrap;
  padding: 1rem;
}

blockquote {
  font-style: italic;
  border: thin solid black;
  padding: 1rem;
}

blockquote p {
  margin: 0;
}

img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

a {
  color: #fff;
}

/* Header Styles */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #000;
  border-bottom: 1px solid #333;
  z-index: 1000;
  padding: 1rem 0;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #a39595;
  font-family: monospace;
}
.hamburger-menu {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  padding: 0;
  z-index: 1001;
}

.hamburger-menu span {
  width: 100%;
  height: 3px;
  background-color: #ff2777;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger-menu:hover span {
  background-color: #ff5a9f;
}

.sidebar-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background-color: #fff;
  z-index: 2000;
  transition: right 0.3s ease;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
}

.sidebar-menu.active {
  right: 0;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #eee;
}

.sidebar-header .logo {
  color: #000;
  font-size: 1.5rem;
  font-weight: bold;
  font-family: monospace;
}

.close-menu {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  transition: transform 0.2s ease;
}

.close-menu:hover {
  transform: rotate(90deg);
}

.close-menu svg {
  stroke: #000;
}

.menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-links li {
  margin: 0;
  border-bottom: 1px solid #eee;
}

.menu-links a {
  display: block;
  padding: 1.5rem 2rem;
  color: #000;
  text-decoration: none;
  font-family: monospace;
  font-size: 1rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.menu-links a:hover {
  background-color: #f5f5f5;
  color: #ff2777;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.page-content {
  padding-top: 80px;
}


.sacred-link {
  color: #ff7d27;                     
  text-decoration: none;
  font-family: 'Noto Serif Devanagari', serif;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  cursor: pointer;
}

.sacred-link:hover {
  text-shadow: 0 0 8px #ff7d27, 0 0 15px #ff7d27;
}
.sacred-link:active {
  animation: pulseClick 0.4s ease;
  color: #d64500; 
}

.sacred-link:visited {
  color: #ff7d27;
  text-shadow: 0 0 6px rgba(255,125,39,0.6);
}
@keyframes pulseClick {
  0% {
    text-shadow: 0 0 0px #ff7d27;
    transform: scale(1);
  }
  50% {
    text-shadow: 0 0 20px #ff7d27, 0 0 40px #ff7d27;
    transform: scale(1.08);
  }
  100% {
    text-shadow: 0 0 0px #ff7d27;
    transform: scale(1);
  }
}

.sacred-link {
  color: #ff7d27;
  text-decoration: none;
  font-family: monospace;
  transition: all 0.3s ease;
}

.sacred-link:hover {
  text-shadow: 0 0 8px #ff7d27, 0 0 15px #ff7d27;
}

.sacred-link:active {
  animation: pulseClick 0.4s ease;
  color: #d64500;
}

@keyframes pulseClick {
  0% { text-shadow: 0 0 0px #ff7d27; transform: scale(1); }
  50% { text-shadow: 0 0 20px #ff7d27, 0 0 40px #ff7d27; transform: scale(1.08); }
  100% { text-shadow: 0 0 0px #ff7d27; transform: scale(1); }
}
.sac-link {
    color: #ffffff;
    text-decoration: underline;
    font-family: monospace;
    transition: all 0.3s ease;
  }
  
  .sac-link:hover {
    text-shadow: 0 0 8px #ffffff, 0 0 15px #ffffff;
  }
  
  .sac-link:active {
    animation: pulseClick 0.4s ease;
    color: #ffffff;
  }
  
  @keyframes pulseClick {
    0% { text-shadow: 0 0 0px #ffffff; transform: scale(1); }
    50% { text-shadow: 0 0 20px #ffffff, 0 0 40px #ffffff; transform: scale(1.08); }
    100% { text-shadow: 0 0 0px #ffffff; transform: scale(1); }
  }

  .glow-btn {
    display: inline-block;
    background: linear-gradient(270deg, #a39595, #a39595, #a39595);
    background-size: 400% 400%;
    color: #fff;
    font-family: monospace;
    font-size: 0.7rem;
    font-weight: 200;
    text-decoration: none;
    padding: 3px 9px;
    border-radius: 5px;
    box-shadow: 0 0 25px rgba(158, 147, 151, 0.5),0 0 50px rgba(155, 145, 148, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: gradientShift 6s ease infinite, glowPulse 3s ease-in-out infinite;
  }
  
  .glow-btn:hover {
    transform: scale(1.07);
  }

  .glow-btn:active {
    transform: scale(0.95);
  }
  
  @keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  @keyframes glowPulse {
    0% {
      box-shadow: 0 0 15px rgb(157, 146, 146),
                  0 0 30px rgba(162, 151, 155, 0.4);
    }
    50% {
      box-shadow: 0 0 40px rgba(163, 152, 156, 0.8),
                  0 0 80px rgb(162, 151, 151);
    }
    100% {
      box-shadow: 0 0 15px rgba(147, 137, 141, 0.5),
                  0 0 30px rgba(165, 153, 158, 0.4);
    }
  }


.spotify-embed {
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
  min-height: 150px;
  height: 30vh;            
  max-height: 440px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.03);
}

.spotify-embed iframe {
  
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.spotify-embed-compact {
  margin: 2rem 0 2rem 0; 
  border-radius: 10px;
  overflow: hidden;
  max-width: 100%;
}
.spotify-embed-compact iframe {
  display: block;
  width: 100%;
  height: 152px; 
  border: 0;
}
.w section p {
  margin-top: 0;
  margin-bottom: 0.6rem;
  line-height: 1.6;
}

.quote-card-compact {
  max-width: 720px; 
  margin-bottom: 3rem;     
  margin-left: auto;
  margin-right: auto;
  position: relative;        
  padding: 2rem 2rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  gap: 1.2rem;
  min-width: 50%;
}

.quote-icon {
  font-size: 3.5rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.08);
  flex: 0 0 auto;
}

.quote-body {
  flex: 1 1 auto;
}
.quote-line {
  margin: 0;
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
}

.quote-by {
  margin: 0.3rem 0 0 0;
  text-align: right;
  font-size: 0.95rem;
  color: #ffffff;
}

.quote-by span {
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 600px) {
  .quote-card-compact {
    padding: 1rem 1.2rem;
  }
  .quote-icon {
    font-size: 2.6rem;
  }
  .quote-line {
    font-size: 0.95rem;
  }
  .quote-by {
    font-size: 0.9rem;
  }
}

@media (max-width: 640px) {
  .spotify-embed,
  .quote-card-compact {
    max-width: 70%;      
    margin: 1rem auto; 
    margin-bottom: 3rem;     
  }
  .quote-card-compact {
    padding: 2rem 2rem;
    border-radius: 12px;
  }
}

