* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   font-family: Poppins, sans-serif;
}

body {
   background: #081225;
   color: white;
   min-height: 100vh;
}

.form-box {
   width: 100%;
   min-height: 100vh;
   padding: 20px;
}

.logo {
   text-align: center;
   font-size: 40px;
   font-weight: 700;
   color: #f5b942;
}

.sub {
   text-align: center;
   opacity: .8;
   margin-top: 5px;
}

.welcome-card {
   background: #10203a;
   padding: 20px;
   border-radius: 20px;
   margin-bottom: 20px;
}

.balance-card {
   background: linear-gradient(135deg, #f5b942, #d89d1f);
   color: #081225;
   padding: 25px;
   border-radius: 20px;
   text-align: center;
   margin-bottom: 20px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}

.balance-card p {
   font-weight: 600;
}

.balance-card h1 {
   font-size: 42px;
   margin-top: 10px;
}

.stats {
   display: flex;
   gap: 12px;
   margin-bottom: 20px;
}

.stat-box {
   flex: 1;
   background: #10203a;
   padding: 20px;
   border-radius: 18px;
   text-align: center;
}

.stat-box p {
   opacity: .8;
}

.stat-box h2 {
   margin-top: 8px;
   color: #f5b942;
}

.ref-status {
   text-align: center;
   font-weight: 700;
   color: #b88cff;
   margin-bottom: 20px;
}

.dashboard-title {
   font-size: 22px;
   font-weight: 700;
   text-align: center;
   margin-bottom: 15px;
}

.button-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 12px;
}

.button-grid button {
   padding: 16px;
   border: none;
   border-radius: 16px;
   background: #10203a;
   color: white;
   font-weight: 600;
   font-size: 15px;
   cursor: pointer;
}

.button-grid button:hover {
   opacity: .9;
}

.logout-btn {
   width: 100%;
   margin-top: 20px;
   padding: 16px;
   border: none;
   border-radius: 16px;
   background: #ff4d4d;
   color: white;
   font-weight: 700;
   font-size: 15px;
   cursor: pointer;
}
.testimonial-slider {
   overflow: hidden;
   width: 100%;
}

.testimonial-track {
   display: flex;
   gap: 15px;
   width: max-content;
   animation: slideTestimonials 25s linear infinite;
}

.testimonial {
   min-width: 280px;
   background: #081225;
   padding: 18px;
   border-radius: 18px;
   border: 1px solid rgba(245, 185, 66, .15);
}

.testimonial h4 {
   color: #F5B942;
   margin-bottom: 8px;
}

.testimonial p {
   opacity: .85;
   line-height: 1.6;
   font-size: 14px;
}

@keyframes slideTestimonials {
   
   0% {
      transform: translateX(0);
   }
   
   100% {
      transform: translateX(-50%);
   }
   
}
@media(max-width:768px) {
   
   .stats {
      flex-direction: column;
   }
   
   .button-grid {
      grid-template-columns: 1fr;
   }
   
   .logo {
      font-size: 34px;
   }
   
   .balance-card h1 {
      font-size: 34px;
   }
   
}
/* ---------- HOME PAGE ---------- */

.premium-badge {
   background: #f5b942;
   color: #081225;
   text-align: center;
   padding: 12px;
   border-radius: 15px;
   font-weight: 700;
   margin-bottom: 20px;
}

.hero {
   width: 100%;
   height: 240px;
   object-fit: cover;
   border-radius: 20px;
   display: block;
   margin: 20px auto;
}

h2 {
   text-align: center;
   margin: 15px 0 10px;
}

.form-box p {
   text-align: center;
   line-height: 1.8;
}

.button-row {
   display: flex;
   justify-content: center;
   gap: 15px;
   flex-wrap: wrap;
   margin-top: 20px;
}

.button-row button {
   flex: 1;
   min-width: 160px;
   padding: 16px;
   border: none;
   border-radius: 15px;
   background: #0d6efd;
   color: white;
   font-size: 16px;
   font-weight: 700;
   cursor: pointer;
   box-shadow: 0 8px 20px rgba(0, 0, 0, .3);
   transition: .3s;
}

.button-row button:hover {
   transform: translateY(-3px);
}

.button-row .gold {
   background: #f5b942;
   color: #081225;
}

.footer-text {
   text-align: center;
   margin-top: 40px;
   opacity: .7;
   font-size: 14px;
}

hr {
   border: none;
   height: 1px;
   background: rgba(255, 255, 255, .12);
   margin: 30px 0;
}
/* ===== ADMIN PAGE ===== */

.admin-container {
   max-width: 450px;
   margin: 70px auto;
   background: #10203a;
   padding: 30px;
   border-radius: 20px;
   box-shadow: 0 15px 40px rgba(0, 0, 0, .35);
}

.admin-title {
   text-align: center;
   color: #f5b942;
   font-size: 28px;
   font-weight: 700;
   margin-bottom: 25px;
}

input,
select,
textarea {
   width: 100%;
   padding: 15px;
   margin-bottom: 18px;
   border: none;
   border-radius: 12px;
   background: #081225;
   color: #fff;
   font-size: 15px;
   outline: none;
}

input::placeholder {
   color: #aaa;
}

button {
   width: 100%;
   padding: 16px;
   border: none;
   border-radius: 12px;
   background: #f5b942;
   color: #081225;
   font-size: 16px;
   font-weight: 700;
   cursor: pointer;
   transition: .3s;
}

button:hover {
   opacity: .9;
   transform: translateY(-2px);
}