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

body, html {
  font-family: 'Inter', sans-serif;
  height: 100%;
  background: linear-gradient(to bottom, #0b274f, #071d3a);
  color: white;
}

.background {
  padding: 20px;
  min-height: 100vh;
  background: radial-gradient(circle at top, #112b5c, #0a1935);
  background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="5" cy="5" r="1" fill="white" opacity="0.3"/></svg>');
  background-repeat: repeat;
}

.header {
  display: flex;
  align-items: center;
  padding: 10px 0 40px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  font-size: 1.2rem;
  color: #a6d0ff;
}

.logo img {
  width: 28px;
  height: 28px;
  margin-right: 10px;
}

.main-content {
  text-align: center;
  padding: 20px;
}

.circle-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 15px auto;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-icon img {
  width: 40px;
  height: 40px;
}

.system-status {
  margin-top: 10px;
  font-size: 0.9rem;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 6px 14px;
  display: inline-block;
  border-radius: 20px;
  color: #c8e0ff;
}

.coming-soon {
  font-size: 3rem;
  margin: 20px 0 10px 0;
  color: #668cff;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.description {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: #dce7f7;
}

.features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.feature-box {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 12px;
  width: 250px;
  text-align: center;
}

.feature-box .icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.feature-box h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.feature-box p {
  font-size: 0.95rem;
  color: #c3d7f5;
}

#tsparticles {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.circle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 8rem; /* 128px */
  height: 8rem;
  border-radius: 9999px;
  background: linear-gradient(to bottom right, rgba(96, 165, 249, 0.2), rgba(37, 99, 235, 0.2));
  border: 1px solid rgba(96, 165, 249, 0.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  margin: 0 auto 1rem auto;
}

.circle-icon svg {
  width: 4rem;  /* 64px */
  height: 4rem;
  color: #60a5f9;
}

.logo-wrapper {
  position: relative;
  display: inline-block;
  width: fit-content;
}

.blur-bg {
  position: absolute;
  inset: -4px; /* expands slightly beyond the SVG */
  background-color: rgba(96, 165, 249, 0.2); /* blue with opacity */
  border-radius: 9999px; /* fully rounded circle */
  filter: blur(8px);
  z-index: 1; /* behind the SVG */
}

.blinking {
  animation: blink 2s infinite;
  opacity: 1;
  background: linear-gradient(45deg, #4a90e2, #7bb3f0, #9ac8f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(74, 144, 226, 0.5);
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.description {
  color: #b8c6db;
  max-width: 600px;
  line-height: 1.6;

}


/* Animated starry background */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: twinkle 3s infinite ease-in-out;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

