/* Font Family */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
/* ... (other CSS rules remain unchanged) ... */
body {
  overflow-x: hidden;
}

/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
  scrollbar-width: auto;
  scrollbar-color: rgba(0, 0, 0, 0.1882352941);
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 4px;
}

*::-webkit-scrollbar-track {
  background: black;
}

*::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.07);
  border-radius: 10px;
  border: 3px double rgba(0, 0, 0, 0.07);
}

body {
  background-image: url("../img/warzone_bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
body.fixedbg {
  background-attachment: fixed;
}

.title {
  font-family: "Roboto", sans-serif; /* Change the font family to Roboto */
}

.login-wrapper {
  color: white;
  min-height: 100vh;
  min-width: 100vw;
  backdrop-filter: blur(8px) brightness(0.2);
  -webkit-backdrop-filter: blur(8px) brightness(0.2);
}

.main-wrapper,
.game-wrapper {
  backdrop-filter: blur(8px) brightness(0.2);
  -webkit-backdrop-filter: blur(8px) brightness(0.2);
  min-height: 100vh;
}

.top-bar {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-bar div {
  margin: 0 6px;
}
@media only screen and (max-width: 769px) {
  .top-bar {
    overflow-x: scroll;
    overflow-y: hidden;
    padding: 10px 30px;
    justify-content: flex-start;
    width: 100vw;
  }
  .top-bar div, .top-bar label {
    min-width: 180px;
    text-align: center;
  }
}

.game-dash {
  display: grid;
  grid-template-columns: 320px 1fr 220px;
  grid-template-rows: 100%;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  margin-top: 20px;
}
@media only screen and (max-width: 769px) {
  .game-dash {
    display: flex;
    align-items: center;
    justify-items: center;
    flex-direction: column;
    grid-template-columns: unset;
  }
}
.game-dash .sidebar {
  padding: 10px;
}
.game-dash .sidebar input#menu-t {
  display: none;
}
@media only screen and (max-width: 769px) {
  .game-dash .sidebar {
    width: 100%;
  }
  .game-dash .sidebar input#menu-t:checked + #sidebar-menu-wrapper {
    display: block;
  }
}
.game-dash .sidebar #sidebar-menu-wrapper {
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.19);
  color: white;
  padding: 18px;
  height: calc(100vh - 120px);
  overflow-y: auto;
}
@media only screen and (max-width: 769px) {
  .game-dash .sidebar #sidebar-menu-wrapper {
    height: 400px;
    width: 100%;
    display: none;
  }
}
.game-dash .sidebar #sidebar-menu-wrapper ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.game-dash .sidebar #sidebar-menu-wrapper ul li {
  display: block;
}
.game-dash .sidebar #sidebar-menu-wrapper ul li h2 {
  font-size: 18px;
  font-family: "Roboto", sans-serif; /* Change font family for sidebar headings */
  margin-top: 20px;
}
.game-dash .sidebar #sidebar-menu-wrapper ul li a {
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.62);
  display: block;
  border-bottom: 2px solid black;
  padding: 6px;
  border-radius: 10px;
  margin-bottom: 6px;
  color: white;
  text-decoration: none;
  text-transform: capitalize;
  padding-left: 20px;
}
.game-dash .main-wrapper {
  padding: 20px;
  height: calc(100vh - 120px);
  overflow-y: auto;
}
@media only screen and (max-width: 769px) {
  .game-dash .main-wrapper {
    height: 100%;
    width: 100%;
  }
}

.card-dark {
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.19);
  backdrop-filter: blur(6px) brightness(0.5);
  color: white;
}

.dashboard {
  max-width: 1320px;
}

.dashboard .section-card {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.75), rgba(30, 41, 59, 0.68));
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 1.2rem;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.35);
}

.dashboard .section-card h2.section-heading {
  font-size: 1.45rem;
}

.dashboard .section-card .divider-soft {
  border-color: rgba(148, 163, 184, 0.2);
  opacity: 1;
}

.dashboard .section-eyebrow {
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

.dashboard .section-heading {
  font-weight: 700;
  line-height: 1.35;
}

.dashboard .subheading {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.dashboard .text-white-50 {
  color: rgba(255, 255, 255, 0.6) !important;
}

.dashboard .text-white-75,
.text-white-75 {
  color: rgba(255, 255, 255, 0.75) !important;
}

.dashboard .link-accent {
  color: #7dd3fc;
  text-decoration: none;
}

.dashboard .link-accent:hover,
.dashboard .link-accent:focus {
  color: #bae6fd;
  text-decoration: underline;
}

.dashboard .donation-btn {
  flex-shrink: 0;
}

.dashboard .donation-btn form {
  background: rgba(15, 23, 42, 0.45);
  border-radius: 0.75rem;
  padding: 0.5rem 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.new-city-bonus {
  background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.25), transparent 55%),
  linear-gradient(135deg, rgba(34, 197, 94, 0.3), rgba(59, 130, 246, 0.35) 55%, rgba(14, 165, 233, 0.4));
  border: 1px solid rgba(148, 163, 184, 0.5);
  border-radius: 1.4rem;
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
  color: #f8fafc;
}

.new-city-bonus__glow {
  position: absolute;
  inset: -40% -30% auto auto;
  width: 60%;
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle, rgba(250, 204, 21, 0.55) 0%, rgba(59, 130, 246, 0) 70%);
  filter: blur(12px);
  opacity: 0.7;
  pointer-events: none;
}

.new-city-bonus__content {
  position: relative;
  z-index: 1;
}

.new-city-bonus__eyebrow {
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(248, 250, 252, 0.75);
}

.new-city-bonus__heading {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.new-city-bonus__subheading {
  font-size: 1rem;
  color: rgba(248, 250, 252, 0.8);
}

.new-city-bonus__timer .display-6 {
  font-size: 2.5rem;
  letter-spacing: 0.08em;
  color: #fbbf24;
  text-shadow: 0 0 20px rgba(250, 204, 21, 0.65);
}

.new-city-bonus__benefits .new-city-bonus__perk {
  background: rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  height: 100%;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.25);
}

.new-city-bonus__badge {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 0.7rem;
  color: #0f172a;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  margin-bottom: 0.65rem;
  box-shadow: 0 8px 20px rgba(251, 191, 36, 0.35);
}

@media (max-width: 767.98px) {
  .new-city-bonus {
    padding: 1.75rem;
  }

  .new-city-bonus__heading {
    font-size: 1.6rem;
  }

  .new-city-bonus__timer .display-6 {
    font-size: 2rem;
  }
}

.dashboard .verification-form .form-label {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.dashboard .dashboard-list {
  display: grid;
  gap: 0.9rem;
}

.dashboard .dashboard-list__item {
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 0.9rem;
  padding: 0.85rem 1.1rem;
}

.dashboard .dashboard-list__meta {
  color: rgba(226, 232, 240, 0.75);
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.dashboard .progress-thin {
  height: 0.4rem;
  background-color: rgba(148, 163, 184, 0.2);
  border-radius: 999px;
}

.dashboard .progress-thin .progress-bar {
  border-radius: 999px;
  background-image: linear-gradient(90deg, #38bdf8, #0ea5e9);
}

.dashboard .table-responsive {
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.dashboard table.table-dark {
  --bs-table-bg: transparent;
  --bs-table-striped-bg: rgba(148, 163, 184, 0.08);
  --bs-table-striped-color: rgba(255, 255, 255, 0.85);
}

.dashboard table.table-dark tr td,
.dashboard table.table-dark tr th {
  border-color: rgba(148, 163, 184, 0.15);
}

.dashboard .badge.bg-secondary {
  background: rgba(148, 163, 184, 0.25) !important;
  color: rgba(226, 232, 240, 0.9);
}

@media (max-width: 991.98px) {
  .dashboard {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
}

@media (max-width: 575.98px) {
  .dashboard .section-card {
    padding: 1.5rem 1.25rem;
  }

  .dashboard .dashboard-list__item {
    padding: 0.8rem 0.95rem;
  }

  .dashboard .donation-btn {
    width: 100%;
  }

  .dashboard .donation-btn form {
    width: 100%;
  }

  .dashboard .verification-form .form-label {
    margin-bottom: 0.35rem;
  }
}

footer {
  background-color: black;
  padding: 30px 0;
  font-size: 12px;
}
.rally-summary {
  --rally-summary-bg: rgba(255, 255, 255, 0.08);
  --rally-summary-border: rgba(255, 255, 255, 0.16);
  --rally-summary-text: rgba(255, 255, 255, 0.85);
  --rally-summary-subtext: rgba(255, 255, 255, 0.65);
}

.rally-summary__item {
  background-color: var(--rally-summary-bg);
  border: 1px solid var(--rally-summary-border);
  border-radius: 0.85rem;
  padding: 0.75rem 1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
}

.rally-summary__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rally-summary-subtext);
  margin-bottom: 0;
}

.rally-summary__value {
  color: var(--rally-summary-text);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.2;
}

.rally-summary__sub {
  color: var(--rally-summary-subtext);
  font-size: 0.85rem;
}

@media (max-width: 575.98px) {
  .rally-summary__item {
    padding: 0.65rem 0.85rem;
  }

  .rally-summary__value {
    font-size: 1rem;
  }
}
/*# sourceMappingURL=main.css.map */
