body {
  background: #0a0e27;
  color: #6fc3df;
  font-family: "Orbitron", "Segoe UI", Arial, sans-serif;
  margin: 0;
  padding: 0;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(90deg, rgba(0, 194, 255, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(0, 194, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: 670px;
  margin: 2em auto 0 auto;
  padding: 2em;
  background: rgba(10, 14, 39, 0.85);
  border-radius: 8px;
  box-shadow: 
    0 0 30px rgba(0, 194, 255, 0.3),
    0 0 60px rgba(255, 56, 255, 0.2),
    inset 0 0 80px rgba(0, 194, 255, 0.05);
  border: 1px solid rgba(0, 194, 255, 0.4);
  position: relative;
  z-index: 1;
}

.container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent,
    #00c2ff,
    #ff38ff,
    #00c2ff,
    transparent
  );
  animation: scan 3s linear infinite;
}

@keyframes scan {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

header {
  text-align: center;
  margin-bottom: 1.5em;
}

.profile {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #00c2ff;
  margin-bottom: 1em;
  background: #0a0e27;
  box-shadow: 
    0 0 20px rgba(0, 194, 255, 0.6),
    0 0 40px rgba(0, 194, 255, 0.3),
    inset 0 0 20px rgba(0, 194, 255, 0.2);
  filter: brightness(1.1) contrast(1.2);
}

h1 {
  font-size: 2.1em;
  margin: 0;
  color: #00c2ff;
  text-shadow: 
    0 0 10px rgba(0, 194, 255, 0.8),
    0 0 20px rgba(0, 194, 255, 0.4);
  font-weight: 700;
  letter-spacing: 0.05em;
}

h2 {
  font-size: 1.25em;
  margin: 0.2em 0 0.1em 0;
  color: #8dd9f3;
  text-shadow: 0 0 8px rgba(141, 217, 243, 0.5);
}

h3 {
  font-size: 1.1em;
  color: #6fc3df;
  font-weight: normal;
  margin: 0 0 1em 0;
}

section {
  margin-bottom: 1.5em;
  padding: 1em;
  border-left: 2px solid rgba(0, 194, 255, 0.3);
  background: rgba(0, 194, 255, 0.02);
}

h4 {
  margin-bottom: 0.4em;
  color: #ff38ff;
  text-shadow: 0 0 10px rgba(255, 56, 255, 0.6);
  font-weight: 600;
  letter-spacing: 0.03em;
}

ul {
  list-style: none;
  margin: 0 0 0 1.5em;
  padding: 0;
}

ul li::before {
  content: '▹';
  color: #00c2ff;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  text-shadow: 0 0 5px rgba(0, 194, 255, 0.8);
}

a {
  color: #00d9ff;
  text-decoration: none;
  text-shadow: 0 0 5px rgba(0, 217, 255, 0.4);
  transition: all 0.3s ease;
  position: relative;
}

a:hover {
  color: #ff38ff;
  text-shadow: 0 0 10px rgba(255, 56, 255, 0.8);
  text-decoration: none;
}

a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #00c2ff, #ff38ff);
  transition: width 0.3s ease;
  box-shadow: 0 0 5px rgba(0, 194, 255, 0.8);
}

a:hover::after {
  width: 100%;
}

footer {
  text-align: center;
  margin: 2em 0 1em 0;
  color: #4a8fa0;
  font-size: 0.95em;
  text-shadow: 0 0 3px rgba(74, 143, 160, 0.3);
}
