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

body {
  
  background: #050505;
  
  color: white;
  
  font-family: "Poppins", sans-serif;
  
  min-height: 100vh;
  
  padding-top: 90px;
  padding-bottom: 100px;
  
  overflow-x: hidden;
  
  position: relative;
  
}

body::before {
  
  content: "";
  
  position: fixed;
  
  top: 50%;
  
  left: 50%;
  
  width: 600px;
  
  height: 600px;
  
  transform: translate(-50%, -50%);
  
  background:
    radial-gradient(circle,
      rgba(0, 255, 153, .14),
      transparent 70%);
  
  filter: blur(90px);
  
  z-index: -1;
  
}


.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;
}


.hero-box {
  
  max-width: 900px;
  
  margin: 0 auto 28px;
  
  text-align: center;
  
  padding: 30px 24px;
  
  background:
    rgba(12, 12, 12, .92);
  
  border:
    1px solid rgba(0,
      255,
      153,
      .18);
  
  border-radius: 24px;
  
  backdrop-filter:
    blur(14px);
  
}

.hero-box {
  margin-top: 105px;
}

.hero-box {
  
  position: relative;
  
  overflow: hidden;
  
}

.hero-box::before {
  
  content: "";
  
  position: absolute;
  
  width: 250px;
  
  height: 250px;
  
  background:
    rgba(0, 255, 153, .18);
  
  border-radius: 50%;
  
  top: -120px;
  
  left: 50%;
  
  transform: translateX(-50%);
  
  filter: blur(80px);
  
}

.hero-tag {
  
  display: inline-block;
  
  padding: 8px 14px;
  
  border-radius: 999px;
  
  background:
    rgba(0,
      255,
      153,
      .08);
  
  border:
    1px solid rgba(0,
      255,
      153,
      .25);
  
  color: #00ff99;
  
  font-size: 12px;
  
  font-weight: 700;
  
  margin-bottom: 16px;
  
}

.hero-box h1 {
  
  font-size: 32px;
  
  font-weight: 700;
  
  line-height: 1.1;
  
  margin: 18px 0;
  
}

.hero-box p {
  
  color: #9e9e9e;
  
  line-height: 1.7;
  
  max-width: 500px;
  
  margin: auto;
  
}

.container {
  
  max-width: 900px;
  
  margin: auto;
  
  position: relative;
  
  z-index: 2;
  
}

.container>h1 {
  
  font-size: 48px;
  
  font-weight: 800;
  
  text-align: center;
  
  margin-bottom: 40px;
  
  color: #00ff99;
  
  text-shadow:
    0 0 20px rgba(0, 255, 153, .35);
  
}

.card {
  
  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, .03),
      rgba(255, 255, 255, .015));
  
  border:
    1px solid rgba(255, 255, 255, .08);
  
  border-radius: 24px;
  
  padding: 24px;
  
  margin-bottom: 24px;
  
  backdrop-filter: blur(20px);
  
  transition: .3s;
  
}

.card:hover {
  
  transform: translateY(-3px);
  
  border-color:
    rgba(0, 255, 153, .25);
  
}

.card h2 {
  
  color: #00ff99;
  
  margin-bottom: 15px;
  
}

input {
  
  width: 100%;
  
  height: 58px;
  
  background:
    rgba(255, 255, 255, .03);
  
  border:
    1px solid rgba(255, 255, 255, .08);
  
  border-radius: 16px;
  
  padding: 0 18px;
  
  color: white;
  
  font-size: 15px;
  
  margin-top: 12px;
  
  transition: .3s;
  
}

input:focus {
  
  outline: none;
  
  border-color: #00ff99;
  
  box-shadow:
  
    0 0 0 2px rgba(0, 255, 153, .15),
    
    0 0 25px rgba(0, 255, 153, .18);
  
}

input:focus {
  
  border-color: #00ff99;
  
}

#submitBtn {
  
  height: 62px;
  
  border: none;
  
  border-radius: 18px;
  
  font-size: 17px;
  
  font-weight: 700;
  
  color: black;
  
  background: #00ff99;
  
  box-shadow:
    0 0 35px rgba(0, 255, 153, .4);
  
}

#submitBtn:hover {
  
  transform: translateY(-3px);
  
  box-shadow:
    0 0 50px rgba(0, 255, 153, .6);
  
}

.success-box {
  
  display: none;
  
  text-align: center;
  
  background: #0c0c0c;
  
  border: 1px solid #00ff99;
  
  border-radius: 16px;
  
  padding: 30px;
  
  margin-top: 25px;
  
}

.success-box h2 {
  
  color: #00ff99;
  
  margin-bottom: 15px;
  
}

#playerKeyText {
  
  color: #00ff99;
  
  font-size: 42px;
  
  margin: 20px 0;
  
  letter-spacing: 3px;
  
}

@media(max-width:768px) {
  
  body {
    
    padding: 15px;
    
  }
  
  .card {
    
    padding: 15px;
    
  }
  
  #playerKeyText {
    
    font-size: 32px;
    
  }
  
}


.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;
}

.info-note {
  
  margin-bottom: 24px;
  
  padding: 18px;
  
  border-radius: 18px;
  
  background:
    rgba(0, 255, 153, .05);
  
  border:
    1px solid rgba(0, 255, 153, .12);
  
  color: #cfcfcf;
  
  line-height: 1.7;
  
}

.warning-box {
  
  max-width: 900px;
  
  margin: 40px auto;
  
  padding: 22px;
  
  border-radius: 22px;
  
  background:
    rgba(255, 170, 0, .06);
  
  border:
    1px solid rgba(255, 170, 0, .18);
  
  color: #ffd47a;
  
  line-height: 1.8;
  
}



@media(max-width:768px) {
  
  .hero-box h1 {
    
    font-size: 28px;
    
    line-height: 1.2;
    
  }
  
  .container>h1 {
    
    font-size: 24px;
    
    line-height: 1.3;
    
  }
  
}


#submitBtn {
  
  display: block;
  
  width: 100%;
  
  max-width: 420px;
  
  height: 60px;
  
  margin: 30px auto 0;
  
  border-radius: 18px;
  
  background: #00ff99;
  
  color: #000;
  
  font-weight: 700;
  
  font-size: 16px;
  
  box-shadow:
    0 0 25px rgba(0, 255, 153, .35);
  
}
