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


body {
  
  background:
    radial-gradient(circle at top,
      rgba(0, 255, 153, 0.08),
      transparent 35%),
    #050505;
  
  color: #ffffff;
  
  padding-top: 95px;
  padding-right: 16px;
  padding-left: 16px;
  padding-bottom: 90px;
  
  min-height: 100vh;
  
  font-family:
    "Poppins",
    sans-serif;
  
}

.navbar {
  
  position: fixed;
  
  top: 0;
  left: 0;
  
  width: 100%;
  height: 72px;
  
  padding: 0 18px;
  
  display: flex;
  
  justify-content: space-between;
  
  align-items: center;
  
  background: rgba(0, 0, 0, .82);
  
  backdrop-filter: blur(16px);
  
  border-bottom:
    1px solid rgba(255, 255, 255, .06);
  
  z-index: 9999;
}

.nav-left {
  
  display: flex;
  
  align-items: center;
  
  gap: 12px;
}

.logo {
  
  width: 42px;
  height: 42px;
  
  object-fit: contain;
}

.nav-text h1 {
  
  font-size: 22px;
}

.nav-text span {
  
  font-size: 11px;
  
  color: #888;
}

.nav-btn {
  
  width: 42px;
  height: 42px;
  
  border: none;
  
  border-radius: 14px;
  
  background:
    rgba(255, 255, 255, .06);
  
  color: white;
}

.container {
  max-width: 900px;
  margin: auto;
}

.login-box,
.profile-box {
  
  background:
    rgba(12, 12, 12, .92);
  
  backdrop-filter:
    blur(14px);
  
  border:
    1px solid rgba(0, 255, 153, .18);
  
  border-radius: 24px;
  
  padding: 24px;
  
  margin-top: 0;
  
  box-shadow:
    0 0 30px rgba(0, 255, 153, .08);
  
}

.section {
  
  margin-top: 24px;
  
  padding: 22px;
  
  background:
    rgba(255,
      255,
      255,
      0.02);
  
  border:
    1px solid rgba(255,
      255,
      255,
      0.05);
  
  border-radius: 18px;
  
}

.section h3 {
  
  color: #00ff99;
  
  margin-bottom: 18px;
  
  font-size: 18px;
  
  letter-spacing: 0.5px;
  
}

input {
  width: 100%;
  
  max-width: 100%;
  
  box-sizing: border-box;
  
  padding: 14px;
  
  margin-bottom: 14px;
  
  background:
    #111111;
  
  border:
    1px solid #232323;
  
  border-radius: 14px;
  
  color: white;
  
  font-size: 15px;
  
  transition:
    0.25s ease;
  
}

input[readonly] {
  
  background:
    rgba(255,
      255,
      255,
      0.04);
  
  border:
    1px solid rgba(255,
      255,
      255,
      0.08);
  
  color:
    #bdbdbd;
  
  cursor:
    default;
  
}

input:focus {
  
  outline: none;
  
  border-color:
    #00ff99;
  
  box-shadow:
    0 0 0 4px rgba(0,
      255,
      153,
      0.12);
  
  transform:
    translateY(-1px);
  
}

button {
  
  width: 100%;
  
  padding: 15px;
  
  background:
    linear-gradient(135deg,
      #00ff99,
      #00d67f);
  
  color: #000;
  
  border: none;
  
  border-radius: 14px;
  
  font-weight: 700;
  
  font-size: 16px;
  
  cursor: pointer;
  
  margin-top: 18px;
  
  transition:
    0.25s ease;
  
  box-shadow:
    0 8px 25px rgba(0,
      255,
      153,
      0.18);
  
}

button:hover {
  
  transform:
    translateY(-2px);
  
  box-shadow:
    0 12px 35px rgba(0,
      255,
      153,
      0.25);
  
}

@media(max-width:600px) {
  
  body {
    
    padding-top: 95px;
    padding-left: 14px;
    padding-right: 14px;
    padding-bottom: 90px;
    
  }
  
  .login-box,
  .profile-box {
    
    padding: 20px;
    
  }
  
}

.popup-box {
  
  animation:
    popupShow 0.25s ease;
  
}

@keyframes popupShow {
  
  from {
    
    opacity: 0;
    
    transform:
      translateY(20px) scale(0.95);
    
  }
  
  to {
    
    opacity: 1;
    
    transform:
      translateY(0) scale(1);
    
  }
  
}


.popup-overlay {
  
  position: fixed;
  
  top: 0;
  left: 0;
  
  width: 100%;
  height: 100%;
  
  background:
    rgba(0,
      0,
      0,
      0.75);
  
  backdrop-filter:
    blur(6px);
  
  display: none;
  
  justify-content: center;
  
  align-items: center;
  
  z-index: 9999;
  
}

.popup-box {
  
  width: 90%;
  
  max-width: 380px;
  
  background:
    rgba(12,
      12,
      12,
      0.96);
  
  backdrop-filter:
    blur(14px);
  
  border:
    1px solid rgba(0,
      255,
      153,
      0.3);
  
  border-radius: 22px;
  
  padding: 28px;
  
  text-align: center;
  
  box-shadow:
    0 0 35px rgba(0,
      255,
      153,
      0.12);
  
}

.popup-box h3 {
  
  color:
    #00ff99;
  
  margin-bottom: 15px;
  
}

.popup-box p {
  
  color:
    white;
  
  line-height: 1.5;
  
}

.popup-box button {
  
  margin-top: 20px;
  
  width: 100%;
  
  padding: 12px;
  
  border: none;
  
  border-radius: 10px;
  
  background:
    #00ff99;
  
  font-weight: bold;
  
  cursor: pointer;
  
}

.create-profile-box {
  
  margin-top: 24px;
  
  padding-top: 20px;
  
  border-top:
    1px solid rgba(255,
      255,
      255,
      0.08);
  
  text-align: center;
  
}

.create-profile-title {
  
  font-size: 15px;
  
  font-weight: 700;
  
  color: #ffffff;
  
  margin-bottom: 8px;
  
}

.create-profile-text {
  
  font-size: 14px;
  
  color: #9e9e9e;
  
  line-height: 1.5;
  
  margin-bottom: 15px;
  
}

.create-profile-btn {
  
  display: inline-block;
  
  padding: 12px 20px;
  
  border-radius: 12px;
  
  text-decoration: none;
  
  background:
    rgba(0,
      255,
      153,
      0.08);
  
  border:
    1px solid rgba(0,
      255,
      153,
      0.25);
  
  color:
    #00ff99;
  
  font-weight: 700;
  
  transition: 0.25s;
  
}

.create-profile-btn:hover {
  
  background:
    rgba(0,
      255,
      153,
      0.15);
  
  box-shadow:
    0 0 20px rgba(0,
      255,
      153,
      0.12);
  
}

.login-box h1 {
  
  font-size: 34px;
  
  font-weight: 700;
  
  line-height: 1.15;
  
  margin-bottom: 8px;
  
  text-align: center;
  
}

.login-box h2 {
  
  font-size: 24px;
  
  font-weight: 600;
  
  margin-bottom: 10px;
  
  text-align: center;
  
  color: #00ff99;
  
}

.login-subtitle {
  
  font-size: 14px;
  
  line-height: 1.6;
  
  color: #9e9e9e;
  
  max-width: 320px;
  
  margin: 0 auto 28px auto;
  
  text-align: center;
  
}

.site-footer {
  
  margin-top: 50px;
  
  padding:
    60px 20px 120px;
  
  background:
    linear-gradient(to bottom,
      #050505,
      #000);
  
  border-top:
    1px solid rgba(255,
      255,
      255,
      0.08);
  
  color: white;
  
  position: relative;
  
}

.site-footer::before {
  
  content: "";
  
  position: absolute;
  
  top: 0;
  left: 50%;
  
  transform:
    translateX(-50%);
  
  width: 92%;
  
  height: 1px;
  
  background:
    linear-gradient(90deg,
      transparent,
      rgba(0,
        255,
        153,
        0.35),
      transparent);
  
}

.site-footer {
  
  padding: 30px 20px 100px;
  
  text-align: center;
}

/* TOP */

.footer-top {
  
  display: grid;
  
  grid-template-columns:
    2fr 1fr 1fr;
  
  gap: 40px;
  
  margin-bottom: 40px;
}


/* BRAND */

.footer-brand h2 {
  
  font-size: 28px;
  
  margin-bottom: 14px;
  
  font-weight: 700;
}

.footer-brand p {
  
  color: #999;
  
  line-height: 1.8;
  
  font-size: 14px;
  
  max-width: 320px;
}

.footer-logo {
  
  width: 58px;
  
  margin-bottom: 14px;
}


/* LINKS */

.footer-links {
  
  display: flex;
  
  flex-direction: column;
  
  gap: 12px;
}

.footer-links h3 {
  
  margin-bottom: 8px;
  
  font-size: 18px;
}

.footer-links a {
  
  color: #888;
  
  text-decoration: none;
  
  font-size: 14px;
  
  transition: .25s;
}

.footer-links a:hover {
  
  color: #00ff99;
}


/* SOCIALS */

.footer-socials {
  
  display: flex;
  
  justify-content: center;
  
  gap: 16px;
  
  margin-bottom: 35px;
}

.footer-socials a {
  
  width: 46px;
  height: 46px;
  
  border-radius: 50%;
  
  display: flex;
  
  align-items: center;
  justify-content: center;
  
  background:
    rgba(255, 255, 255, .05);
  
  border:
    1px solid rgba(255, 255, 255, .06);
  
  color: white;
  
  text-decoration: none;
  
  transition: .25s;
}

.footer-socials a:hover {
  
  background: #00ff99;
  
  color: black;
  
  transform: translateY(-3px);
}


/* PAYMENTS */

.footer-payments {
  
  background:
    rgba(255, 255, 255, .03);
  
  border:
    1px solid rgba(255, 255, 255, .06);
  
  border-radius: 22px;
  
  padding: 24px;
  
  text-align: center;
  
  margin-bottom: 35px;
}

.footer-payments p {
  
  color: #bbb;
  
  margin-bottom: 18px;
  
  font-size: 15px;
}

.payment-logos {
  
  display: flex;
  
  justify-content: center;
  
  align-items: center;
  
  flex-wrap: wrap;
  
  gap: 18px;
}

.payment-logos img {
  
  height: 28px;
  
  object-fit: contain;
  
  opacity: .9;
}


/* BOTTOM */

.footer-bottom {
  
  text-align: center;
  
  border-top:
    1px solid rgba(255, 255, 255, .05);
  
  padding-top: 24px;
}

.footer-bottom p {
  
  color: #aaa;
  
  margin-bottom: 8px;
  
  font-size: 14px;
}

.footer-bottom small {
  
  color: #666;
  
  font-size: 12px;
}


/* MOBILE */

@media(max-width:700px) {
  
  .footer-top {
    
    grid-template-columns:
      1fr;
    
    gap: 30px;
  }
  
  .footer-brand p {
    
    max-width: 100%;
  }
  
  .footer-links {
    
    gap: 10px;
  }
  
  .payment-logos {
    
    gap: 12px;
  }
  
  .payment-logos img {
    
    height: 24px;
  }
}

.tabbar {
  
  position: fixed;
  
  left: 0;
  right: 0;
  bottom: 0;
  
  height: 72px;
  
  background: #050505;
  
  border-top:
    1px solid rgba(255, 255, 255, .06);
  
  display: flex;
  
  justify-content: space-around;
  
  align-items: center;
  
  z-index: 999;
}

.tab-item {
  
  flex: 1;
  
  height: 100%;
  
  display: flex;
  
  flex-direction: column;
  
  align-items: center;
  
  justify-content: center;
  
  gap: 5px;
  
  text-decoration: none;
  
  color: #777;
}

.tab-item i {
  
  font-size: 20px;
}

.tab-item span {
  
  font-size: 11px;
}

.tab-item.active {
  
  color: #00ff99;
}


/* MOBILE */

@media(max-width:700px) {
  
  .hero-content h1 {
    
    font-size: 28px;
  }
  
  .footer-top {
    
    grid-template-columns: 1fr;
  }
  
  .rule-card {
    
    flex-direction: column;
  }
}
