/* Base reset */

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
background-color: #0c0117; background-image: linear-gradient(#222 1px, transparent 1px), linear-gradient(90deg, #222 1px, transparent 1px); background-size: 40px 40px;
  color: #eee;      /* light text for readability */
}
/* Site title */

.site-title {
  font-size: 2.5em;
  margin: 0;
  color: #ffe1f0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 0 0 8px #0ff;
}

/* Site description */
.site-description {
  margin-top: 8px;
  font-size: 1.1em;
  color: #bbb;
  font-style: italic;
}

.visitor-section {
  text-align: center;
  margin-top: 4px;
}

.visitor-ip {
  font-size: 1.2em;
  color: #0ff; /* cyan glow */
  text-shadow: 0 0 6px #0ff, 0 0 12px #0ff;
  letter-spacing: 0.05em;
  position: relative;
  animation: flicker 2s infinite;
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  45% { opacity: 0.9; }
  46% { opacity: 0.4; }
  48% { opacity: 1; }
}












.stay-tuned { display: inline-block;
  font-size: 2em;
  font-weight: bold;
  color: #ff0;              /* yellow fill */
  padding: 10px 18px;       /* spacing to make it circular */
  margin-right: 8px;        /* space before next letters */
  text-shadow: 0 0 6px #ff0;


}

a:hover {
  color: #ff0;
  text-shadow: 0 0 6px #ff0;
}

/* Banner */
.cyber-banner {
  text-align: center;
  padding-left:20px;
padding-right:20px;
}

.pulse-title {
  font-size: 3em;
  margin: 0;
  color: #0ff;
}

.pulse-sub {
  font-size: 1.2em;
  margin-top: 10px;
  color: #ccc;
}

/* Content */
.cyber-content {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  line-height: 1.6;
}




.pulse-sub {
  font-size: 1.2em;
  color: #0ff;
  text-align: center;
  margin-top: 10px;
  text-shadow: 0 0 6px #0ff;
  animation: pulseFade 2.5s infinite ease-in-out;
}

@keyframes pulseFade {
  0%   { opacity: 1; text-shadow: 0 0 6px #0ff; }
  50%  { opacity: 0.6; text-shadow: 0 0 12px #0ff; }
  100% { opacity: 1; text-shadow: 0 0 6px #0ff; }
}





.we-declare {
  font-size: 2em;
  color: #f72585; /* neon magenta */
  text-align:left;
  margin: 40px 0 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-shadow: 0 0 8px #f72585, 0 0 16px #f72585;
  animation: declarePulse 3s infinite ease-in-out;
}

@keyframes declarePulse {
  0%   { text-shadow: 0 0 8px #f72585, 0 0 16px #f72585; }
  50%  { text-shadow: 0 0 16px #ff4fa0, 0 0 32px #f72585; }
  100% { text-shadow: 0 0 8px #f72585, 0 0 16px #f72585; }
}








.paragraph,.welcome-paragraph {
  font-size: 1.1em;
  text-align: center;
  line-height: 1.7;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #7400b8, #f72585, #4314ba);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 6px #000; /* subtle depth */
}


.cyber-footer {
  text-align: center;
  font-size: 0.9em;
  color: #888;
  margin-top: 60px;
  padding-bottom: 20px;
  text-shadow: 0 0 4px #4cc9f0;
  letter-spacing: 0.05em;
  font-style: italic;
}



.cyber-header {
  background: radial-gradient(circle at top, #260119, #0c0117 70%);
  padding: 30px 20px;
  text-align: center;
  border-bottom: 2px solid #222; /* subtle divider */
}




body {
  background-color: #0c0117;
  background-image: 
    linear-gradient(#222 1px, transparent 1px),
    linear-gradient(90deg, #330118 1px, transparent 1px);
  background-size: 40px 40px;
  animation: gridBreath 6s ease-in-out infinite, gridDrift 20s ease-in-out infinite alternate;
}

@keyframes gridDrift {
  0%   { background-position: 0 0; }
  100% { background-position: 100px 100px; }
}


.meteor {
  position: fixed;
  top: -100px;
  right: 0; /* start from the right edge */
  width: 2px;
  height: 80px;
  background: linear-gradient(to bottom, #f72585, transparent);
  opacity: 0.6;
  transform: rotate(-45deg); /* tilt streak toward the left */
  animation: fallMeteor 4s linear infinite;
}

@keyframes fallMeteor {
  0% {
    transform: translateX(0) translateY(0) rotate(-125deg);
    opacity: 0.6;
  }
  100% {
    transform: translateX(-500px) translateY(100vh) rotate(-125deg);
    opacity: 0;
  }
}


.meteor {
  position: fixed;
  top: -100px;
  right: 0;
  width: 2px;
  background: linear-gradient(to bottom, #f72585, transparent);
  opacity: 0.6;
  transform: rotate(-45deg);
  animation: fallMeteor 4s linear infinite;
}

@keyframes fallMeteor {
  0% {
    transform: translateX(0) translateY(0) rotate(-125deg);
    opacity: 0.6;
  }
  100% {
    transform: translateX(-500px) translateY(100vh) rotate(-125deg);
    opacity: 0;
  }
}
