/* Title Position Fix */

.title-box {
  margin: 40px 0 25px 0;   /* Controls vertical position */
}

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

/* Body */

body {
  font-family: 'Inter', sans-serif;
  background: radial-gradient(circle at 30% 20%, #0f0f0f, #000);
  color: #ddd;
  min-height: 100vh;
}


/* Header */

header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 15px 30px;
  background: rgba(20,20,20,0.85);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid #333;
  z-index: 1000;
}

.logo-box img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  box-shadow: 0 0 10px #000;
}

header h1 {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  color: #fff;
  letter-spacing: 1px;
}


/* Hero Section */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  padding-top: 12vh;   /* Space for fixed header */
  padding-left: 20px;
  padding-right: 20px;

  animation: fadeUp 1s ease;
}


/* Main Heading */

.hero h2 {
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  color: #fff;

  animation: glow 2s infinite alternate;

  text-transform: none;
  letter-spacing: 1px;
}


/* Paragraph */

.hero p {
  color: #aaa;
  margin: 20px 0 40px;
  line-height: 1.6;
  max-width: 600px;
}


/* Card */
.card {
  background: rgba(25,25,25,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid #333;
  border-radius: 15px;
  padding: 30px;
  width: 100%;
  max-width: 400px;

  margin-top: 10px;   /* NEW */

  box-shadow: 0 0 25px rgba(255,255,255,0.05);
}

.card h3 {
  margin-bottom: 20px;
  color: #fff;
}


/* Buttons */

.btn {
  display: block;
  padding: 12px;
  margin: 12px 0;

  border: 2px solid #555;
  border-radius: 10px;

  color: #fff;
  text-decoration: none;
  background: transparent;

  transition: all 0.3s ease;
}

.btn:hover {
  background: #222;
  border-color: #888;

  box-shadow: 0 0 15px rgba(255,255,255,0.15);
  transform: scale(1.05);
}


/* Footer */

footer {
  margin-top: 80px;
  padding: 20px;
  text-align: center;
  color: #888;
}


/* Animations */

@keyframes glow {
  from {
    text-shadow: 0 0 4px #555;
  }
  to {
    text-shadow: 0 0 12px #aaa;
  }
}

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


/* Mobile Optimization */

@media (max-width: 600px) {

  header h1 {
    font-size: 22px;
  }

  .hero h2 {
    font-size: 38px;
  }

  .card {
    padding: 25px;
  }

  }
