
/* ===== CARD GRID ===== */
.card-container {
  width: 80%;
  margin-right: 250px;
  margin: auto;
  display: grid;
  margin-top: 25px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
  margin-bottom: 20px;
}

.card {
    background: rgba(255, 255, 255, 0.289);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 35px 20px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  cursor: pointer;
}
.profile {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 300px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(12px);
  color: rgb(6, 6, 6);
  border-radius: 10px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 25px;
  padding: 10px;
  box-shadow: 0 -5px 15px rgba(0,0,0,0.15);
  z-index: 1000;
}

.profile i {
  font-size: 25px;
  padding: 5px;
  margin: 10px 0 10px;
  cursor: pointer;
  transition: 0.3s;
}

.profile i:hover {
  transform: scale(1.2);
  color: #4f6fff;
}

.profile span {
  font-weight: 500;
  font-size: 14px;
}
.stats{
  position: fixed;
  bottom: 100px;
  font-family: 'Times New Roman', Times, serif;
  left: 0;;
  width: 300px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(12px);
  color: rgb(6, 6, 6);
  border-radius: 10px;
  display: block;
  justify-content: space-around;
  align-items: center;
  gap: 25px;
  padding: 10px;
  box-shadow: 0 -5px 15px rgba(0,0,0,0.15);
  z-index: 1000;
}
.card i {
  font-size: 28px;
  color: blue;
  margin-bottom: 15px;
}

.card p {
  font-size: 14px;
  font-weight: 500;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* ===== WAVE SHAPE ===== */
.wave {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: #c4d0e9;
  border-top-left-radius: 50% 40px;
  border-top-right-radius: 50% 40px;
  z-index: -1;   /* Prevent overlay */
}
