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

body {
  font-family: Arial, sans-serif;
  background-color: #ffffff; /* Changed from black to white */
  color: #000; /* Changed text color to black for readability */
  padding-top: 60px; /* header space adjustment */
}

/* PROFILE PAGE HEADER - SAME AS HOME PAGE */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px; /* same as home page */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  background: linear-gradient(to right, #7b2ff7, #f107a3, #ff2b2b);
  color: #fff;
  z-index: 1000;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: linear-gradient(to right, #7b2ff7, #f107a3, #ff2b2b);
  z-index: 1000;
} 

.header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 18px; /* icons ke beech thoda space */
}

.header-right i {
  font-size: 18px; /* Home page ke jaise */
  cursor: pointer;
  color: #fff;
}

.logo {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  color: #000;
}


.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.plan {
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  background: #00000050;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 14px;
}

.violet-icon, .bank-icon, .setting-icon {
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

/* PROFILE CARD */
.profile-card {
  background: #f5f5f5; /* Changed from dark to light */
  color: #000; /* Text color to black */
  padding: 20px;
  margin: 20px 10px;
  border-radius: 12px;
  text-align: center;
}

.profile-card h2 {
  margin-bottom: 15px;
  font-size: 20px;
}

.profile-card .buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.profile-card .buttons button {
  padding: 10px 18px;
  background: #ff2b2b;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}

/* HISTORY SECTION */
.history-section {
  margin: 20px 10px 80px;
  background: #eeeeee; /* Light background for history */
  border-radius: 10px;
  padding: 15px;
  color: #000;
}

.history-section h3 {
  margin-bottom: 10px;
}

.history-section ul {
  list-style: none;
  padding: 0;
  font-size: 14px;
}

/* LOGIN POPUP */
.login-popup-bg {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.login-popup-bg.show {
  display: flex;
}

.login-popup {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  max-width: 300px;
  width: 90%;
  animation: popupFade 0.3s ease;
}

.login-popup h3 {
  margin: 0 0 10px;
}

.login-popup p {
  font-size: 14px;
  color: #444;
  margin-bottom: 15px;
}

.login-popup button {
  background: #ff2b2b;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

@keyframes popupFade {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}


/* BOTTOM NAVIGATION */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: #1e1e2f;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
}
.bottom-nav i {
  font-size: 18px;
  color: #ccc;
  cursor: pointer;
}
.bottom-nav .active-icon {
  color: #fff;
}
.search-btn {
  background: #fff;
  padding: 8px;
  border-radius: 50%;
  margin-top: -25px;
}
.search-btn i {
  color: #000;
  font-size: 18px;
}

