/* THE SOFT GRIMOIRE V2.0 
   A Fusion of Whitehat Tech & Scandinavian Mysticism
*/

:root {
  --trans-blue: #55cdfc;
  --trans-pink: #f7a8b8;
  --soft-purple: #b18cb1;
  --cyber-dark: #121212;
  --glass-white: rgba(255, 255, 255, 0.85);
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', 'Ubuntu Mono', monospace; /* Monospace for the Hacker vibe */
  /* Background: A soft, radiant watercolor gradient that matches your PFP */
  background: radial-gradient(circle at center, #ffffff 0%, #fbc2eb 50%, #a6c1ee 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  text-align: center;
  /* Glassmorphism Effect: Modern and "Cozy" */
  background: var(--glass-white);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 45px 30px;
  border-radius: 40px;
  width: 380px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: transform 0.3s ease;
}

/* Runic Glow Effect for your New PFP */
.pfp-container {
    position: relative;
    display: inline-block;
    padding: 8px;
    background: linear-gradient(45deg, var(--trans-blue), var(--trans-pink), #fff);
    border-radius: 50%;
    animation: rune-glow 4s infinite alternate;
}

@keyframes rune-glow {
    from { box-shadow: 0 0 10px rgba(85, 205, 252, 0.3); }
    to { box-shadow: 0 0 25px rgba(177, 140, 177, 0.6); }
}

.profile-pic {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 4px solid white;
}

h1 {
  margin: 20px 0 0;
  font-size: 2.2rem;
  letter-spacing: 5px;
  color: #4a6fa5;
  font-weight: 900;
  text-transform: uppercase;
}

.username {
    color: var(--soft-purple);
    font-size: 15px;
    margin-bottom: 30px;
    font-weight: bold;
    letter-spacing: 1px;
}

.bio-section {
  margin-bottom: 25px;
  border-left: 3px solid var(--trans-pink); /* Soft accent line */
  padding-left: 15px;
  text-align: left;
}

.bio-section h3 {
  font-size: 11px;
  letter-spacing: 2px;
  color: #777;
  margin-bottom: 6px;
  text-transform: uppercase;
  font-family: 'Courier New', Courier, monospace; /* Tech feel */
}

.bio-section p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: #333;
  font-weight: 500;
}

.small-note {
    font-style: italic;
    font-size: 12px !important;
    color: #888 !important;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 35px;
}

.link {
  text-decoration: none;
  padding: 16px;
  border-radius: 20px;
  background: white;
  color: #5b7fb7;
  font-weight: bold;
  font-size: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border: 1px solid rgba(166, 193, 238, 0.5);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.link:hover {
  background: var(--cyber-dark); /* Turns into "Terminal" mode on hover */
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(177, 140, 177, 0.3);
}

footer {
  margin-top: 40px;
  font-size: 11px;
  line-height: 1.8;
  color: #aaa;
}