/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #0a0f1a;
  color: white;
  cursor: default;
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background-color: #111b31;
}

/* Logo */
.nav-logo {
  height: 45px;
}

/* Buttons container */
.nav-buttons {
  display: flex;
  gap: 15px;
}

/* ===== RESPONSIVE (Mobile) ===== */
@media (max-width: 768px) {

  .navbar {
    flex-direction: column;   /* Stack items */
    align-items: center;      /* Center everything */
    padding: 20px;
  }

  .nav-logo {
    margin-bottom: 15px;      /* Space below logo */
  }

  .nav-buttons {
    flex-direction: column;   /* Buttons stack */
    width: 100%;
    align-items: center;
  }

  .nav-buttons a {
    width: 80%;               /* Buttons wider on mobile */
    text-align: center;
  }
}

/* ===== HERO ===== */
.hero {
  text-align: center;
  padding: 120px 20px 80px;
  max-width: 900px;
  margin: auto;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  opacity: 0.8;
}

.hero-buttons {
  margin-top: 40px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: linear-gradient(90deg, #00f5ff, #00ffae);
  color: #0a0f1a;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn-primary:hover {
  box-shadow: 0 0 20px #00f5ff;
}

.btn-outline {
  border: 2px solid #00f5ff;
  color: #00f5ff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  margin-left: 15px;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #00f5ff;
  color: #0a0f1a;
}

.small {
  padding: 8px 20px;
  font-size: 14px;
}

/* ===== ABOUT ===== */
.about {
  padding: 80px 20px;
  text-align: center;
  max-width: 800px;
  margin: auto;
}

.about h2 {
  margin-bottom: 20px;
  color: #00f5ff;
}

.about p {
  line-height: 1.6;
  opacity: 0.85;
}

/* ===== CREATOR ===== */
.creator {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.creator-card {
  background: #111827;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  width: 320px;
  box-shadow: 0 0 30px rgba(0,255,255,0.1);
}

.creator-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 4px solid #00f5ff;
  object-fit: cover;
  margin-bottom: 20px;
}

.creator-card h3 {
  margin-bottom: 15px;
}

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  margin: 0 10px;
  font-size: 20px;
  color: #00f5ff;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #00ffae;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .navbar {
    padding: 20px;
  }

  .hero h1 {
    font-size: 28px;
  }
}





/* ===== OPENROUTER SECTION ===== */
.openrouter-section {
  padding: 100px 20px;
  display: flex;
  justify-content: center;
}

.openrouter-container {
  max-width: 1100px;
  text-align: center;
}

.openrouter-container h2 {
  color: #00f5ff;
  margin-bottom: 25px;
  font-size: 32px;
}

.openrouter-container p {
  opacity: 0.85;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* ===== FEATURE CARDS (IMPROVED) ===== */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;

}

@media (max-width: 900px) {
  .features {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: linear-gradient(145deg, #111827, #0f1626);
  padding: 35px 30px;
  border-radius: 18px;
  text-align: left;
  position: relative;
  transition: 0.4s ease;
  border: 1px solid rgba(0, 255, 255, 0.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* Subtle top glow line */
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 3px;
  background: linear-gradient(90deg, #00f5ff, #00ffae);
  border-radius: 5px;
}

/* Hover effect */
.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 255, 255, 0.3);
  box-shadow: 0 15px 40px rgba(0, 255, 255, 0.15);
}

/* Icon / Title */
.feature-card h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #00f5ff;
}

/* Description */
.feature-card p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.85;
}

/* Learn Button */
.learn-btn {
  display: inline-block;
  margin-top: 50px;
  padding: 12px 30px;
  border-radius: 30px;
  background: linear-gradient(90deg, #00f5ff, #00ffae);
  color: #0a0f1a;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.learn-btn:hover {
  box-shadow: 0 0 20px #00f5ff;
}

/* Responsive */
@media (max-width: 768px) {
  .openrouter-container h2 {
    font-size: 24px;
  }

  .hphp{
    zoom: 70%;
  }
}

html{
    scroll-behavior: smooth;

}


/* ===== FOOTER ===== */
.footer {
  background: #0d1422;
  padding: 20px 60px;
  border-top: 1px solid rgba(0,255,255,0.1);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left img {
  height: 35px;
}

.footer-right p {
  font-size: 14px;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .footer {
    padding: 20px;
  }

  .footer-container {
    flex-direction: column;
    gap: 10px;
  }
}

body {
  background: #0a0f1a;
  color: white;

  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

@media (max-width: 321px) {
  body {
    zoom: 80%;
  }
}