html, body {
  height: 100%;
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  background: linear-gradient(to bottom, #0b0b0c 0%, #141016 30%, #1a101e 60%, #0f0a12 100%),
              radial-gradient(circle at top right, rgba(90,0,120,0.25), transparent 60%),
              radial-gradient(circle at bottom left, rgba(40,0,60,0.2), transparent 80%);
  background-attachment: fixed;
  background-blend-mode: overlay, multiply, darken;
  color: #d3c9e8;
  line-height: 1.8;
}

#footer {height:60px;}

.contentx h1 {
  font-family: 'Cinzel', serif;
  font-size: 42px;
  text-align: center;
  margin: 20px 0 40px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #c084fc, #9d4edd, #5a189a, #240046);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 12px rgba(160,80,255,0.4);
  animation: shimmer 6s infinite linear;
}

@keyframes shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.contentx h1::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  margin: 12px auto 0 auto;
  background: linear-gradient(to right, transparent, #b388eb, transparent);
  border-radius: 2px;
  animation: underlinePulse 3s infinite ease-in-out;
}

@keyframes underlinePulse {
  0%, 100% { opacity: 0.4; width: 60px; }
  50% { opacity: 1; width: 120px; }
}

.orb-nav {
  position: fixed;
  bottom: 150px;
  right: 150px;
  z-index: 1000;
}

.orb-button {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #8b5cf6, #3b0764);
  color: #e6dbff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 0 25px rgba(160,70,255,0.6), inset 0 0 15px rgba(80,0,140,0.7);
  transition: all 0.4s ease;
  position: relative;
  z-index: 10;
}

.orb-button:hover {
  transform: scale(1.08);
  box-shadow: 0 0 40px rgba(200,130,255,0.9);
}

.orb-links {
  list-style: none;
  padding: 0;
  margin: 0;
  position: fixed;
  z-index: 5;
}

.orb-links li {
  position: fixed;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease;
}

.orb-links li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #6d28d9, #2e1065);
  color: #d2b9ff;
  text-decoration: none;
  font-size: 12px;
  box-shadow: 0 0 15px rgba(150,50,255,0.4);
  transition: all 0.3s ease;
}

.orb-links li a:hover {
  background: radial-gradient(circle at 30% 30%, #b388eb, #4c0073);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(200,100,255,0.7);
}

#header {
  width: 100%; 
  max-width: 893px; 
  height: 496px;
  margin: 70px auto;
  border-radius: 50px 50px 0 0;
  overflow: hidden;
  box-shadow: 0 12px 60px rgba(0,0,0,0.8);
  background-image: url('premade/head.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.85) contrast(1.15);
  display: block;
}

#content {
  width: 893px;
  max-width: 893px;
  margin: -40px auto;
  padding-top: 0;
}

.contentx {
  background: #000;
  padding: 40px;      
  border-radius: 0 0 40px 40px;
  font-size: 18px;
  color: #d3c9e8;
  text-align: justify;
  box-shadow: 0 10px 60px rgba(0,0,0,0.6), inset 0 0 40px rgba(150,50,255,0.15);
  backdrop-filter: blur(10px);
  margin-top: -20px;   
  margin-bottom: 60px; 
  position: relative;
  padding-bottom: 40px;
}

blockquote {
  background: radial-gradient(circle at top, rgba(60,0,80,0.5), rgba(20,0,40,0.6));
  border-radius: 30px;
  padding: 30px 40px;
  font-style: italic;
  color: #e0caff;
  box-shadow: 0 4px 25px rgba(120,0,180,0.3);
  position: relative;
}

blockquote::before,
blockquote::after {
  content: '❝';
  font-family: serif;
  font-size: 48px;
  color: #b388eb;
  position: absolute;
  opacity: 0.25;
}

blockquote::before { top: 10px; left: 20px; }
blockquote::after { bottom: 10px; right: 20px; transform: rotate(180deg); }

a {
  color: #b388eb;
  font-size: 18px;
  text-decoration: none;
  border-radius: 4px;
  position: relative;
  padding: 6px 4px;
  transition: all 0.3s ease;
}

a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #d0aaff;
  transition: width 0.3s ease;
}

a:hover::after { width: 100%; }
a:hover { color: #fff; text-shadow: 0 0 8px #c084fc; }

.contentx input,
textarea,
select {
  background-color: rgba(40,20,60,0.8);
  border: 1px solid #5a189a;
  padding: 20px;
  color: #e6dbff;
  border-radius: 20px;
  font-size: 16px;
  backdrop-filter: blur(6px);
  box-shadow: inset 0 0 8px rgba(120,0,200,0.4);
  transition: all 0.3s ease;
}

.contentx input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #c084fc;
  background-color: rgba(70,20,110,0.9);
  box-shadow: 0 0 12px rgba(160,80,255,0.6);
}

b, i {
  font-family: 'Lora', serif;
  font-size: 18px;
  font-weight: 600;
  background: linear-gradient(135deg, #b388eb, #7b2cbf, #9d4edd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-position 0.8s ease;
  background-size: 300% 300%;
  background-position: 0% 50%;
}

b:hover, i:hover {
  background-position: 100% 50%;
  text-shadow: 0 0 12px rgba(180,80,255,0.6);
}
