@charset "utf-8";
/* CSS Document */
/* =====================
   shared.css
   Shared across all pages
   ===================== */

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Base body */
body {
  margin: 0;
  font-family: system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  position: relative;
  background: #000000;
  min-height: 100vh;
  transform-style: flat;
  overflow-x: hidden;
  color: white;
}

/* Background atmosphere blobs */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 80% 100%, rgba(160, 32, 240, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(75, 0, 130, 0.15) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 50% 20%, rgba(100, 0, 180, 0.08) 0%, transparent 60%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #000000;
}

::-webkit-scrollbar-thumb {
  background: #a020f0;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #c040ff;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #a020f0 #000000;
}

/* Fonts */
h2 {
  font-family: system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  letter-spacing: 0.9px;
  font-weight: 200;
  font-size: 2.5em;
  text-transform: capitalize;
  color: ghostwhite;
  padding-top: 20px;
}

p {
  font-family: system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.8;
  letter-spacing: 0.2px;
  color: ghostwhite;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}

/* =====================
   Navigation
   ===================== */
.header {
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 100;
  height: auto;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  padding: 0 40px;
  box-sizing: border-box;
  overflow: hidden;
}

#backdrop {
  position: absolute;
  inset: 0;
  height: 180%;
  border-radius: 4px;
  background: rgba(5, 0, 15, 0.75);
  pointer-events: none !important;
  backdrop-filter: blur(20px) brightness(60%) saturate(120%);
  -webkit-backdrop-filter: blur(20px) brightness(60%) saturate(120%);
  mask-image: linear-gradient(to bottom, black 0, black 50%, transparent 50%);
  z-index: 0;
}

.backdrop-edge {
  position: absolute;
  left: 0;
  right: 0;
  top: 40%;
  height: 1px;
  background: rgba(160, 32, 240, 0.8);
  pointer-events: none;
  z-index: 1;
}

.nav-buttons {
   margin-left: auto;
  position: relative;
  z-index: 999;
  display: flex;
  flex-direction: row;
  align-items: right;
  padding-top: 3px;
  pointer-events: all;
  margin-bottom: 15px;
	padding-bottom: 5px;
}

.nav-buttons a {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.75);
  background: transparent;
  text-decoration: none;
  padding: 6px 16px;
  transition: color 0.4s ease;
}

.nav-buttons a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #a020f0;
  transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-buttons a.active {
  color: #a020f0;
  transition: color 0.5s ease;
}

.nav-buttons a:hover {
  color: #a020f0;
  transition: color 0.4s ease;
}

.nav-indicator {
  position: absolute;
  bottom: 0;
  height: 2px;
  background: #a020f0;
  border-radius: 2px;
  transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 0 8px rgba(160, 32, 240, 0.8),
              0 0 20px rgba(160, 32, 240, 0.4);
  pointer-events: none;
}
.nav-logo {
  color: #a020f0;
font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, sans-serif;
  font-size: 23px;
  font-weight: 750;
  z-index: 999;
  position: relative;
  margin-right: auto;
  margin-left: -5px;
	margin-bottom: 30px;
}


/* =====================
   Glassmorphism box
   ===================== */
.box {
  background: rgba(120, 0, 180, 0.08);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35),
              0 0 15px rgba(160, 32, 240, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(160, 32, 240, 0.35);
  height: auto;
  min-height: 120px;
}

/* =====================
   Slide up animation
   ===================== */
.slide-up-init {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.slide-up {
  opacity: 1;
  transform: translateY(0);
}

