/* =========================
   Base Reset
   ========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

p, h1, h2 {
  font-family: "Oswald", sans-serif;
  line-height: 1.4;
}

/* =========================
   HTML & Body
   ========================= */
body {
  background-color: #101014;
  height: 200vh;
}

/* =========================
   Typography
   ========================= */
a {
  color: #000;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* =========================
   Images & Media
   ========================= */
img,
video {
  max-width: 100%;
  display: block;
}

/* =========================
   Forms
   ========================= */
input,
textarea,
select,
button {
  font-family: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
}

/* =========================
   Lists
   ========================= */
ul,
ol {
  list-style: none;
}

header {
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15%;
  position: fixed;
  z-index: 999;
  backdrop-filter: blur(5px);
  background-color: rgba(16, 16, 20, 0.9647058824);
}
header .menu {
  width: max-content;
  height: max-content;
}
header .menu i {
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  transition: 0.3s ease;
}
header .menu i:hover {
  color: #f7ff19;
}
header .menu i:active {
  transform: scale(1.1) rotate(3deg);
  color: #f7ff19;
}
header .logo {
  width: max-content;
  height: max-content;
}
header .logo img {
  width: 150px;
}

.hero {
  width: 100%;
  height: 100vh;
  position: relative;
}
.hero img {
  width: 600px;
  position: absolute;
  top: 50%;
  right: 20%;
  transform: translate(20%, -50%);
}
.hero .leftpart {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 0 0 100px 15%;
  gap: 20px;
}
.hero .leftpart h1 {
  font-size: 3rem;
}
.hero .leftpart p {
  font-size: 1.5rem;
  font-weight: lighter;
  width: 30%;
  line-height: 1.1;
}
.hero .leftpart button {
  padding: 18px 30px;
  font-size: 1.5rem;
  font-family: "Oswald", sans-serif;
  border-radius: 5px;
  outline: none;
  border: none;
  background-color: #f7ff19;
  color: #222;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero .leftpart button:hover {
  background-color: #d2da05;
  transform: scale(1.05);
}
.hero .leftpart button:active {
  transform: scale(0.97);
}
@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 107px 10px 80px;
  }
  .hero img {
    position: relative;
    width: 100%;
    max-width: 320px;
    top: auto;
    right: auto;
    transform: none;
    margin: 0 auto 30px;
    display: block;
  }
  .hero .leftpart {
    position: relative;
    height: auto;
    padding: 0 10px 30px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .hero .leftpart h1 {
    font-size: 2.2rem;
  }
  .hero .leftpart p {
    font-size: 1.2rem;
    width: 100%;
    line-height: 1.3;
  }
  .hero .leftpart button {
    padding: 14px 25px;
    font-size: 1.2rem;
  }
}

.vbucks {
  padding: 60px 5%;
  background: #101014;
  text-align: center;
}
.vbucks h1 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 40px;
  letter-spacing: 2px;
}
.vbucks .vbuckscards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
.vbucks .vbuckscards .vbuckscard {
  width: 260px;
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.vbucks .vbuckscards .vbuckscard:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}
.vbucks .vbuckscards .vbuckscard img {
  width: 120px;
}
.vbucks .vbuckscards .vbuckscard p {
  color: #101014;
  font-size: 20px;
  font-weight: 600;
}
.vbucks .vbuckscards .vbuckscard button {
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  background: #fff;
  color: #101014;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #101014;
  font-family: "Oswald", sans-serif;
}
.vbucks .vbuckscards .vbuckscard button:hover {
  background: #f7ff19;
  color: #101014;
  box-shadow: 0 8px 20px rgba(247, 255, 25, 0.6);
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .vbucks h1 {
    font-size: 28px;
  }
  .vbucks .vbuckscard {
    width: 100%;
    max-width: 320px;
  }
}
.claim-popup {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, rgba(26, 26, 46, 0.98), rgba(0, 0, 0, 0.98));
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s ease;
  z-index: 999;
  backdrop-filter: blur(5px);
}
.claim-popup.active {
  opacity: 1;
  pointer-events: auto;
}
.claim-popup .popup-box {
  width: 420px;
  padding: 40px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 60px rgba(247, 255, 25, 0.15);
  animation: popupIn 0.6s ease;
  color: #fff;
}
.claim-popup h2 {
  margin-bottom: 20px;
  font-size: 22px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.claim-popup input {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid #f7ff19;
  color: #fff;
  outline: none;
  margin-bottom: 25px;
  box-shadow: 0 0 15px rgba(247, 255, 25, 0.3);
  font-family: "Oswald", sans-serif;
}
.claim-popup button {
  width: 100%;
  padding: 14px;
  border-radius: 40px;
  border: none;
  background: #f7ff19;
  color: #101014;
  font-weight: 900;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.3s;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
}
.claim-popup button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px #f7ff19;
}
.claim-popup .progress {
  height: 6px;
  width: 100%;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  margin: 20px 0;
  overflow: hidden;
}
.claim-popup .progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #f7ff19, #fff);
  transition: width 1s ease;
}
.claim-popup ul {
  list-style: none;
  padding: 0;
}
.claim-popup ul li {
  opacity: 0;
  margin-bottom: 12px;
  animation: fadeIn 0.5s forwards;
}
.claim-popup ul li.done {
  color: #f7ff19;
  font-weight: bold;
}
.claim-popup .step {
  display: none;
}
.claim-popup .step.active {
  display: block;
}
.claim-popup .step-final p {
  margin-bottom: 12px;
  font-size: 15px;
}
.claim-popup .step-final strong {
  color: #f7ff19;
  letter-spacing: 1px;
}
.claim-popup .step-final .warning {
  margin: 20px 0;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
}
.claim-popup .step-final .warning span {
  color: #f7ff19;
}
.claim-popup .step-final .contdown {
  width: 100%;
  height: max-content;
  padding: 20px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 480px) {
  .claim-popup {
    padding: 15px;
  }
  .claim-popup .popup-box {
    width: 100%;
    max-width: 360px;
    padding: 25px 20px;
    border-radius: 20px;
  }
  .claim-popup h2 {
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 15px;
  }
  .claim-popup input {
    padding: 12px;
    font-size: 14px;
    border-radius: 12px;
    margin-bottom: 18px;
  }
  .claim-popup button {
    padding: 12px;
    font-size: 14px;
    border-radius: 30px;
  }
  .claim-popup .progress {
    height: 5px;
    margin: 15px 0;
  }
  .claim-popup ul li {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .claim-popup .step-final p {
    font-size: 14px;
    line-height: 1.4;
  }
  .claim-popup .step-final strong {
    font-size: 15px;
  }
  .claim-popup .step-final .warning {
    font-size: 13px;
    padding: 0 5px;
  }
  .claim-popup .step-final .contdown {
    padding-top: 10px;
    transform: scale(0.9);
  }
}
@keyframes popupIn {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.live-popups {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.live-popup {
  background: rgba(16, 16, 20, 0.95);
  color: #fff;
  padding: 14px 18px;
  border-radius: 14px;
  min-width: 260px;
  border-left: 4px solid #f7ff19;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: slideIn 0.5s ease, fadeOut 0.5s ease 4.5s forwards;
}
.live-popup p {
  font-size: 14px;
  margin: 0;
}
.live-popup p strong {
  color: #f7ff19;
}
.live-popup span {
  font-size: 12px;
  opacity: 0.7;
}

@keyframes slideIn {
  from {
    transform: translateX(-40px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeOut {
  to {
    opacity: 0;
    transform: translateX(-40px);
  }
}
/* Responsive */
@media (max-width: 768px) {
  .live-popups {
    left: 15px;
    bottom: 15px;
  }
}
.aboutus {
  background-color: #101014;
  color: #f7ff19;
  padding: 30px 20px;
  text-align: center;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  border-top: 2px solid #f7ff19;
}
.aboutus .container {
  max-width: 1000px;
  margin: 0 auto;
}
.aboutus h2 {
  font-weight: 900;
  font-size: 24px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.aboutus p {
  max-width: 600px;
  margin: 0 auto;
  color: #ececaa;
  line-height: 1.5;
}

.menu {
  font-size: 2rem;
  cursor: pointer;
  color: #fff;
}

/* WRAPPER */
.side-menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
}

/* OVERLAY */
.side-menu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: 0.3s ease;
}

/* MENU CONTENT */
.side-menu-content {
  position: absolute;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: #111;
  padding: 30px;
  transition: 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.side-menu-content ul {
  list-style: none;
  padding: 0;
}
.side-menu-content ul li {
  margin-bottom: 20px;
}
.side-menu-content ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.3rem;
  font-family: "Oswald", sans-serif;
}
.side-menu-content ul li a:hover {
  color: #f7ff19;
}

/* CLOSE ICON */
.close-btn {
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  align-self: flex-end;
}

/* ACTIVE */
.side-menu.active {
  pointer-events: auto;
}
.side-menu.active .side-menu-overlay {
  opacity: 1;
}
.side-menu.active .side-menu-content {
  right: 0;
}/*# sourceMappingURL=main.css.map */