:root {
  --primary: #c6ff00; /* Neon Green */
  --bg-dark: #0a0a0a;
  --bg-card: #141414;
  --text-main: #ffffff;
  --text-muted: #888888;
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-family);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  overflow-x: hidden;
}

/* Background gradient blobs */
body::before, body::after {
  content: '';
  position: fixed;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  z-index: -1;
  filter: blur(150px);
  opacity: 0.15;
}

body::before {
  background: var(--primary);
  top: -10%;
  left: -10%;
}

body::after {
  background: #3d5afe;
  bottom: -10%;
  right: -10%;
}

.container {
  max-width: 600px;
  width: 100%;
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 2rem;
  padding: 3rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 2rem;
  background: linear-gradient(to bottom right, #fff, #888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

.brand {
  color: var(--primary);
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 0.5rem;
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 1.25rem;
  border: 1px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--glass-border);
  transform: translateX(10px);
}

.icon {
  width: 3rem;
  height: 3rem;
  background: rgba(198, 255, 0, 0.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.details h3 {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.2rem;
}

.details p {
  font-size: 1.1rem;
  font-weight: 500;
}

.socials {
  margin-top: 3rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.social-link {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--text-main);
}

.social-link:hover {
  background: var(--primary);
  color: var(--bg-dark);
  transform: translateY(-5px) scale(1.1);
  border-color: var(--primary);
}

@media (max-width: 480px) {
  .container {
    padding: 2rem;
  }
  h1 {
    font-size: 2.5rem;
  }
}
