:root {
  --color-primary: #9ef01a; /* Main brand color (used in buttons, highlights) */
  --color-secondary: #1a1a1a; /* Dark backgrounds or accents */
  --color-accent: #00ffcc; /* Optional secondary pop color */
  --color-text-light: #ffffff;
  --color-text-dark: #000000;
  --color-muted: #888888;
  --color-bg-light: #f8f9fa;
  --color-bg-dark: #0a0a0a;
  --color-border: #e0e0e0;
  --color-hover: #65de01; /* Hover state for buttons/links */
}

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

html {
  font-family: "Syne", sans-serif;
  font-size: calc(1rem - 6px); /*10px */
}

#base-container {
  padding: 0;
}

.nav-link {
  font-size: 1.6rem !important;
  padding: 4px 8px;
  border: none !important;
}

a {
  font-size: 1.6rem;
  padding: 4px 8px;
  border: none;
}

p,
div {
  font-size: 1.6rem;
  padding: 2px 4px;
}

button {
  outline: none;
  padding: 6px 18px;
  font-size: 1.6rem !important;
  border: none;
}
button:focus,
button:active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
  box-shadow: none;
}

.btn:focus,
.btn:active {
  outline: none !important;
  box-shadow: none !important;
  border: none;
}

h1 {
  font-size: 4.8rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  h1 {
    font-size: 3.6rem;
  }
}

h2 {
  font-size: 3.6rem;
  line-height: 1.3;
}
@media (max-width: 768px) {
  h2 {
    font-size: 3rem;
  }
}

h3 {
  font-size: 3rem;
  line-height: 1.3;
}
@media (max-width: 768px) {
  h3 {
    font-size: 2.4rem;
  }
}

h4 {
  font-size: 2.4rem;
  line-height: 1.4;
}
@media (max-width: 768px) {
  h4 {
    font-size: 2rem;
  }
}

h5 {
  font-size: 2rem;
  line-height: 1.4;
}
@media (max-width: 768px) {
  h5 {
    font-size: 1.8rem;
  }
}

h6 {
  font-size: 1.6rem;
  line-height: 1.5;
}
@media (max-width: 768px) {
  h6 {
    font-size: 1.4rem;
  }
}

.cst-btn1 {
  background: var(--color-primary);
  color: var(--color-text-dark);
  padding: 10px 14px;
  font-weight: 500;
  font-size: 1.6rem;
  border: none;
}
.cst-btn1:hover,
.cst-btn1:focus,
.cst-btn1:active,
.cst-btn1:visited {
  outline: none;
  border: none;
  box-shadow: none;
  background-color: color-mix(in srgb, var(--color-primary) 90%, #000);
}

/* header */
#header > .navbar {
  padding: 8px 0;
  border-bottom: 1px solid var(--color-muted);
}
#header .navbar-links a {
  color: #000;
  font-weight: 500;
}
#header .navbar-links .dropdown {
  position: relative;
}
#header .navbar-links .dropdown:hover > .dropdown-menu {
  display: block;
  margin-top: 0.5rem;
}
#header .navbar-links .dropdown .dropdown-menu {
  transition: all 0.2s ease-in-out;
  top: 28px;
}
#header .navbar-links .dropdown .dropdown-menu .dropdown-item {
  padding: 8px 16px;
  min-width: 200px;
}
#header .navbar-links .dropdown .dropdown-submenu {
  position: relative;
}
#header .navbar-links .dropdown .dropdown-submenu > .dropdown-menu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  margin-top: 0;
  margin-left: 0.1rem;
}
#header .navbar-links .dropdown .dropdown-submenu:hover > .dropdown-menu {
  display: block;
}
#header .navbar-links .dropdown:hover i {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
#header .navbar-links .dropdown-submenu .dropdown-item i {
  transform: rotate(0deg);
  transition: none;
}
#header .navbar-links .dropdown-submenu .dropdown-item:hover i {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
#header .action-btns a {
  color: var(--color-text-dark);
}
#header .action-btns a i {
  font-size: 2.5rem;
}
#header .action-btns a .badge {
  color: var(--color-text-dark);
  background-color: var(--color-primary);
}
#header .action-btns button {
  color: var(--color-text-dark);
  padding: 2px;
}
#header .action-btns button i {
  font-size: 2.5rem;
}
#header .action-btns .join-now-btn {
  background-color: var(--color-primary);
  border: 1px solid var(--color-text-light);
  font-weight: 500;
  padding: 8px 12px;
  color: var(--color-text-dark);
}
#header .action-btns .join-now-btn:hover {
  background-color: color-mix(in srgb, var(--color-primary) 90%, #000);
}
#header .search-container .search-icon {
  background: #fff;
}

body.modal-open {
  overflow: auto !important;
}

#searchModal .modal-body .search-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
#searchModal .modal-body .form-control {
  font-size: 1.6rem !important;
}

@media screen and (max-width: 425px) {
  #header .navbar-brand {
    margin-right: 2px;
  }
  #header .navbar-brand > img {
    max-width: 120px;
  }
}
@media screen and (max-width: 1024px) {
  #header .action-btns i {
    font-size: 2rem !important;
  }
}
/* footer */
.footer {
  background-color: var(--color-bg-dark);
  padding: 1rem;
}
.footer p {
  color: var(--color-text-light);
}
.footer .footer-title {
  font-weight: 700;
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  position: relative;
  color: var(--color-text-light);
}
.footer .footer-title::after {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--color-primary);
  margin-top: 6px;
}
.footer a {
  display: block;
  color: var(--color-text-light);
  text-decoration: none;
  margin-bottom: 0.4rem;
  transition: color 0.2s;
  font-weight: 500;
}
.footer a:hover {
  color: color-mix(in srgb, var(--color-primary) 80%, #000);
}
.footer .social-icons a {
  color: var(--color-text-light);
  font-size: 1.2rem;
  transition: color 0.2s;
}
.footer .social-icons a:hover {
  color: color-mix(in srgb, var(--color-primary) 90%, #000);
}
.footer #newsletter-form input {
  font-size: 1.6rem;
  padding: 4px 8px;
}
.footer #newsletter-form input::placeholder {
  font-size: 1.6rem;
}
.footer .btn-subscribe {
  background-color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  padding: 6px 8px;
}
.footer .btn-subscribe:hover {
  background-color: color-mix(in srgb, var(--color-primary) 90%, #000);
}

#sidebar .offcanvas {
  --bs-offcanvas-width: 300px;
}
#sidebar a {
  font-size: 1.8rem;
}
#sidebar .offcanvas-body .navbar-links a {
  color: #000;
  font-weight: 500;
}
#sidebar .offcanvas-body .navbar-links a:hover {
  color: var(--color-primary);
}
#sidebar .offcanvas-body .card-body {
  background-color: color-mix(in srgb, var(--color-muted) 10%, #fff);
  color: var(--color-text-dark);
}

@media screen and (max-width: 1024px) {
  a,
  span,
  button,
  div,
  .nav-link {
    padding: 2px 4px;
  }
  button {
    padding: 6px 8px;
  }
  #header > .navbar {
    padding: 10px 4px;
    border-bottom: 1px solid var(--color-muted);
  }
}

@media screen and (max-width: 425px) {
  #header > .navbar {
    padding: 8px 0;
    border-bottom: 1px solid var(--color-muted);
  }
}
