/* BODY */
body {
  margin: 0;
  font-family: Arial;

  /* Your high-res Naruto background */
  background: url("https://raw.githubusercontent.com/Alatheesh/PERSONAL_WEBSITE/main/images/naruto-uzumaki-5120x2880-18685.jpg") no-repeat center center/cover;

  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;

  position: relative;
  overflow: hidden;
}

/* 🌫️ LIGHT OVERLAY */
body::before {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.30);
  top: 0;
  left: 0;
  z-index: 0;
}

/* HERO */
.hero {
  position: relative;
  text-align: center;
  color: white;
  z-index: 1;
}

/* 💎 SUBTLE CARD */
.glass-card {
  padding: 30px 40px;
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);

  border: 1px solid rgba(255,255,255,0.1);

  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);

  animation: float 6s ease-in-out infinite;
}

/* FLOAT */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

/* 🔥 TITLE (FIXED) */
.hero h1 {
  font-size: 48px;
  margin-bottom: 10px;

  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

/* SUBTITLE */
.subtitle {
  font-size: 18px;
  opacity: 0.95;
  margin-bottom: 25px;

  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

/* 🔥 BUTTON */
.premium-btn {
  padding: 12px 22px;
  font-size: 15px;

  border: none;
  border-radius: 8px;

  background: rgba(0, 123, 255, 0.85);
  color: white;

  cursor: pointer;
  transition: 0.3s;
}

.premium-btn:hover {
  transform: scale(1.05);
  background: rgba(0, 123, 255, 1);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

/* FOOTER */
.footer {
  position: fixed;
  bottom: 10px;
  width: 100%;
  text-align: center;

  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);

  z-index: 2;
}

/* 🔘 NEW PREMIUM CORNER LOGO */
.logo-link {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 100;
  text-decoration: none;
}

/* 🔘 NEW PREMIUM CORNER LOGO */
.top-corner-logo {
  width: 100px;      /* Increased from 55px */
  height: 100px;     /* Increased from 55px */
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 15px rgba(0, 191, 255, 0.6); /* Slightly stronger glow for the larger size */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
}

.logo-link:hover .top-corner-logo {
  transform: scale(1.1);
  box-shadow: 0 0 22px rgba(0, 191, 255, 0.9);
}

/* 🔥 VISITOR BOX */
#visitorBox {
  position: fixed;
  top: 20px;
  right: 20px;

  padding: 6px 12px;
  border-radius: 10px;

  background: rgba(0, 0, 0, 0.4);
  color: white;

  font-size: 13px;
  font-weight: 500;

  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);

  z-index: 10;
  transition: 0.3s;
}

#visitorBox:hover {
  transform: scale(1.05);
}

/* 📱 MOBILE */
@media (max-width: 768px) {
  .glass-card {
    padding: 20px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .subtitle {
    font-size: 15px;
  }

  .premium-btn {
    width: 100%;
  }
}
