:root {
  --bg: #0b0e13;
  --glass: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.12);
  --primary: #3da9fc;
  --text: #ffffff;
  --muted: #9aa0a6;
  --neon-blue: #3da9fc;
  --neon-purple: #7b5cff;
  --neon-green: #32d583;
}

* {
  box-sizing: border-box;
  font-family: Inter, sans-serif;
}

body {
  margin: 0;
  background: radial-gradient(circle at top, #141a24, var(--bg));
  color: var(--text);
  overflow-x: hidden;
}

.app{
  padding-bottom: 24px;
  position: relative;
}


/* GLASS */
.glass {
  background: var(--glass);
  backdrop-filter: blur(12px);
  border-radius: 5px;
}

/* TOPBAR */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
}

.qe{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
}

.qe-class{
  border: 1px solid var(--border);
  padding: 5px;
  border-radius: 5px;
}

.nav {
  display: flex;
  gap: 18px;
  flex: 1;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}

.nav .active,
.nav .highlight {
  color: var(--primary);
}

.section-close{
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 12px;
}

.close-btn {
  background: #962a2a;
  border: none;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
}

.nav-list {
  display: flex;
  gap: 25px;
  flex: 1;
  font-size: 12px;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 500;
  opacity: 0.75;
  transition: opacity 0.25s;
}

.nav-item img {
  width: 20px;
  height: 20px;
}

.nav-item:hover {
  opacity: 1;
}

.main-item span {
  color: #ffd400;
  text-shadow: 0 0 8px rgba(255,212,0,0.6);
}

.main-item::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 2px;
  background: #ffd400;
  box-shadow: 0 0 10px rgba(255,212,0,0.9);
}

.battlepass-item span {
  color: var(--neon-green);
  text-shadow: 0 0 8px rgba(50,213,131,0.6);
}

.battlepass-item img {
  filter: drop-shadow(0 0 6px rgba(50,213,131,0.7));
}

.nav-item:hover span {
  text-shadow: 0 0 12px currentColor;
}



/* DASHBOARD */
.dashboard {
  display: grid;
  grid-template-columns: 300px 1fr 300px;
  gap: 24px;
  padding: 24px;
}

/* CENTER */
.center {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.licences {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.licence {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  font-size: 10px;
  padding: 10px 12px;
  border-radius: 10px;
}

.licence-pic-name{
  display: flex;
  align-items: center;
  gap: 10px;
}

.cards{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.info-card {
  padding: 16px;
  display: flex;
  flex-direction: column;
}

.card-house{
  background: linear-gradient(
    to top,
    rgba(255, 136, 0, 0.85) 0%,
    rgba(255, 136, 0, 0.55) 20%,
    rgba(255, 136, 0, 0.25) 40%,
    rgba(255, 136, 0, 0.08) 70%,
    rgba(255, 136, 0, 0) 100%
  );
  border: none;
}

.card-business {
  background: linear-gradient(
    to top,
    rgba(0, 160, 255, 0.9) 0%,
    rgba(0, 160, 255, 0.6) 20%,
    rgba(0, 160, 255, 0.28) 40%,
    rgba(0, 160, 255, 0.1) 70%,
    rgba(0, 160, 255, 0) 100%
  );
  border: none;
}

.card-house,
.card-business{
  display: flex;
  width: 48%;
  position: relative;
}

.house-image,
.business-image{
  width: 150px;
  height: 150px;
  position: absolute;
  right: 0;
  bottom: 0;
}

.stats{
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
}

.stats-details{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stats label {
  color: var(--muted);
}

.green {
  color: var(--neon-green);
}

.red{
  color: red;
}

.blue{
  color: var(--primary);
}

/* LEVEL */
.level {
  margin: 0 24px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.level-group-1{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.level-group-1 button{
  padding: 10px 8px;
  background: #1f2937;
  color: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 20px;
}

.level-group-1 label,
.level-group-2 label{
  color: var(--muted);
  font-size: 12px;
}

.level-group-1 .donate{
  font-size: 12px;
}

.yellow{
  color: #ffd400;
}

.level-group-2{
  width: 70%;
}

.level-group-2 .top{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.level-group-2 .bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.level-group-2 .num{
  font-size: 24px;
}

.progress {
  height: 6px;
  background: #35373c;
  border-radius: 6px;
  overflow: hidden;
  margin: 10px 0;
  width: 95%;
}

.progress-bar {
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg,#3da9fc,#7b5cff);
}

.buy-btn {
  background: #1f2937;
  color: #fff;
  border: 1px solid var(--border);
  padding: 14px 14px;
  border-radius: 8px;
  cursor: pointer;
}

/* BATTLE PASS */
.battlepass {
  padding: 20px;
  position: relative;
  background: linear-gradient(
    to top,
    rgba(0, 50, 50, 0.85) 10%,
    rgba(0, 150, 90, 0) 40%
  );
  border: none;
}

.battlepass .title{
  color: var(--muted);
}

.battlepass .subtitle{
  font-size: 26px;
  font-weight: bold;
  color: var(--primary);
  margin-top: 10px;
}

.battlepass .snow-image{
  position: absolute;
  right: 0;
}

.battlepass-date{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: absolute;
  top: 200px;
}

.date-box{
  background-color: #fff;
  color: #000;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.date-box .date-number{
  font-weight: bold;
}

.date-box .date-time{
  font-size: 8px;
}

.title-subtitle-snow{
  display: flex;
}

.bp-stats {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 12px;
  margin-top: 16px;
}


/* profile image */

.profile-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(
    250deg,
    rgba(0, 160, 255, 0.45) 10%,
    rgba(0, 160, 255, 0.22) 30%,
    rgba(0, 160, 255, 0.08) 40%,
    rgba(0, 160, 255, 0) 100%
  );
  border: none;
}

.profile-image {
  height: 360px;
  overflow: hidden;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-info {
  padding: 18px;
}

.header-date {
  position: absolute;
  width: 150px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 2px 14px;
  border: 1px solid #ffd400;
  background: #000;
  top: 108px;
  left: 60px;
}

.header-date img {
  width: 18px;
  height: 18px;
  background-color: #ffd400;
  padding: 2px;
}

.header-date::before {
  content: "";
  position: absolute;
  left: -18px;
  width: 22px;
  height: 22px;
  background: url("../images/23.png") center / contain no-repeat #ffd400;
}

.date-text {
  color: #ffffff;
  font-size: 14px;
}

.time-text {
  color: #fff;
  font-size: 14px;
}

.section-welcome .hello{
  margin-left: 40px;
  color: var(--muted);
  margin-top: 20px;
}

.welcome-name-id{
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.welcome-name{
  font-size: 26px;
  font-weight: bold;
  margin-top: 5px;
}

.id-num{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
}

.hero-man{
  position: absolute;
  width: 325px;
  height: 550px;
  bottom: 143px;
  left: 0;
}

.hero-man:hover,
.hero-woman:hover{
  transform: scale(1.04);
  filter: drop-shadow(0 0 16px rgba(61,169,252,0.45));
}

.hero-woman{
  position: absolute;
  width: 530px;
  height: 550px;
  bottom: 143px;
  right: -10px;
}

/* battle pass image */

.battlepass {
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}

.battlepass-image {
  height: 380px;
  position: relative;
}

.battlepass-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* hover glow for cards */

.glass {
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.glass::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 0 25px var(--neon-blue);
  transition: opacity 0.25s ease;
}

.glass:hover {
  transform: translateY(-4px);
}

.glass:hover::after {
  opacity: 0.6;
}

/* Progress Bar Neon Animation */

.progress-bar {
  animation: neonFlow 2.5s linear infinite;
}

@keyframes neonFlow {
  0% {
    filter: drop-shadow(0 0 6px var(--neon-blue));
  }
  50% {
    filter: drop-shadow(0 0 12px var(--neon-purple));
  }
  100% {
    filter: drop-shadow(0 0 6px var(--neon-blue));
  }
}

/* Button Glow (Buy Level) */

.buy-btn {
  position: relative;
  overflow: hidden;
}

.buy-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(61,169,252,0.4),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.buy-btn:hover::after {
  transform: translateX(100%);
}

.buy-btn:hover {
  box-shadow: 0 0 12px var(--neon-blue);
}

/* Hover Animation for Character Images */

.profile-image img,
.battlepass-image img,
.hero-man,
.hero-woman{
  transition: transform 0.4s ease, filter 0.4s ease;
}

.profile-card:hover img{
  transform: scale(1.04);
  filter: drop-shadow(0 0 16px rgba(61,169,252,0.45));
}

/* hamburger button */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}

/* Hamburger Animation */

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}



/* RESPONSIVE */


@media (max-width: 1024px) {

  .dashboard {
    grid-template-columns: 1fr;
  }

  .licences{
    flex-direction: column;
  }

  .level{
    flex-direction: column;
    gap: 50px;
  }

  .level-group-2 .bottom{
    gap: 20px;
  }

  .hero-man,
  .hero-woman{
    display: none;
  }

  .battlepass{
    height: 400px;
  }

  .nav-list {
    position: fixed;
    left: 0;
    right: 0;
    background: rgba(10,14,20,0.95);
    backdrop-filter: blur(14px);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    z-index: 999;
  }

  .nav-list.open {
    transform: translateY(0);
  }

  .hamburger {
    display: flex;
  }

  .cards{
    flex-direction: column;
    gap: 20px;
    align-items: unset;
  }

  .card-house,
  .card-business{
    width: 100%;
  }

  .hero-man,
  .hero-woman{
    height: 1350px;
  }

}
