/* ===== RESET ===== */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Vazir', sans-serif;
}

html,body{
  width:100%;
  min-height:100%;
}

body{
  background:linear-gradient(135deg,#0a0014,#16002b,#0a0014);
  color:#fff;
  overflow-x:hidden;
}

/* ===== HEADER ===== */
.header{
  width:100%;
  height:80px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 50px;
  background:rgba(0,0,0,0.6);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(127,0,255,0.25);
}

.logo{
  font-size:30px;
  font-weight:900;
  color:#c38bff;
  text-shadow:0 0 18px rgba(127,0,255,0.8);
  cursor:default;
}

/* ===== NAV ===== */
.nav{
  display:flex;
  align-items:center;
  gap:12px;
}

.nav a{
  padding:10px 22px;
  border-radius:14px;
  text-decoration:none;
  font-size:14px;
  font-weight:500;
  color:#fff;
  background:linear-gradient(135deg,#7f00ff,#3b006b);
  transition:all 0.3s ease;
  position:relative;
  overflow:hidden;
}

.nav a.secondary{
  background:transparent;
  border:1px solid #7f00ff;
}

.nav a:hover{
  transform:translateY(-2px);
  box-shadow:0 0 22px rgba(127,0,255,0.9);
}

/* ===== HERO ===== */
.hero{
  width:100%;
  min-height:calc(100vh - 80px);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:20px;
}

.hero h1{
  font-size:56px;
  font-weight:900;
  color:#ead7ff;
  text-shadow:0 0 30px rgba(127,0,255,1);
}

.hero p{
  margin-top:18px;
  font-size:20px;
  max-width:600px;
  line-height:1.8;
  opacity:0.85;
}

/* ===== AUTH FORMS ===== */
.auth-form{
  width:360px;
  max-width:90%;
  margin:120px auto;
  background:rgba(0,0,0,0.65);
  padding:35px;
  border-radius:22px;
  border:1px solid rgba(127,0,255,0.25);
  box-shadow:0 0 60px rgba(58,0,102,0.8);
}

.auth-form h2{
  text-align:center;
  margin-bottom:28px;
  font-size:22px;
  color:#d7b6ff;
}

.auth-form input{
  width:100%;
  padding:13px 15px;
  margin-bottom:16px;
  border-radius:12px;
  border:1px solid transparent;
  background:#1b0033;
  color:#fff;
  outline:none;
  transition:0.25s;
}

.auth-form input:focus{
  border-color:#7f00ff;
  box-shadow:0 0 12px rgba(127,0,255,0.6);
}

.auth-form button{
  width:100%;
  padding:13px;
  border:none;
  border-radius:14px;
  background:linear-gradient(135deg,#7f00ff,#3b006b);
  color:#fff;
  font-size:15px;
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
}

.auth-form button:hover{
  transform:translateY(-2px);
  box-shadow:0 0 28px rgba(127,0,255,1);
}

/* ===== NOTIFICATION ===== */
.notify{
  position:fixed;
  top:25px;
  right:25px;
  min-width:260px;
  padding:16px 22px;
  border-radius:16px;
  background:linear-gradient(135deg,#7f00ff,#3b006b);
  box-shadow:0 0 35px rgba(127,0,255,1);
  font-size:14px;
  z-index:9999;
  animation:notifyIn 0.45s ease forwards;
}

.notify.error{
  background:linear-gradient(135deg,#ff005c,#5a001f);
  box-shadow:0 0 35px rgba(255,0,92,0.9);
}

@keyframes notifyIn{
  from{
    transform:translateX(120%);
    opacity:0;
  }
  to{
    transform:translateX(0);
    opacity:1;
  }
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
  .header{
    padding:0 20px;
  }

  .hero h1{
    font-size:38px;
  }

  .hero p{
    font-size:17px;
  }
}
