* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html, body {
  height: 100%;
}

body {
  background: radial-gradient(circle at top, #12070b 0%, #070a12 65%);
  color: #eaeaea;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(45px);
  opacity: 0.25;
  z-index: -2;
  will-change: transform;
}

body::before {
  background: radial-gradient(circle, rgba(255, 60, 90, 0.18), transparent 60%);
  top: -150px;
  left: -150px;
}

body::after {
  background: radial-gradient(circle, rgba(255, 120, 90, 0.1), transparent 60%);
  bottom: -150px;
  right: -150px;
}

.shape {
  position: fixed;
  z-index: -1;
  opacity: 0.12;
  will-change: transform;
  animation: float 14s ease-in-out infinite;
}

.circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
}

.square {
  width: 90px;
  height: 90px;
  transform: rotate(45deg);
}

.shape.circle {
  background: rgba(255, 70, 110, 0.45);
}

.shape.square {
  background: rgba(255, 90, 70, 0.35);
}

@keyframes float {
  0% { transform: translate3d(0,0,0) rotate(0deg); }
  50% { transform: translate3d(0,-10px,0) rotate(8deg); }
  100% { transform: translate3d(0,0,0) rotate(0deg); }
}

#hero {
  text-align: center;
  padding: 70px 20px;
  background: rgba(15, 18, 30, 0.65);
  border-bottom: 1px solid rgba(255, 70, 110, 0.25);
}

#hero h1 {
  font-size: 44px;
  color: #ff3d5a;
}

section {
  padding: 45px 20px;
  max-width: 900px;
  margin: auto;
}

h2 {
  color: #ff4d6d;
  margin-bottom: 20px;
}

.project {
  background: rgba(15, 18, 30, 0.75);
  padding: 18px;
  margin-bottom: 15px;
  border-left: 4px solid #ff3d5a;
  border-radius: 12px;
  transition: transform 0.2s ease;
}

.project:hover {
  transform: translateY(-3px);
}

ul li {
  background: rgba(15, 18, 30, 0.75);
  margin: 8px 0;
  padding: 10px;
  border-radius: 8px;
  border-left: 3px solid #ff4d6d;
}

input, textarea {
  width: 100%;
  margin: 8px 0;
  padding: 10px;
  background: rgba(15, 18, 30, 0.9);
  border: 1px solid #1f2937;
  color: white;
  border-radius: 6px;
}

button {
  background: linear-gradient(135deg, #ff3d5a, #ff6b3d);
  border: none;
  padding: 10px;
  cursor: pointer;
  color: white;
  font-weight: bold;
  border-radius: 6px;
}

button:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}