:root {
  --bg: #050505;
  --text: #ffffff;
  --accent: #00AEEF;
  --font-main: 'Outfit', sans-serif;
}

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

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

/* Background Effects */
.bg-vignette {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}

.blob-container {
  position: fixed;
  inset: 0;
  z-index: 0;
  filter: blur(80px);
  opacity: 0.4;
}

.blob {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--accent);
  animation: move 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.blob-1 { top: -10%; left: -10%; }
.blob-2 { bottom: -10%; right: -10%; animation-delay: -5s; }

@keyframes move {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(200px, 100px) scale(1.2); }
}

/* Minimal Container */
.minimal-container {
  position: relative;
  z-index: 10;
  text-align: center;
  width: 90%;
  max-width: 600px;
}

.logo {
  max-width: 280px;
  height: auto;
  margin-bottom: 4rem;
  filter: drop-shadow(0 0 20px rgba(0, 174, 239, 0.3));
}

.content h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  letter-spacing: -2px;
  margin-bottom: 1rem;
  line-height: 1;
}

.brand-tag {
  font-size: 1.2rem;
  letter-spacing: 10px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 300;
  margin-top: 1rem;
  opacity: 0.8;
}

/* Progress indicator */
footer {
  margin-top: 5rem;
  width: 100%;
}

.progress-bar {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.fill {
  width: 40%;
  height: 100%;
  background: var(--accent);
  animation: slide 3s infinite ease-in-out alternate;
}

@keyframes slide {
  from { transform: translateX(-100%); width: 20%; }
  to { transform: translateX(500%); width: 40%; }
}

.contact-details {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  opacity: 0.7;
}

.contact-link {
  color: #ffffff !important;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.contact-link:hover {
  color: var(--accent) !important;
  opacity: 1;
}

.sep {
  color: rgba(255, 255, 255, 0.2);
  font-weight: 100;
}

/* Responsiveness */
@media (max-width: 640px) {
  .logo {
    max-width: 200px;
  }
  .content h1 {
    font-size: 2.5rem;
  }
}
