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

:root {
  --cyan: #29b6f6;
  --teal: #3ee6c4;
  --yellow: #f4e04d;
  --bg: #101317;
  --bg-2: #171b21;
}

html, body {
  height: 100%;
  background: var(--bg);
  overflow: hidden;
}

body {
  font-family: 'Rajdhani', sans-serif;
  color: #e8f1f5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

#bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse at 50% 35%, var(--bg-2) 0%, var(--bg) 70%);
}

.grid-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(41,182,246,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41,182,246,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 40%, black 0%, transparent 75%);
}

.container {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 32px;
  max-width: 620px;
}

.logo-wrap {
  margin-bottom: 28px;
  animation: floaty 5s ease-in-out infinite;
}

.logo {
  max-width: 320px;
  width: 80%;
  filter: drop-shadow(0 0 22px rgba(41,182,246,0.35));
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.headline {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  letter-spacing: 0.12em;
  color: #dff4ff;
  text-shadow: 0 0 18px rgba(41,182,246,0.35);
}

.headline span {
  background: linear-gradient(90deg, var(--cyan), var(--teal), var(--yellow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subline {
  margin-top: 14px;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #9fb4c0;
}

.divider {
  width: 90px;
  height: 3px;
  margin: 34px auto;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--teal), var(--yellow));
  box-shadow: 0 0 14px rgba(62,230,196,0.5);
}

.contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #cfe8f0;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 10px 22px;
  border: 1px solid rgba(62,230,196,0.25);
  border-radius: 999px;
  background: rgba(41,182,246,0.05);
  transition: all 0.25s ease;
  min-width: 240px;
  justify-content: center;
}

.contact-item:hover {
  border-color: var(--teal);
  background: rgba(62,230,196,0.12);
  box-shadow: 0 0 20px rgba(62,230,196,0.25);
  transform: translateY(-2px);
}

.icon {
  width: 18px;
  height: 18px;
  fill: var(--teal);
  flex-shrink: 0;
}

.footer {
  position: fixed;
  bottom: 18px;
  left: 0;
  right: 0;
  z-index: 2;
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: #5a6b74;
}

@media (max-width: 480px) {
  .contact-item { min-width: unset; width: 100%; }
}
