/* ✅ Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* 🔥 Super Fast System Font Stack — No External Font Load */
html, body, h1, h2, h3, h4, h5, h6, p, a, span, li, ul, ol, input, button, textarea, select, label, small, strong, em {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif !important;
  font-weight: 400;
  line-height: 1.5;
}



/* ✅ Utility */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ✅ Header */
/* ✅ Header with Gradient Background */
/* ✅ Header with Gradient Background */
.site-header {
  background: linear-gradient(90deg, #724b4b, #4c3d50, #684963); /* Purple to Blue to Gray */
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}





/* ✅ Logo */
.logo img {
  height: 48px;
  width: auto;
}

/* ✅ Desktop Navigation */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
}

.main-nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  padding: 6px 8px;
  transition: all 0.25s ease-in-out;
  border-bottom: 2px solid transparent;
}

.main-nav ul li a:hover {
  color: #ffcc00;
  border-bottom: 2px solid #ffcc00;
}

/* ✅ Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

/* ✅ Mobile Sidebar Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(90deg, #724b4b, #4c3d50, #684963); /* Purple to Blue to Gray */
  padding: 60px 20px;
  transition: right 0.4s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu ul li a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  padding: 10px 0;
  transition: color 0.3s;
}

.mobile-menu ul li a:hover {
  color: #ffcc00;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

/* ✅ Responsive Rules */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 768px) {
  .logo img {
    height: 40px;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 36px;
  }
}





/* ✅ Footer */
.site-footer {
  background: linear-gradient(90deg, #724b4b, #4c3d50, #684963); /* Purple to Blue to Gray */
  color: #fff;
  padding: 20px 0;
  text-align: center;
  font-size: 15px;
}

.site-footer a {
  color: #ffcc00;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: #ffffff;
}

/* ✅ Responsive Footer Container */
.footer-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  text-align: center;
}

/* ✅ Responsive Adjustments */
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    font-size: 14px;
    gap: 6px;
  }
}




/* New Homepage Css */

/* ✅ Hero Section Styling */
.hero-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #ffffff;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

.hero-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #121212;
}

.hero-logo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 20px 0;
  object-fit: contain;
}

.hero-subtitle {
  font-size: 22px;
  margin-bottom: 5px;
  color: #222;
}

.hero-download-text {
  font-size: 18px;
  margin-bottom: 30px;
  color: #222;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.download-btn {
  padding: 15px;
  /* background: linear-gradient(90deg, #724b4b, #4c3d50, #684963); */
  color: #fff; /* gradient dark hai isliye white text better lagega */
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 30px;
  border: 2px solid #000;
  transition: background 0.3s ease;
}


.download-btn:hover {
  background: linear-gradient(90deg, #724b4b, #4c3d50, #684963);
}

.hero-description {
  margin-top: 30px;
  font-size: 16px;
  max-width: 700px;
  color: #333;
  line-height: 1.6;
}

.hero-description strong {
  font-weight: 600;
}

/* ✅ Responsive Adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 22px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .hero-download-text {
    font-size: 16px;
  }

  .hero-logo {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    gap: 15px;
  }

  .download-btn {
    font-size: 14px;
    padding: 12px;
  }

  .hero-title {
    font-size: 20px;
  }

  .hero-description {
    font-size: 14px;
  }
}





/* ✅ App Info Section */
.app-info-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.section-title {
  font-size: 24px;
  margin-bottom: 30px;
  font-weight: 600;
  color: #222;
}

/* ✅ Responsive Table Styling */
.responsive-table {
  overflow-x: auto;
}

.responsive-table table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-collapse: collapse;
  background-color: #fff;
}

.responsive-table th,
.responsive-table td {
  border: 1px solid #000;
  padding: 12px 16px;
  text-align: left;
}

.responsive-table th {
  background-color: #efefef;
  font-weight: bold;
  text-align: center;
}

.responsive-table a {
  color: #0056d2;
  text-decoration: none;
  font-weight: 600;
}

.responsive-table a:hover {
  text-decoration: underline;
}

/* ✅ Mobile Adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 20px;
  }

  .responsive-table table {
    font-size: 14px;
  }
}


.app-description { margin-top:20px; font-size:15px; line-height:1.6; }





/* ✅ NB9 Game Section */
.nb9game-section {
  background-color: #ffffff;
  padding: 60px 20px;
}

.container-nb9 {
  max-width: 1100px;
  margin: 0 auto;
  background: #fefefe;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
}

.nb9-title {
  font-size: 28px;
  text-align: center;
  color: #1e1e1e;
  font-weight: 600;
  margin-bottom: 25px;
}

.nb9-desc {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 40px;
}

.nb9-card {
  background: #fff;
  border: 1px solid #ddd;
  border-left: 5px solid #1e90ff;
  border-radius: 10px;
  padding: 25px 30px;
  margin-bottom: 25px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.nb9-card:hover {
  transform: translateY(-3px);
}

.nb9-card h3 {
  color: #1e90ff;
  font-size: 20px;
  margin-bottom: 15px;
}

.nb9-card p, .nb9-card li {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.nb9-card ul, .nb9-card ol {
  margin-left: 25px;
  margin-top: 10px;
}

.nb9-card a {
  color: #0077ff;
  font-weight: 600;
  text-decoration: none;
}

.nb9-card a:hover {
  text-decoration: underline;
}

.nb9-warning {
  background: #fff8f8;
  border-left: 5px solid #ff4d4d;
}

.nb9-warning h3 {
  color: #d93636;
}

/* ✅ Responsive */
@media (max-width: 992px) {
  .container-nb9 {
    padding: 30px 25px;
  }
  .nb9-title {
    font-size: 24px;
  }
}

@media (max-width: 600px) {
  .nb9-title {
    font-size: 22px;
  }
  .nb9-card {
    padding: 20px;
  }
  .nb9-card h3 {
    font-size: 18px;
  }
  .nb9-card p, .nb9-card li {
    font-size: 15px;
  }
}






/* ✅ System Font for Fast Loading */
html, body, h1, h2, h3, h4, h5, h6, p, a, span, li, ul, ol, input, button, textarea, select, label, small, strong, em {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif !important;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

/* 🌟 Hero Section */
.hero-section {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(135deg, #f9fafb, #e8ecf0);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

/* 🧭 Title */
.hero-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111827;
}

/* 🖼 Logo */
.hero-logo {
  max-width: 220px;
  width: 100%;
  height: auto;
  margin: 20px 0;
}

/* 📝 Subtitle */
.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 10px;
}

/* 📄 Download Text */
.hero-download-text {
  font-size: 1rem;
  color: #4b5563;
  margin-bottom: 20px;
}

/* 🟦 Buttons */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.download-btn {
  display: inline-block;
  background-color: #2563eb;
  color: #fff;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.download-btn:hover {
  background-color: #1d4ed8;
}

/* 📜 Description */
.hero-description {
  font-size: 1rem;
  color: #374151;
  max-width: 700px;
  /* margin: 0 auto; */
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .download-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-section {
    padding: 40px 15px;
  }
}













.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

.download-btn {
  background: linear-gradient(90deg, #724b4b, #4c3d50, #684963);
  color: #fff;
  padding: 14px 40px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: inline-block;
  animation: zoomInOut 2s ease-in-out infinite;
  box-shadow: 0 0 15px rgba(106, 17, 203, 0.5);
}

/* Zoom animation */
@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

/* Hover effect (extra pop) */
.download-btn:hover {
  transform: scale(1.15);
  background: linear-gradient(90deg, #2575fc, #6a11cb);
  box-shadow: 0 0 25px rgba(37, 117, 252, 0.7);
}
