body {
  margin: 0;
  padding: 0;
  background: linear-gradient(180deg, #0a0f1a 0%, #111827 100%);
  color: #e3e8ee;
  font-family: 'Space Grotesk', sans-serif;
  background-image: url('https://www.transparenttextures.com/patterns/stardust.png');
  background-size: contain;
  background-repeat: repeat;
  min-height: 100vh;
}

.home-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 120px 30px 60px;
}

.top-header {
  text-align: center;
  margin-bottom: 3rem;
  color: #ffffff;
  padding: 30px 20px;
  border-radius: 12px;
}

.main-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: rgba(10, 15, 25, 0.6);
}

.subtitle {
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(10, 15, 25, 0.6);
}

.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(10, 15, 25, 0.8);
  backdrop-filter: blur(8px);
  text-align: center;
  padding: 15px 0;
  z-index: 999;
  font-size: 1rem;
  letter-spacing: 1px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-bar a {
  color: #e0e6f0;
  text-decoration: none;
  margin: 0 15px;
  font-size: 1rem;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.nav-bar a:hover {
  color: #ffffff;
}

.intro-block {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
  background: rgba(10, 15, 25, 0.481);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  flex-wrap: wrap;
}

.portrait {
  width: 240px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.bio {
  flex: 1;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e6f0;
}

.site-footer {
  text-align: left;                  
  width: 100%;
  background: transparent;
}

.site-footer hr {
  border: 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin: 0 0 8px 0;
}

.site-footer .footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;    
  padding: 10px 20px;         
  gap: 12px;
}

.site-footer .left span {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
}


.site-footer .right {
  display: flex;
  align-items: center;
  gap: 18px;       
}

.site-footer .right a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}

.site-footer .right a:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.site-footer {
  color: #4b5563;  
}

.site-footer .left span {
  color: #4b5563;    
}

.site-footer .right a {
  color: #4b5563 !important; 
  text-decoration: none;
}

.site-footer .right a:hover {
  color: #111827 !important;
}

.site-footer .bi {
  font-size: 22px;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
}