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

@keyframes titlePulse {
  0%, 100% {
    text-shadow: 0 0 18px rgba(255,45,45,.35);
  }
  50% {
    text-shadow: 0 0 32px rgba(255,45,45,.55);
  }
}

.hero h1 {
  animation: titlePulse 4s ease-in-out infinite;
}

body {
  font-family: "Segoe UI", system-ui, sans-serif;
  background: radial-gradient(circle at top, #140000, #000);
  color: #e5e5e5;
  min-height: 100vh;
}

/* HERO */
.hero {
  text-align: center;
  padding: 110px 20px 90px;
}

.hero h1 {
  font-size: 3.6rem;
  letter-spacing: 4px;
  color: #ff2d2d;
  text-shadow: 0 0 25px rgba(255,45,45,.35);
}

.subtitle {
  margin-top: 14px;
  font-size: 1.25rem;
  opacity: 0.85;
}

.ip-container {
  display: flex;
  justify-content: center;
  gap: 20px; /* space between boxes */
  margin: 20px 0;
  flex-wrap: wrap; /* stacks on smaller screens */
}

/* IP BOX */
.ip-box {
  flex: 1; /* equal width */
  max-width: 250px; /* optional max width */
  background: #1a0b0b;
  border: 2px solid #ff0000;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.ip-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 10px #ff0000;
}

.ip-box span {
  display: block;
  font-size: 0.9rem;
  color: #ff5555;
}

.ip-box small {
  display: block;
  font-size: 0.8rem;
  color: #ccc;
  margin-top: 3px;
}

.ip-box strong {
  display: block;
  font-size: 1.1rem;
  margin: 5px 0;
  color: #fff;
}

/* BUTTONS */
.buttons {
  margin-top: 30px;
}

.buttons a {
  display: inline-block;
  margin: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  background: linear-gradient(135deg, #ff2d2d, #b30000);
  color: #000;
  transition: transform .15s ease, box-shadow .15s ease;
}

.buttons a:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(255,45,45,.4);
}

.buttons .secondary {
  background: transparent;
  border: 2px solid #ff2d2d;
  color: #ff2d2d;
}

/* INFO SECTION */
.info {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card {
  background: rgba(15,0,0,.75);
  border: 1px solid #3a0000;
  border-radius: 16px;
  padding: 30px;
}

.card h2 {
  margin-bottom: 12px;
  color: #ff2d2d;
}

.card ul {
  list-style: none;
}

.card li {
  margin-bottom: 8px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 30px;
  font-size: .9rem;
  opacity: .55;
}

.embers {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.embers span {
  position: absolute;
  bottom: -10px;
  width: 4px;
  height: 4px;
  background: rgba(255,80,60,.8);
  border-radius: 50%;
  animation: rise linear infinite;
}

@keyframes rise {
  from {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  to {
    transform: translateY(-120vh) scale(0);
    opacity: 0;
  }
}

/* Navbar */
.navbar {
  width: 100%;
  background: #b71c1c; /* dark red */
  color: #fff;
  position: relative; /* changed from fixed */
  top: 0;
  left: 0;
  z-index: 1; /* you can keep low since it scrolls away */
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-container .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #ff5252; /* lighter red on hover */
}

