:root {
  --neongreen-crl: #83d874;
  --white-clr: #fff;
  --black-crl: #000;
  --gray-clr: #636363;
  --light-crl: #c4c4c4;
}

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

html {
  width: 100%;
  height: 100%;
}

body {
  width: 93%;
  min-height: 93vh;
  margin: 35px auto;
  background-image: url("bhautik-patel-CFSJUUb_Q-Y-unsplash.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  border-radius: 25px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow-x: hidden;
}

a { text-decoration: none; }
li { list-style: none; }

header {
  width: 100%;
  min-height: 120vh;
  padding-top: 0;
}

.navbar {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: sticky;
  top: 0;
  background: rgba(18, 18, 18, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 18px 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}

.logo {
  display: flex;
  justify-content: center;
  margin-top: 35px;
}

.logo-txt {
  display: inline-block;
  font-size: 50px;
  font-weight: 700;
  text-align: center;
  color: rgba(255, 255, 255, 0.854);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 10px 25px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
  text-shadow: 0 0 15px rgba(10, 10, 10, 0.75);
}

.logo-txt span { color: var(--black-crl); }

.navlist {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 20px;

}

.navlinks {
  display: flex;
  align-items: center;
  color: var(--white-clr);
  font-weight: 500;
  transition: 0.2s ease;
}

.navlinks:hover {
  color: var(--neongreen-crl);
  transform: translateY(-2px);
}

.active { color: var(--neongreen-crl); }

.home-screen {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
}

.search-box {
  position: relative;
  width: 70%;
  max-width: 900px;
  margin: 25px auto 0;
}

.search-box input {
  width: 100%;
  height: 60px;
  padding: 0 60px 0 30px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: #fff;
  font-size: 18px;
  outline: none;
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.1);
}

.search-box input::placeholder { color: rgba(255, 255, 255, 0.6); }

.search-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s ease;
}

.search-btn svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
}

.search-btn:hover {
  transform: translateY(-50%) scale(1.08);
  background: rgba(255, 255, 255, 0.4);
}

.tools-heading {
  margin-top: 35px;
  text-align: center;
}

.tools-pragraph h1 {
  font-size: 32px;
  color: #fff;
}

.top-categories-grid {
  max-width: 1200px;
  margin: 40px auto 20px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  align-content: start;
}

.cat-card {
  background: rgba(18, 18, 18, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: 380px;
  backdrop-filter: blur(15px);
}

.cat-header {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cat-list-scroll {
  flex-grow: 1;
  overflow-y: auto;
  padding-right: 5px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cat-list-scroll::-webkit-scrollbar { width: 5px; }
.cat-list-scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

.cat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: #ccc;
  padding: 6px 0;
}

.cat-item span {
  color: #888;
  font-size: 13px;
  margin-right: 10px;
}

.cat-item a {
  color: var(--neongreen-crl);
  text-decoration: none;
  font-size: 12px;
  background: rgba(131, 216, 116, 0.15);
  padding: 2px 8px;
  border-radius: 6px;
}

.see-all-btn {
  margin-top: 15px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  text-align: center;
  padding: 10px;
  border-radius: 12px;
  font-size: 13px;
  text-decoration: none;
  transition: 0.2s;
}

.see-all-btn:hover {
  background: var(--neongreen-crl);
  color: var(--black-crl);
  font-weight: 600;
}

.next-secsion {
  position: relative;
  background-color: #121212; 
  min-height: 100vh;
  width: 100%;
  z-index: 2;
  box-shadow: 0 -10px 30px rgba(3, 3, 3, 0.1);
}

.filter-bar-container {
  width: 100%;
  background: rgba(20, 20, 20, 0.9);
  padding: 15px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 65px;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.filter-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 5px;
  scrollbar-width: none;
}

.filter-scroll::-webkit-scrollbar { display: none; }

.filter-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 16px;
  border-radius: 30px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-pill span {
  background: rgba(255, 255, 255, 0.15);
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 12px;
  color: #aaa;
}

.filter-pill:hover, .filter-pill.active-pill {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.user-activity-container {
  width: 100%;
  margin: 0;
  padding: 20px 0;
}

.user-activity-container h2 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 15px;
  padding-left: 20px;
}

.activity-table-wrapper {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.activity-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  color: #ddd;
  font-size: 14px;
}

.activity-table th, .activity-table td {
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.activity-table th {
  background: rgba(255, 255, 255, 0.06);
  color: var(--neongreen-crl);
  font-weight: 600;
}

.activity-table tr:hover { background: rgba(255, 255, 255, 0.02); }

.third-section {
  position: relative;
  background-color: #0d0d0d;
  min-height: 50vh;
  text-align: center;
  color: #c4c4c4;
  width: 100%;
  z-index: 2;
  padding: 70px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.third-section h2 {
  color: #fff;
  font-size: 32px;
  margin-bottom: 15px;
}

.third-section p {
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 16px;
  line-height: 1.6;
  color: #aaa;
}

.rating-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.rating-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 30px;
  border-radius: 16px;
  min-width: 180px;
  backdrop-filter: blur(10px);
}

.rating-card h3 {
  font-size: 24px;
  color: var(--neongreen-crl);
  margin-bottom: 5px;
}

.rating-card p {
  font-size: 14px;
  color: #fff;
  margin: 0;
}

.ai-footer {
  background-color: #080808;
  color: #ffffff;
  padding: 60px 40px 30px 40px;
  border-top: 1px solid #262626;
  position: relative;
  z-index: 2;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #262626;
}

.footer-col h3 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-logo {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.footer-logo span { color: var(--neongreen-crl); }

.footer-desc {
  font-size: 14px;
  color: #a3a3a3;
  line-height: 1.5;
}

.footer-col ul { padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 12px; }

.footer-col ul li a {
  color: #a3a3a3;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: var(--neongreen-crl);
  text-decoration: underline;
}

.footer-bottom {
  max-width: 1200px;
  margin: 25px auto 0 auto;
  text-align: left;
  font-size: 13px;
  color: #737373;
}

@media (max-width: 900px) {
  body { width: 96%; margin: 20px auto; }
  .logo-txt { font-size: 35px; padding: 8px 18px; }
  .search-box { width: 85%; }
  .navlist { gap: 1rem; font-size: 14px; }
}

@media (max-width: 600px) {
  body { width: 94%; margin: 10px auto; }
  .logo-txt { font-size: 28px; padding: 6px 14px; }
  .search-box { width: calc(100% - 30px); }
  .navlist { flex-wrap: wrap; gap: 0.8rem; font-size: 13px; }
}