html, body {  margin: 0;  padding: 0;  height: 100%;  font-family: "Lora", serif;}body {  background: radial-gradient(circle at top, #0e1624, #070a12);  color: #d6d0c4;  overflow-x: hidden;  transition: all 1.2s ease;  animation: breathe 14s ease-in-out infinite;}@keyframes breathe {  0%,100% { filter: brightness(1); }  50% { filter: brightness(1.04); }}#navigation {  position: sticky;  top: 18px;  z-index: 1000;  display: flex;  align-items: center;  justify-content: center;  gap: 34px;  width: calc(100% - 80px);  max-width: 1100px;  height: 90px;  margin: 0 auto;  padding: 0 40px;  border-radius: 999px;  border: 1px solid rgba(255,255,255,0.08);  backdrop-filter: blur(18px);  background: linear-gradient(120deg, rgba(20,30,45,0.88), rgba(18,26,38,0.92), rgba(20,30,45,0.88));  background-size: 220% 220%;  box-shadow: 0 18px 45px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.05);  animation: navFlow 12s ease infinite;}#navigation::after {  content: "";  position: absolute;  inset: -10px;  z-index: -1;  border-radius: 999px;  background: radial-gradient(ellipse at center, rgba(120,180,255,0.18), transparent 70%);  filter: blur(14px);}@keyframes navFlow {  0% { background-position: 0% 50%; }  50% { background-position: 100% 50%; }  100% { background-position: 0% 50%; }}#navigation a {  position: relative;  padding: 10px 12px;  font-size: 17px;  letter-spacing: 2px;  text-decoration: none;  background: linear-gradient(90deg, #bcdcff, #7ec6f5, #d6e9ff);  -webkit-background-clip: text;  -webkit-text-fill-color: transparent;  transition: transform 0.35s ease, filter 0.35s ease;}#navigation a:hover {  transform: translateY(-3px);  filter: brightness(1.2);}#navigation a:active {  transform: translateY(-1px);}#navigation a::after {  content: "";  position: absolute;  left: 50%;  bottom: 4px;  width: 70%;  height: 2px;  border-radius: 2px;  opacity: 0.9;  background: linear-gradient(90deg, transparent, #5da3d8, #9ed5f7, #5da3d8, transparent);  transform: translateX(-50%) scaleX(0);  transition: transform 0.4s ease;}#navigation a:hover::after {  transform: translateX(-50%) scaleX(1);}#header h1 {  margin-bottom: 10px;  font-family: "Cinzel", serif;  font-size: 42px;  letter-spacing: 2px;  color: #9ec9ff;}#header p {  font-family: "Lora", serif;  font-size: 16px;  color: #ccc;}#header p:first-of-type {  font-style: italic;  opacity: 0.8;}#header .author {  display: flex;  align-items: center;  justify-content: center;  gap: 40px;  max-width: 1000px;  margin: 0 auto;  text-align: left;}#header .author img {  width: 160px;  border-radius: 12px;}#header .author-text,#header .author div {  max-width: 600px;}.tagline {  margin-bottom: 15px;  font-style: italic;  opacity: 0.8;}.description {  margin-bottom: 15px;  line-height: 1.6;}.author-card {  position: relative;  overflow: hidden;  display: flex;  align-items: center;  gap: 28px;  max-width: 920px;  margin: 0 auto 40px;  padding: 34px;  border-radius: 26px;  border: 1px solid rgba(150,180,255,0.12);  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));  backdrop-filter: blur(14px);  box-shadow: 0 18px 50px rgba(0,0,0,0.35);}.author-card::before {  content: "";  position: absolute;  inset: 0;  background: radial-gradient(circle at 20% 20%, rgba(120,180,255,0.12), transparent 60%);}.author-avatar-wrap {  padding: 5px;  border-radius: 50%;  background: linear-gradient(135deg, #5da3d8, #9ed5f7);}.author-avatar {  width: 110px;  height: 110px;  border-radius: 50%;  object-fit: cover;  border: 4px solid rgba(255,255,255,0.6);}.author-meta h2 {  margin: 0;  font-size: 24px;  color: #9ec9ff;}.author-meta h4 {  margin: 6px 0 10px;  font-weight: 400;  opacity: 0.75;}.author-meta p {  margin: 0;  line-height: 1.7;  opacity: 0.9;}#content {  width: 70%;  margin: 0 auto;  padding: 70px 0;}.site-listing {  display: flex;  gap: 35px;  margin-bottom: 40px;  padding: 35px;  border-radius: 20px;  background: rgba(255,255,255,0.04);  transition: 0.4s ease;}.site-listing:hover {  transform: translateY(-6px);  background: rgba(255,255,255,0.06);}.site-listing img {  width: 160px;  height: 160px;  border-radius: 16px;  object-fit: cover;}.site-info { flex: 1; }.site-info h3 {  margin-bottom: 15px;  font-family: "Cinzel", serif;  font-size: 24px;  color: #9ec9ff;}.char-details {  display: grid;  grid-template-columns: 1fr 1fr;  gap: 6px 20px;  margin-bottom: 18px;  padding: 0;  list-style: none;  font-size: 14px;  color: #ccc;}.char-text {  margin-bottom: 15px;  line-height: 1.6;  color: #ddd;}.char-meta {  font-size: 14px;  line-height: 1.6;  color: #aaa;}.gallery-grid {  display: grid;  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));  gap: 28px;  padding-top: 20px;}.gallery-item {  position: relative;  overflow: hidden;  border-radius: 18px;  cursor: pointer;  backdrop-filter: blur(6px);  transition: all 0.4s ease;}.gallery-item:hover {  transform: translateY(-8px) scale(1.02);}.gallery-item::before {  content: "";  position: absolute;  inset: 0;  border-radius: 18px;  padding: 1px;  opacity: 0;  transition: 0.4s ease;  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);  -webkit-mask-composite: xor;  mask-composite: exclude;}.gallery-item:hover::before { opacity: 1; }.gallery-item img {  width: 100%;  height: 250px;  object-fit: cover;  transition: transform 0.5s ease, filter 0.5s ease;}.gallery-item:hover img {  transform: scale(1.08);  filter: brightness(0.8);}.gallery-item h3 {  position: absolute;  bottom: 0;  width: 100%;  margin: 0;  padding: 14px;  font-family: "Cinzel", serif;  font-size: 12px;  letter-spacing: 1px;  color: #e6f0ff;  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);}blockquote {  position: relative;  margin: 35px 0;  padding: 30px 35px;  border-left: 3px solid #6faeff;  border-radius: 14px;  background: rgba(255,255,255,0.04);  line-height: 1.8;  font-style: italic;  transition: 0.4s ease;}blockquote:hover {  transform: translateY(-4px);  background: rgba(255,255,255,0.06);}blockquote::before {  content: "“";  position: absolute;  top: -10px;  left: 10px;  font-size: 60px;  font-family: serif;  color: rgba(158,201,255,0.15);}blockquote p {  margin: 0 0 10px;  color: #ddd;}blockquote cite {  display: block;  font-size: 13px;  font-style: normal;  text-align: right;  color: #9ec9ff;  opacity: 0.8;}#footer {  position: relative;  overflow: hidden;  margin-top: 90px;  padding: 60px 0 70px;  background: #05060b;  border-top: 1px solid rgba(200,220,255,0.08);  color: rgba(225,235,255,0.78);  text-align: center;  font-family: "Cinzel", serif;  box-shadow: 0 -18px 45px rgba(0,0,0,0.65);}#footer::before {  content: "";  position: absolute;  inset: 0;  background: rgba(120,160,255,0.03);  opacity: 0.6;  pointer-events: none;}.footer-inner {  position: relative;  z-index: 2;  max-width: 1000px;  margin: 0 auto;}.crest {  margin-bottom: 20px;  font-size: 62px;  color: rgba(200,220,255,0.75);  text-shadow: 0 0 12px rgba(120,160,255,0.25), 0 0 30px rgba(80,120,200,0.12);  transition: transform 0.5s ease, text-shadow 0.5s ease;}.crest:hover {  transform: translateY(-6px) rotate(-3deg);  text-shadow: 0 0 18px rgba(160,200,255,0.35), 0 0 40px rgba(120,160,255,0.2);}.footer-text {  margin-bottom: 25px;  font-size: 17px;  letter-spacing: 1.2px;  color: rgba(225,235,255,0.7);}.footer-links {  display: flex;  justify-content: center;  flex-wrap: wrap;  gap: 28px;  margin-bottom: 25px;}.footer-links a {  position: relative;  color: rgba(230,240,255,0.75);  text-decoration: none;  font-weight: 500;  transition: color 0.35s ease, text-shadow 0.35s ease;}.footer-links a:hover {  color: rgba(255,255,255,0.9);  text-shadow: 0 0 10px rgba(120,160,255,0.25);}.footer-links a::after {  content: "";  position: absolute;  bottom: -4px;  left: 0;  width: 100%;  height: 1px;  background: linear-gradient(90deg, transparent, rgba(160,200,255,0.7), transparent);  transform: scaleX(0);  transform-origin: right;  transition: transform 0.4s ease;}.footer-links a:hover::after {  transform: scaleX(1);  transform-origin: left;}.footer-runes {  font-size: 24px;  letter-spacing: 10px;  color: rgba(180,210,255,0.55);  text-shadow: 0 0 12px rgba(120,160,255,0.18);  animation: faeShimmer 6s ease-in-out infinite;}@keyframes faeShimmer {  0%,100% { opacity: 0.45; transform: translateY(0); }  50% { opacity: 0.85; transform: translateY(-2px); }}