body {
  margin: 0;
  background: #0d1117;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.center-logo {
  position: absolute;
  width: 200px;
  height: 200px;
  z-index: 2;
}

.center-logo img {
  width: 100%;
}

.domain-icon {
  position: absolute;
  width: 180px; /* increased from 80px */
  height: 180px;
  opacity: 0;
  transition: transform 1s ease-out, opacity 1s ease-out;
  border-radius: 50%;
  backdrop-filter: blur(8px);
  z-index: 1;
}

.domain-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .domain-icon {
    width: 70px;
    height: 70px;
  }

  .center-logo {
    width: 70px;
    height: 70px;
  }

  .center-logo::before {
    width: 150px;
    height: 150px;
  }
}

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

.domain-icon.animated {
  animation: bob 3s infinite ease-in-out;
}
#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.domain-icon:hover {
  transform: scale(1.1) translate(var(--x), var(--y));
  z-index: 3;
}

.domain-icon::after {
  content: attr(data-name);
  position: absolute;
  bottom: -25px;
  font-size: 0.9rem;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.domain-icon:hover::after {
  opacity: 1;
}
.center-logo::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(0, 194, 255, 0.4), transparent);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  animation: pulse 2s infinite ease-in-out;
  z-index: -1;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.domain-icon {
  position: absolute;
  width: 200px;
  height: 120px;
  opacity: 0;
  border-radius: 16px;
  z-index: 1;
  transition: transform 1s ease-out, opacity 1s ease-out;
}

.domain-icon::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  border-radius: 20px;
  background: linear-gradient(90deg, #00f0ff, #626f87, #8000c0, #00f0ff);
  background-size: 300% 100%;
  animation: glowflow 3s linear infinite;
  padding: 2px;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: destination-out;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Show border effect only on hover */
.domain-icon:hover::before {
  opacity: 1;
}


/* Subtle glow behind the logo */
.domain-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background: radial-gradient(
    circle,
    rgba(0, 240, 255, 0.1),
    transparent
  );
  z-index: -2;
  filter: blur(8px);
  opacity: 0.8;
}

/* Keyframes for rotating the gradient around border */
@keyframes rotateBorder {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.domain-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 16px;
  display: block;
  z-index: 2;
  position: relative;
}
@keyframes glowflow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 300% 50%;
  }
}
.domain-icon::after {
  animation: subtlePulse 4s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.15), 0 0 25px rgba(0, 240, 255, 0.05);
}

@keyframes subtlePulse {
  0%, 100% {
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.15), 0 0 25px rgba(0, 240, 255, 0.05);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3), 0 0 40px rgba(0, 240, 255, 0.08);
    transform: scale(1.015);
  }
}
.svg-background {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-svg {
  position: absolute;
  width: 30px;
  opacity: 0.08;
  animation: floatSvg 6s ease-in-out infinite;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.05));
}

@keyframes floatSvg {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-5px) scale(1.05);
  }
}

.binary-rain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -2;
  overflow: hidden;
}

.binary-rain span {
  position: absolute;
  font-family: monospace;
  font-weight: bold;
  color: rgb(255, 255, 255);
  animation: fall linear infinite;
  pointer-events: none;
  user-select: none;
  -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;

}

@keyframes fall {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  20% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(100vh);
    opacity: 0;
  }
}

body {
  cursor: none !important;
}
.cursor-dot,
.cursor-trail {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

.cursor-dot {
  width: 10px;
  height: 10px;
  background: rgba(0, 240, 255, 1);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.7), 0 0 25px rgba(0, 240, 255, 0.4);
}

.cursor-trail {
  width: 30px;
  height: 30px;
  background: rgba(0, 240, 255, 0.15);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.3);
  filter: blur(12px);
  transition: transform 0.15s ease-out;
}
.cursor-trail {
  width: 30px;
  height: 30px;
  background: rgba(0, 240, 255, 0.2); /* increase opacity */
  box-shadow: 0 0 35px rgba(0, 240, 255, 0.45); /* stronger glow */
  filter: blur(10px);
  transition: transform 0.2s ease-out;
}
.particle {
  position: fixed;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 240, 255, 0.7);
  box-shadow: 0 0 8px rgba(0, 240, 255, 0.5);
  pointer-events: none;
  z-index: 9998;
  animation: particle-fade 0.8s ease-out forwards;
}

@keyframes particle-fade {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.5) translateY(-5px);
  }
}
.ripple {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(0,240,255,0.4), transparent);
  transform: translate(-50%, -50%) scale(0);
  animation: ripple-effect 1s ease-out forwards;
  z-index: 999;
}

@keyframes ripple-effect {
  to {
    transform: translate(-50%, -50%) scale(10);
    opacity: 0;
  }
}
.top-tagline {
  position: absolute;
  top: 3%;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #00f0ff, #ffffff, #8e61ff);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineSweep 4s ease-in-out infinite, fadeUp 2s ease-out forwards;
  opacity: 0;
  z-index: 5;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.15), 0 0 20px rgba(0, 240, 255, 0.1);
  position: absolute;
}

.top-tagline::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: radial-gradient(circle, #00f0ff88 0%, transparent 70%);
  box-shadow: 0 0 12px #00f0ff55;
  border-radius: 2px;
}
@keyframes shineSweep {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes fadeUp {
  from {
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}


.left-brand-label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-align: center;
  color: #00f0ff;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 1px;
  opacity: 0.15;
  background: rgba(255, 255, 255, 0.04);
  padding: 8px 4px;
  border-radius: 10px;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 10px #00f0ff44;
  z-index: 2;
  transition: opacity 0.3s ease, transform 0.4s ease;
}
.left-brand-label:hover {
  opacity: 0.4;
  transform: translateY(-50%) scale(1.05);
}

.right-domain-labels {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: 'Orbitron', sans-serif;
  z-index: 2;
}

.right-domain-labels span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(120deg, #00f0ff44, #8e61ff22);
  padding: 4px 12px;
  border-radius: 20px;
  backdrop-filter: blur(5px);
  box-shadow: 0 0 6px rgba(0, 240, 255, 0.15);
  transition: all 0.3s ease;
}

.right-domain-labels span:hover {
  color: #00f0ff;
  background: #ffffff09;
  transform: scale(1.05);
  box-shadow: 0 0 15px #00f0ff55;
}

.scroll-indicator {
  position: absolute;
  bottom: 3%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.95rem;
  font-weight: 500;
  font-family: 'Orbitron', sans-serif;
  color: #00f0ff;
  letter-spacing: 1px;
  opacity: 0.7;
  z-index: 3;
  animation: bounceText 2.5s infinite ease-in-out;
  text-shadow: 0 0 5px #00f0ff66, 0 0 15px #00f0ff33;
}

@keyframes bounceText {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-5px);
  }
}
@media (max-width: 1024px) {
  .top-tagline {
    font-size: 1rem;
    top: 2%;
  }

  .left-brand-label {
    font-size: 0.9rem;
    left: 8px;
  }

  .right-domain-labels span {
    font-size: 0.75rem;
    padding: 3px 10px;
  }

  .scroll-indicator {
    font-size: 0.85rem;
  }

  .center-logo {
    width: 130px;
    height: 130px;
  }

  .center-logo::before {
    width: 200px;
    height: 200px;
  }

  .domain-icon {
    width: 120px;
    height: 80px;
  }
}

@media (max-width: 768px) {
  .top-tagline {
    font-size: 0.9rem;
    text-align: center;
    top: 1.5%;
    line-height: 1.3;
    margin-top: 100px;
  }

  .left-brand-label {
    font-size: 0.75rem;
    padding: 4px 2px;
    left: 5px;
    display: none;
  }

  .right-domain-labels {
    right: 5px;
    display: none;
  }

  .right-domain-labels span {
    font-size: 0.7rem;
    padding: 3px 8px;
    gap: 8px;
  }

  .scroll-indicator {
    font-size: 0.8rem;
    bottom: 2%;
  }

  .center-logo {
    width: 100px;
    height: 100px;
  }

  .center-logo::before {
    width: 120px;
    height: 120px;
  }

  .domain-icon {
    width: 130px;
    height: 70px;
  }

  .bg-svg {
    width: 20px;
    opacity: 0.06;
  }
}

@media (max-width: 480px) {
  .top-tagline {
    font-size: 0.8rem;
  }

  .left-brand-label {
    font-size: 0.65rem;
    display: none;
  }
  .right-domain-labels{
    display: none;
  }

  .scroll-indicator {
    font-size: 0.75rem;
  }

  .domain-icon {
    width: 150px;
    height: 55px;
  }

  .center-logo {
    width: 100px;
    height: 100px;
  }

  .center-logo::before {
    width: 120px;
    height: 120px;
  }
}
