@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;800&family=Outfit:wght@300;400;500;600;700&family=Share+Tech+Mono&display=swap');

body {
  background: radial-gradient(circle at 50% 50%, #0f1426 0%, #060913 100%);
  color: #a0aec0;
  font-family: 'Outfit', sans-serif;
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  line-height: 1.6;
}

/* Subtle CRT Scanline overlay effect */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.15) 50%);
  background-size: 100% 4px;
  z-index: 9999;
  pointer-events: none;
}

/* Cyber Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #060913;
}
::-webkit-scrollbar-thumb {
  background: #00ff66;
  border-radius: 3px;
  box-shadow: 0 0 5px rgba(0, 255, 102, 0.5);
}

a {
  color: #00f3ff;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: #00ff66;
  text-shadow: 0 0 8px rgba(0, 255, 102, 0.6);
}

/* Layout container */
.cyber-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Header & Logo styling */
.cyber-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  border-bottom: 2px solid rgba(0, 243, 255, 0.2);
  padding-bottom: 1.5rem;
}

#header {
  margin: 0;
}
#logo a {
  text-decoration: none;
  color: #ffffff;
}
#logo .bold {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #ffffff 0%, #00f3ff 50%, #00ff66 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  filter: drop-shadow(0 2px 8px rgba(0, 243, 255, 0.3));
}
.logo-tagline {
  font-family: 'Share Tech Mono', monospace;
  color: #00ff66;
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 0.25rem;
  text-shadow: 0 0 5px rgba(0, 255, 102, 0.3);
}

/* Navigation Menu */
#globalnav {
  background: rgba(13, 20, 38, 0.5);
  border: 1px solid rgba(0, 243, 255, 0.2);
  border-radius: 8px;
  padding: 0.25rem 1rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
#navPocket ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 1rem;
}
#navPocket li a {
  display: block;
  padding: 0.75rem 1.25rem;
  color: #ffffff;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
}
#navPocket li a:hover {
  background: rgba(0, 243, 255, 0.1);
  color: #00f3ff;
  box-shadow: inset 0 0 10px rgba(0, 243, 255, 0.2);
}

/* Hero section / status bar */
.cyber-hero {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 243, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 243, 255, 0.15);
}
.cyber-hero-banner {
  background-size: cover;
  background-position: center;
  height: 350px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 2rem;
  position: relative;
}
.cyber-hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 20, 38, 0.2) 0%, rgba(6, 9, 19, 0.85) 100%);
}
.cyber-hero-overlay {
  position: relative;
  z-index: 10;
}
.cyber-status-bar {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(0, 255, 102, 0.12);
  border: 1px solid rgba(0, 255, 102, 0.4);
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-family: 'Share Tech Mono', monospace;
  color: #00ff66;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-shadow: 0 0 8px rgba(0, 255, 102, 0.5);
  box-shadow: 0 0 15px rgba(0, 255, 102, 0.1);
}
.cyber-status-pulse {
  width: 10px;
  height: 10px;
  background-color: #00ff66;
  border-radius: 50%;
  box-shadow: 0 0 10px #00ff66, 0 0 20px #00ff66;
  animation: cyber-pulse 1s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes cyber-pulse {
  from { opacity: 0.3; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1.15); }
}

/* Content grid */
.cyber-main-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
}
@media (max-width: 900px) {
  .cyber-main-grid {
    grid-template-columns: 1fr;
  }
}

/* Article Styling */
.cyber-content {
  display: flex;
  flex-direction: column;
}
.cyber-article {
  background: rgba(13, 20, 38, 0.45);
  border: 1px solid rgba(0, 243, 255, 0.15);
  border-radius: 12px;
  padding: 2.5rem;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}
.cyber-article::after {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  width: calc(100% - 60px);
  height: 2px;
  background: linear-gradient(90deg, transparent, #00f3ff, #00ff66, transparent);
}

.blog-title {
  margin: 0;
}
.blog-title a {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}
.blog-title a:hover {
  color: #00f3ff;
  text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

.entry-meta {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.85rem;
  color: #00ff66;
  display: flex;
  gap: 1rem;
  align-items: center;
}
.entry-meta time {
  color: #a0aec0;
}

.cyber-article-body {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #cbd5e1;
}
.cyber-article-body p {
  margin-top: 0;
  margin-bottom: 1.5rem;
}
.cyber-article-body h2, .cyber-article-body h3 {
  font-family: 'Orbitron', sans-serif;
  color: #ffffff;
  margin-top: 2rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}
.cyber-article-body h2 {
  font-size: 1.6rem;
  border-left: 3px solid #00f3ff;
  padding-left: 0.75rem;
}
.cyber-article-body h3 {
  font-size: 1.3rem;
}
.cyber-article-body ul, .cyber-article-body ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}
.cyber-article-body li {
  margin-bottom: 0.5rem;
}

.cyber-article-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.25rem;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.9rem;
  color: #718096;
}
.cyber-tag {
  color: #00ff66;
  background: rgba(0, 255, 102, 0.08);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  border: 1px solid rgba(0, 255, 102, 0.2);
}

/* Sidebar widget styling */
.cyber-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
#sidebar {
  width: 100%;
}
#sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.widget {
  background: rgba(13, 20, 38, 0.45);
  border: 1px solid rgba(0, 243, 255, 0.15);
  border-radius: 12px;
  padding: 1.75rem;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.widget h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 0;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(0, 243, 255, 0.2);
  padding-bottom: 0.75rem;
}
.widget h2 a.sidebartitle {
  color: #ffffff;
}
.widget h2 a.sidebartitle:hover {
  color: #00f3ff;
}

.widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.widget ul li {
  position: relative;
  padding-left: 1.25rem;
}
.widget ul li::before {
  content: "»";
  position: absolute;
  left: 0;
  color: #00ff66;
  font-weight: bold;
}
.widget ul li a {
  color: #cbd5e1;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
}
.widget ul li a:hover {
  color: #00ff66;
  padding-left: 0.25rem;
}

/* Footer Section */
.cyber-footer {
  border-top: 2px solid rgba(0, 255, 102, 0.2);
  padding-top: 1.5rem;
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.85rem;
  color: #718096;
}
.cyber-footer a {
  color: #00ff66;
}
