<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  --primary-gradient: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%, #4776E6 200%);
  --bubble-blur: 16px;
  --text-shadow-light: rgba(255, 255, 255, 0.7);
  --shadow-color: rgba(31,38,135,0.37);
  --inset-shadow: rgba(255,255,255,0.1);
  --contact-bg: rgba(255,255,255,0.13);
  --contact-hover-bg: rgba(255,255,255,0.22);
  --gradient-text: linear-gradient(90deg, #fff 0%, #e0eaff 50%, #fff 100%);
}

/* Reset and base styles */
body, html {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  background: var(--primary-gradient);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Enhanced animated background overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.9) 0%, rgba(163,201,255,0.7) 20%, transparent 70%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.8) 0%, rgba(255,231,163,0.6) 25%, transparent 70%),
    radial-gradient(circle at 60% 20%, rgba(255,182,255,0.7) 0%, rgba(255,182,255,0.4) 30%, transparent 70%);
  filter: blur(var(--bubble-blur));
  animation: moveBg 15s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes moveBg {
  0% {
    background-position: 0% 0%, 100% 100%, 50% 20%;
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
  100% {
    background-position: 20% 20%, 80% 80%, 60% 30%;
    opacity: 0.8;
  }
}

.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.content-wrapper {
  background: rgba(255,255,255,0.18);
  padding: 2.5rem 3.5rem;
  border-radius: 2rem;
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  backdrop-filter: blur(16px) saturate(180%);
  border: 1.5px solid rgba(255,255,255,0.25);
  box-shadow: 
    0 8px 32px var(--shadow-color),
    0 0 20px var(--inset-shadow) inset;
  animation: glowPulse 3s ease-in-out infinite;
}

.logo-area {
  background: transparent; /* Removed rectangle background */
  padding: 0;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center; /* Centers the logo text */
}

@keyframes glowPulse {
  0%, 100% {
    box-shadow: 
      0 8px 16px var(--shadow-color),
      0 0 16px var(--inset-shadow) inset;
  }
  50% {
    box-shadow: 
      0 8px 16px rgba(31,38,135,0.5),
      0 0 16px rgba(255,255,255,0.2) inset;
  }
}

.logo-text {
  font-size: 2.7rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2.5px;
  text-shadow: 
    0 0 20px var(--text-shadow-light),
    0 2px 8px rgba(30,60,114,0.8);
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.5));
}

.cursor {
  font-size: 2.7rem;
  color: #fff;
  margin-left: 5px;
  animation: blink 1s steps(2, start) infinite;
  text-shadow: 0 0 10px rgba(255,255,255,0.8);
}

@keyframes blink {
  to { opacity: 0; }
}

.contact {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #fff;
  text-decoration: none;
  background: var(--contact-bg);
  padding: 0.85rem 1.8rem;
  border-radius: 1.2rem;
  transition: all 0.3s ease;
  font-weight: 500;
  box-shadow: 0 2px 12px rgba(30,60,114,0.13);
  border: 1px solid rgba(255,255,255,0.18);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  font-size: 1.08rem;
  position: relative;
  overflow: hidden;
}

.contact-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.contact-item:hover {
  background: var(--contact-hover-bg);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 18px rgba(30,60,114,0.18), 0 0 15px var(--inset-shadow);
}

.contact-item:hover::before {
  left: 100%;
}

.icon {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1) drop-shadow(0 0 4px rgba(255,255,255,0.5));
  transition: transform 0.3s ease;
}

.contact-item:hover .icon {
  transform: scale(1.1);
}

.coming-soon {
  margin-top: 1.5rem;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  background: rgba(255,255,255,0.13);
  padding: 0.85rem 2.5rem;
  border-radius: 1.2rem;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: var(--gradient-text);
  background-size: 200% auto;
  animation: gradientShift 3s ease infinite;
  text-shadow: 0 0 10px rgba(255,255,255,0.8);
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@media (max-width: 600px) {
  .logo-area {
    padding: 1.2rem 1.5rem;
    border-radius: 1.1rem;
  }
  
  .logo-text, .cursor {
    font-size: 1.5rem;
  }
  
  .contact {
    gap: 1rem;
    padding: 0 1rem;
  }
  
  .contact-item {
    padding: 0.7rem 1.2rem;
    font-size: 0.98rem;
    width: 100%;
    justify-content: center;
  }
  
  .coming-soon {
    font-size: 1.2rem;
    padding: 0.7rem 1.5rem;
    border-radius: 0.8rem;
  }
}</pre></body></html>