@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --neon-orange: #fa9f4a;
  --neon-purple: #000000;
  --dark-bg: #000000;
  --light-bg: #1b1e2b;
  --accent: #000000;
  --text-color: #ffffff;
  --muted: #888ca4;
  --gradient: linear-gradient(135deg, var(--neon-orange), var(--neon-purple));
  --accent: #000000;
}

.maintheme {
  --neon-orange: #ff6a00;
  --neon-purple: #c800ff;
  --dark-bg: #0a0a0f;
  --light-bg: #1b1e2b;
  --accent: #000000;
  --text-color: #ffffff;
  --muted: #888ca4;
  --gradient: linear-gradient(135deg, var(--neon-orange), var(--neon-purple));
  --accent: #1e1e1e;
}


.silver-theme {
  --neon-orange: #ff6a00;
  --neon-purple: #c800ff;
  --dark-bg: #ffffff;
  --light-bg: #b2b2b2;
  --accent: #2b2e42;
  --text-color: #ffffff;
  --muted: #888ca4;
  --gradient: linear-gradient(135deg, var(--neon-orange), var(--neon-purple));
  --accent: #1e1e1e;
  /* Dark background for the card */
}

.gold-theme {
  --neon-orange: #FFD700;
  --neon-purple: #FFA500;
  --dark-bg: #a5911c;
  --light-bg: #1b1e2b;
  --accent: #000000;
  --text-color: #ffffff;
  --muted: #888ca4;
  --gradient: linear-gradient(135deg, var(--neon-orange), var(--neon-purple));
  --accent: #1e1e1e;
  /* Dark background for the card */
}

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

body {
  font-family: 'Figtree', sans-serif;
  background: var(--dark-bg);
  color: var(--text-color);
  display: flex;

  flex-direction: column;
}

hr {
  margin-top: 8px;
  margin-bottom: 8px;
  border: 1px solid #0000003a;
}

.d-none {
  display: none;
}

.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.751), rgba(202, 189, 120, 0.15), #000);
  background-size: 200% 200%;
  background-color: rgba(0, 0, 0, 0.751);
  animation: move-gradient 30s ease infinite, blur-circles 10s ease infinite;
  z-index: -1;
}

a {
  color: white;
}


@keyframes move-gradient {
  0% {
    background-position: 100% 100%;
  }

  50% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 100% 100%;
  }
}

@keyframes blur-circles {
  0% {
    filter: blur(5px);
  }

  50% {
    filter: blur(20px);
  }

  100% {
    filter: blur(5px);
  }
}

/* Matrix-style Number Effect */
.matrix {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-family: "Courier New", monospace;
  color: rgba(0, 255, 0, 0.6);
  font-size: 20px;
  z-index: 1;
  pointer-events: none;
  animation: matrix-rain 0.1s linear infinite;
}

@keyframes matrix-rain {
  0% {
    opacity: 0.1;
  }

  100% {
    opacity: 0.7;
  }
}

.matrix span {
  position: absolute;
  animation: drop 5s linear infinite;
}

@keyframes drop {
  0% {
    top: -10%;
    opacity: 0;
  }

  100% {
    top: 100%;
    opacity: 0.1;
  }
}

/* Randomized position of number drops */
.matrix span:nth-child(odd) {
  animation-duration: 4s;
}

.matrix span:nth-child(even) {
  animation-duration: 6s;
}




.sidebar {
  width: 220px;
  background: var(--light-bg);
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border-right: 1px solid #333;
}

.mt {
  margin-top: 16px;
}

.sidebar h2 {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.3rem;
  text-align: center;
}

.sidebar a {
  text-decoration: none;
  color: var(--muted);
  padding: 0.8rem 1rem;
  border-radius: 6px;
  transition: background 0.3s;
}

.sidebar a:hover,
.sidebar a.active {
  background: var(--accent);
  color: var(--neon-orange);
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-bottom: 40px;
}

.navbar {
  background: #000;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #333;
  display: flex;
  /* Use flexbox for layout */
  justify-content: space-between;
  /* Equal spacing between items */
  align-items: center;
  /* Vertically center the items */
  /* Full viewport height */
  padding: 0 2rem;
}

.navbar h1 {
  font-size: 1.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes flash-twice {

  0%,
  100% {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }
}

.user {
  background-color: orange;
  /* Gradient from orange to purple */
  padding: 4px;
  border-radius: 8px;
  color: white;
  align-items: center;
  animation: flash-twice 1.5s ease-in-out 1;

}

.user-setup {
  /* Gradient from orange to purple */
  background-color: orange;
  padding: 4px;
  border-radius: 8px;
  color: white;
  align-items: center;
  animation: flash-twice 6s ease-in-out infinite;
}

.dashboard {
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  flex: 1;
  overflow-y: auto;
}

.card {
  background: #00000087;
  padding: 1.5rem;
  border-radius: px;
  border: 1px solid #2c2c2c;
  box-shadow: 0 0 15px rgba(255, 106, 0, 0.15), 0 0 20px rgba(200, 0, 255, 0.1), 0 0 25px rgba(0, 255, 255, 0.2);
  /* Glowing effect */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* Smoother transition */
  position: relative;
  overflow: hidden;
  min-height: 150px;
  border-bottom: 2px solid orange;
  border-top-right-radius: 25px;
}

.card::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -20%;
  width: 200%;
  height: 200%;
  /* background: var(--gradient); */
  z-index: -1;
  filter: blur(30px);
  transform: rotate(-45deg);
}

.card:hover {
  transform: translateY(-10px);
  /* Deeper hover effect */
  box-shadow:
    0 0 30px rgba(255, 106, 0, 0.3),
    0 0 35px rgba(200, 0, 255, 0.2),
    0 0 45px rgba(0, 255, 255, 0.3);
  /* Stronger glow */
}

.card h3 {
  font-size: 1.2rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(163, 49, 21, 0.7);
  /* Neon glow effect on text */
}

.card p {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 300;
  letter-spacing: 1px;
}


.bottom-nav {
  display: none;
}

.main {
  width: 100%;
}

.bottom-nav {
  display: flex;
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #000000f8;
  border-top: 1px solid #333;
  justify-content: space-around;
  padding: 0.5rem 0;
  z-index: 999;
  align-items: center;

  /* Rounded top corners */
  border-top-left-radius: 1px;
  border-top-right-radius: 25px;
}


.bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--muted);
  font-size: 0.75rem;
  text-decoration: none;
  padding: 0.5rem 0;
  flex: 1;
  transition: color 0.3s;
}

.bottom-nav a .icon {
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

.bottom-nav a.active,
.bottom-nav a:hover {
  color: var(--neon-orange);

  border-radius: 100px;
}

@media (max-width: 768px) {}

#popupOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-box {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #2c2c2c;
  box-shadow: 0 0 20px rgba(255, 106, 0, 0.25);
  max-width: 400px;
  width: 90%;
  text-align: center;
  color: var(--text-color);
  position: relative;
transform: translateY(100px);
}

.popup-box h2 {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.popup-box p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.popup-box button {
  padding: 0.5rem 1rem;
  background: var(--gradient);
  color: var(--dark-bg);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  font-family: 'Rajdhani', sans-serif;
}

input {
  background-color: var(--accent);
  color: var(--text-color);
  border: 2px solid var(--neon-orange);
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 1rem;
  font-family: 'Rajdhani', sans-serif;
  transition: all 0.3s ease-in-out;
  width: 100%;
  box-sizing: border-box;
}

input::placeholder {
  color: var(--muted);
}

input:focus {
  outline: none;
  border-color: var(--neon-purple);
  background-color: var(--light-bg);
  box-shadow: 0 0 8px var(--neon-purple);
}

button {
  background: var(--gradient);
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  font-family: 'Rajdhani', sans-serif;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 106, 0, 0.3), 0 10px 30px rgba(200, 0, 255, 0.2);
}

button:hover {
  filter: brightness(1.1);
  transform: translateY(-3px);
}

button:focus {
  outline: none;
  box-shadow: 0 0 15px rgba(200, 0, 255, 0.6);
}

button:active {
  transform: translateY(2px);
  box-shadow: 0 5px 20px rgba(200, 0, 255, 0.4);
}

.dropdown-toggle {
  background: var(--accent);
  color: var(--text-color);
  padding: 10px 16px;
  font-family: 'Rajdhani', sans-serif;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--neon-purple);
  transition: all 0.3s ease;
}

.dropdown-toggle:hover {
  background-color: var(--light-bg);
  box-shadow: 0 5px 15px rgba(255, 106, 0, 0.2);
}

.dropdown-menu a:hover {
  background-color: var(--light-bg);
  color: var(--neon-purple);
}

.rt {
  text-align: end !important;
  font-size: xx-large !important;
  font-weight: 800 !important;
}

.mobile-menu {
  position: fixed;
  top: 60px;
  left: -100%;
  width: 70%;
  height: calc(100vh - 60px);
  background: var(--light-bg);
  border-right: 1px solid var(--primary);
  box-shadow: 10px 0 30px rgba(255, 99, 255, 0.3);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem 1.5rem;
  transition: left 0.3s ease;
  z-index: 1000;
}

.mobile-menu.show {
  left: 0;
}


.main-nav-btn {
  background-color: rgba(10, 10, 10, 0.248);
  padding: 6px;
  display: flex;
  gap: 8px;
  color: #ffffff;
}

.mid-nav {
  display: flex;
  background-color: rgba(0, 0, 0, 0.171);
  padding: 2px 14px 2px 14px;
  justify-content: space-between;
  gap: 32px;
  border-radius: 20px;
}



.radio-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--text-color);
  position: relative;
  padding-left: 2.2rem;
}

.radio-option input[type="radio"] {
  display: none;
}

.custom-radio {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 18px;
  width: 18px;
  background: var(--accent);
  border: 2px solid var(--neon-orange);
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 106, 0, 0.3);
}

.radio-option input[type="radio"]:checked+.custom-radio {
  background: var(--gradient);
  box-shadow: 0 0 15px rgba(255, 106, 0, 0.6), 0 0 20px rgba(200, 0, 255, 0.4);
}

.radio-option:hover .custom-radio {
  border-color: var(--neon-purple);
  box-shadow: 0 0 12px rgba(200, 0, 255, 0.6);
}

.blurred {
  filter: blur(10px);
  transition: filter 0.3s ease;
}

#splash-icon {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
  color: #4CAF50;
  /* green, change as needed */
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

#splash-icon.show {
  opacity: 1;
}

/* Make sure the warning-popup class applies the special style for warnings */
.warning-popup .popup-box {
  border: 2px solid var(--neon-orange);
  box-shadow: 0 0 20px var(--neon-orange);
}

.warning-popup .popup-box h2 {
  background: var(--neon-orange);
  color: rgb(255, 255, 255);
}

.warning-popup .popup-box p {
  color: var(--neon-orange);
}

.ref_box {
  background-color: #0000002f;
  padding: 12px;

  border: «÷/////////////////////////////////////////////////////////////////////////'-rgba(0, 0, 0, 0.268) 2px solid;
}

/* FAB button style */
.fabb {
  position: fixed;
  bottom: 80px;
  /* Position at the bottom */
  right: 20px;
  /* Position on the right side */
  width: 60px;
  height: 60px;
  background: var(--gradient);
  /* Neon gradient background */
  border-radius: 50%;
  /* Circular button */
  display: none;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 15px rgba(255, 106, 0, 0.5), 0 0 20px rgba(200, 0, 255, 0.3);
  /* Glowing effect */
  font-size: 1.8rem;
  /* Icon size */
  color: white;
  /* Icon color */
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1001;
}

.fabb:hover {
  transform: scale(1.1);
  /* Slightly grow on hover */
  box-shadow: 0 0 25px rgba(255, 106, 0, 0.8), 0 0 30px rgba(200, 0, 255, 0.6);
  /* Stronger glow */
}

/* Font Awesome headset icon */
.fabb i {
  pointer-events: none;
}

.left-b {
  border-left: orangered solid 1px;
  padding-left: 8px;
}

.figure {
  font-family: '', sans-serif;
}

.green-gradient-text {
  color: #4CAF50;
}

.days-left {
  background: linear-gradient(135deg, #851d15, #de5043);
  /* Gradient from orange to purple */
  padding: 4px;
  border-top-right-radius: 5px;
  color: white;
  width: fit-content;
}

.progress-container {
  width: 300px;
  height: 30px;
  background: #ccc;
  /* background for total length */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: inset 0 0 5px #999;
}

/* Progress bar itself */
.days-progress {
  background: linear-gradient(135deg, #851d15, #de5043);
  height: 100%;
  width: 0%;
  /* will update with JS */
  border-radius: 8px 0 0 8px;
  color: white;
  text-align: center;
  line-height: 30px;
  font-weight: bold;
  position: relative;
  overflow: hidden;
  transition: width 0.5s ease;
}

/* Flash/glow animation (like Win7 progress) */
.days-progress::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-20deg);
  animation: shine 1s infinite;
}

@keyframes shine {
  0% {
    left: -50%;
  }

  100% {
    left: 100%;
  }
}

.grb {
  background: orangered !important;
}

.fade-up {
  animation: fadeUp 0.5s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.custom-select-container {
  margin: 1rem 0;
  font-family: 'Rajdhani', sans-serif;
}

.neon-select {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--text-color);
  border: 2px solid var(--neon-orange);
  font-size: 1rem;
  appearance: none;
  outline: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 119, 255, 0.2);
  background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" fill="%23ffffff" viewBox="0 0 24 24"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 1em;
}

.neon-select:hover {
  border-color: var(--neon-orange);
  box-shadow: 0 0 15px rgba(255, 106, 0, 0.3);
}

.neon-select:focus {
  border-color: var(--neon-purple);
  box-shadow: 0 0 15px rgba(200, 0, 255, 0.4);
  background-color: var(--light-bg);
}

.circle-color-prev {
  background-color: #4CAF50;
  padding: 8px;
  width: 16px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: auto;
}

.grid-card {
  background: rgb(41 39 33 / 29%);
  border-radius: 1rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.icon-block {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ff9292, #00f2fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.grid-card h3 {
  margin: 0.5rem 0;
  font-size: 1.25rem;
  color: #333;
}

.grid-card p {
  font-size: 1.1rem;
  color: #ffffff;
}

.progress-card {
  background: #14151ddb;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid #2c2c2c;
  box-shadow: 0 0 15px rgba(255, 106, 0, 0.15), 0 0 20px rgba(200, 0, 255, 0.1), 0 0 25px rgba(0, 255, 255, 0.2);
  font-family: 'Rajdhani', sans-serif;
  margin-bottom: 2rem;
}

.progress-card h3 {
  font-size: 1.2rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.progress-bar-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.progress-bar {
  background-color: var(--accent);
  border: 2px solid var(--neon-orange);
  border-radius: 10px;
  height: 20px;
  position: relative;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--gradient);
  width: 0%;
  transition: width 0.6s ease-in-out;
  box-shadow: 0 0 10px rgba(255, 106, 0, 0.6), 0 0 15px rgba(200, 0, 255, 0.5);
}

.checkpoints {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 25px;
  width: 100%;
  padding: 0 4px;
  font-size: 0.8rem;
  color: var(--muted);
}

.progress-note {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 8px;
}

.image {
  border-radius: 12px;
  border: 1px solid #2c2c2c;
  box-shadow: 0 0 15px rgba(255, 106, 0, 0.15), 0 0 20px rgba(200, 0, 255, 0.1), 0 0 25px rgba(0, 255, 255, 0.2);
}

.pill {
  background: linear-gradient(135deg, #fc713e, #de5043);
  border-radius: 999px;
  padding: 0.4em 1em;
  color: white;
  display: inline-block;
  font-size: 0.9rem;
}

.loading-s {
  animation: spin 1s linear infinite;
}

.scroll-container {
  padding-left: 0;
  margin-left: 0;
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  width: 100vw;
  height: 35vh;
  /* or any height you want */
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
}

.scroll-container::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, and Edge */
}

.scroll-item {
  flex: 0 0 100vw;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
}

.stake-card {
  width: 70%;
  max-width: 400px;
  height: 200px;
  border-radius: 0px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: rgb(0, 0, 0);
  font-weight: bold;
  display: inline;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
  border: 4px double rgb(0, 0, 0);
}

.strip {
  background-color: #08080889;
  height: 32px;
  margin-top: 12px;
}

.selected-card {
  border: 4px double rgb(0, 0, 0);
}

.stake-card-content {
  padding: 12px;
}

.card-icon {
  position: absolute;
  top: 180px;
  right: 40px;
  width: 160px;
  height: 160px;
  opacity: 0.5;
  pointer-events: none;
}

.active-pack {
  animation: jump 0.6s ease;
}

.col-grad {
  color: var(--neon-orange);
}

@keyframes jump {
  0% {
    transform: translateY(0);
  }

  30% {
    transform: translateY(-20px);
  }

  60% {
    transform: translateY(5px);
  }

  100% {
    transform: translateY(0);
  }
}

/* Keyframes for spin */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.coin-spin {
  position: relative;
  animation: shiny-flip 4s ease-in-out infinite;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  overflow: hidden;
}

.coin-spin::after {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.6) 50%, transparent 100%);
  transform: skewX(-20deg);
  animation: shine 4s infinite;
}

@keyframes shiny-flip {
  0% { transform: rotateY(0deg); }
  50% { transform: rotateY(180deg); }
  100% { transform: rotateY(360deg); }
}

@keyframes shine {
  0% { left: -50%; }
  50% { left: 100%; }
  100% { left: 100%; }
}



.background-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -2;
}

.bg-gif {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -2;
}

.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.15), #000);
  z-index: -1;
}