:root {
  --bg: #050505;
  --surface: rgba(26, 26, 26, 0.6);
  --surface-hover: rgba(40, 40, 40, 0.8);
  --border: rgba(255, 255, 255, 0.08);
  --accent: #d4ff00;
  --accent-glow: rgba(212, 255, 0, 0.3);
  --text: #ffffff;
  --text-muted: #a0a0a0;
  --font-main: Arial, Helvetica, sans-serif;
  --font-heading: Arial, Helvetica, sans-serif;
  --card-radius: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-main);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.bg-glow {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100vh;
  background: 
    radial-gradient(circle at 50% -20%, var(--accent-glow) 0%, transparent 50%),
    radial-gradient(circle at -10% 50%, rgba(212, 255, 0, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 110% 80%, rgba(212, 255, 0, 0.05) 0%, transparent 40%);
  z-index: -1;
  pointer-events: none;
}

.noise-overlay {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
  z-index: -1;
  pointer-events: none;
  opacity: 0.4;
}

.container {
  width: 100%;
  max-width: 520px;
  padding: 60px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ==========================================================================
   HEADER & PROFILE COMMON STYLES
   ========================================================================== */
.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 48px;
}

.avatar-wrapper {
  position: relative;
  padding: 8px;
  margin-bottom: 24px;
}

.avatar-border {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed var(--accent);
  opacity: 0.3;
  animation: spin-slow 12s linear infinite;
}

.avatar {
  width: 100px;
  height: 100px;
  background: var(--surface);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 0 30px var(--accent-glow);
  position: relative;
  z-index: 2;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge {
  background: rgba(212, 255, 0, 0.1);
  border: 1px solid rgba(212, 255, 0, 0.2);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge i {
  font-size: 8px;
}

.name {
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
}

.brand-logo {
  max-width: 150px;
  height: auto;
  display: block;
}

.tagline {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 340px;
  font-weight: 400;
}

/* ==========================================================================
   FOOTER & SOCIALS COMMON STYLES
   ========================================================================== */
.socials {
  display: flex;
  gap: 16px;
  margin-top: 48px;
}

.social-link {
  width: 50px;
  height: 50px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--text);
}

.social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}

.footer {
  margin-top: 60px;
  margin-bottom: 40px;
  text-align: center;
}

.footer-text {
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.5;
}

