/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Arial, sans-serif;
}

body {
  background: #0f0f1a;
  color: white;
  min-height: 100vh;
  overflow-x: hidden;
}

/* SIDEBAR - Fixed Desktop Layout */
.sidebar {
  width: 240px;
  background: #0f0f1a;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  padding: 20px;
  transition: 0.3s ease;
  z-index: 1001;
}

.logo {
  color: #fff;
  text-align: center;
  font-size: 22px;
  margin-bottom: 30px;
  font-weight: bold;
  letter-spacing: 2px;
}

.sidebar nav a {
  display: block;
  padding: 12px;
  margin-bottom: 8px;
  text-decoration: none;
  color: #bbb;
  border-radius: 10px;
  transition: 0.3s;
  font-size: 15px;
}

.sidebar nav a:hover {
  background: rgba(168, 85, 247, 0.1);
  color: #c084fc;
}

.sidebar nav a.active {
  background: linear-gradient(45deg, #7b2ff7, #9f44d3);
  color: white;
}

/* CONTENT WRAPPER */
.content-wrapper {
  margin-left: 240px; /* Sidebar ke liye jagah */
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  transition: 0.3s;
}

/* ABOUT SECTION */
.about-infinity {
  width: 100%;
  max-width: 600px;
  background: #14142b;
  padding: 35px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.about-infinity h2 {
  font-size: 28px;
  margin-bottom: 15px;
  background: linear-gradient(45deg, #a855f7, #d946ef);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* VERSION BOX */
.version-box {
  background: rgba(168, 85, 247, 0.05);
  border: 1px solid rgba(168, 85, 247, 0.2);
  padding: 20px;
  border-radius: 16px;
  margin: 25px 0;
}

/* FOUNDER CARD */
.founder-card {
  margin-top: 30px;
  padding: 20px;
  background: #1a1a35;
  border-radius: 18px;
  text-align: left;
  border-left: 4px solid #ffd700;
}

.section-title { color: #ffd700; font-size: 19px; margin-bottom: 15px; }

/* STATS GRID */
.quick-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  margin: 15px 0;
}

.stat-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 10px;
  border-radius: 10px;
  font-size: 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

/* MOBILE MENU BUTTON */
.menu-btn {
  display: none;
  position: fixed;
  top: 15px;
  left: 15px;
  width: 45px;
  height: 45px;
  background: #6a0dad;
  color: white;
  border: none;
  border-radius: 10px;
  z-index: 1002;
  font-size: 20px;
  cursor: pointer;
}

/* MOBILE RESPONSIVE FIXES */
@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%); /* Mobile par chhupa do */
  }

  .sidebar.show {
    transform: translateX(0); /* Button click par dikhao */
  }

  .content-wrapper {
    margin-left: 0; /* Mobile par sidebar ki jagah zero */
    padding-top: 80px;
  }

  .menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .quick-stats-grid {
    grid-template-columns: 1fr;
  }
}


strong{
  
  color:#6a0dad;
}
















