/*@import url("https://fonts.googleapis.com/css?family=Fira+Sans:300,900,400,500,700,600");*/
@import url("https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --dark: rgba(4, 2, 15, 1);
  --purple: rgba(118, 34, 240, 1);
  --dark-purple: rgba(65, 5, 153, 1);
  --white: rgba(255, 255, 255, 1);
  --neon-green: rgba(200, 255, 0, 1);
  --neon-green-darker: rgba(200, 242, 62, 1);
  --grey: rgba(137, 144, 174, 1);
  --medium-grey: rgba(229, 231, 230, 1);
  --yyy-white: rgba(255, 255, 255, 1);
  --ligh-grey: rgba(243, 246, 246, 1);
  --font-family: "Fira Sans", Helvetica, Arial, sans-serif;
}

* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

html,
body {
  margin: 0px;
  height: 100%;
  font-family: var(--font-family);
}

html,
body,
div,
span,
applet,
object,
iframe,
p,
pre,
a,
abbr,
acronym,
address,
big,
cite,
del,
dfn,
img,
ins,
kbd,
q,
s,
samp,
small,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  font-family: var(--font-family);
  vertical-align: baseline;
}

/* a blue color as a generic focus style */
button:focus-visible {
  outline: 2px solid var(--purple) !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}

a {
  text-decoration: none;
  font-family: var(--font-family);
  color: inherit;
}

.cta-primary {
  padding-top: 12px;
  padding-right: 24px;
  padding-bottom: 11px;
  padding-left: 24px;
  gap: 10px;
  border-radius: 15px;
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 4px;
  border-left-width: 2px;
  border-width: 2px, 2px, 4px, 2px;
  border-style: solid;
  border-color: #410498;
  color: var(--purple);
  background-color: var(--purple);
  transition: #ffffff 0.3s ease;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  text-align: center;
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(65, 4, 152, 0.3);
}

.cta-secondary {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  background-color: var(--white);
  border-radius: 15px;
  border-style: solid;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 4px;
  border-left-width: 2px;
  border-width: 2px, 2px, 4px, 2px;
  border-color: var(--purple);
  color: var(--purple);
  flex: 0 0 auto;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 700;
}

.cta-secondary:hover {
  background-color: var(--purple);
  color: var(--white);
  border-color: var(--dark-purple);
}

.cta-secondary:hover .select-bet-2 {
  color: var(--white);
}

@media (max-width: 480px) {
  .cta-secondary {
    width: 100%;
  }

  .cta-primary {
    padding-right: 16px;
    padding-left: 16px;
  }
}


/* TOP HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  background: transparent;
}

/* Points shimmer loading effect */
@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.points-shimmer {
  display: inline-block;
  width: 60px;
  height: 16px;
  background: linear-gradient(
    90deg,
    transparent 25%,
    #e0e0e0 50%,
    transparent 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite linear;
  border-radius: 4px;
  vertical-align: middle;
}

.points-loaded {
  animation: fadeIn 0.3s ease-in;
}

.points-pending {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  color: #1a0b2e;
  background: #c8ff00;
  box-shadow: 0 0 8px rgba(200, 255, 0, 0.35);
  cursor: help;
  vertical-align: middle;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* Fade animation classes for odds values and icons */
.icon-text {
  transition: opacity 0.2s ease-in-out;
}

.icon-text.fade-out {
  animation: fadeOut 0.2s ease-in-out forwards;
}

.icon-text.fade-in {
  animation: fadeIn 0.4s ease-in-out forwards;
}

.top {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  z-index: 100;
}

.top-nav-desktop .top {
  display: flex;
  column-gap: 25px;
  position: relative;
  height: 64px;
  justify-content: space-between;
  width: 100%;
  /* background: linear-gradient(to bottom, rgb(216 243 173), rgba(0, 0, 0, 0)); */
  /* background: linear-gradient(#f4ffe0d9, rgb(216 243 173 / 81%), rgba(0, 0, 0, 0)); */
  background: linear-gradient(
    rgba(200, 255, 0, 0.8),
    rgba(200, 255, 0, 0.5),
    rgba(200, 255, 0, 0)
  );
  padding: 0 24px;
}

.top-nav-desktop {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
}

.top-nav-desktop .frame-2 {
  display: inline-flex;
  gap: 24px;
  position: relative;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}


.top-nav-desktop .frame-2::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Edge */
}

.logo-image {
  height: 38px;
  width: 100px;
  justify-content: center;
}

@media (max-width: 768px) {
  .top-nav-desktop .frame-2 {
    gap: 12px;
    flex-direction: column;
    width: 100%;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .top-nav-desktop .frame-2 {
    gap: 8px;
  }

  .header {
  padding: 16px;
  }

  .logo-image {
    height: 34px;
    width: 88px;
  }

  .text-wrapper-20 .top-logo, .all-bettors-logo {
    height: 34px;
    width: 88px;
  }
}

.top-nav-desktop .frame-3 {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  flex: 0 0 auto;
  cursor: pointer;
  transition: transform 0.2s;
}

.top-nav-desktop .frame-wrapper {
  display: flex;
  position: relative;
  /* overflow-x: auto; */
}

@media (max-width: 768px) {
  .top-nav-desktop .frame-3 {
    gap: 16px;
  }

  .top-nav-desktop .frame-wrapper {
    display: none;
  }
}

@media (max-width: 480px) {
  .top-nav-desktop .frame-3 {
    gap: 10px;
  }

  .top-nav-desktop .text-wrapper {
    font-size: 14px;
  }

  .top-nav-desktop .frame-wrapper {
    display: none;
  }
}

.top-nav-desktop .frame-3:hover {
  transform: translateY(-2px);
}

.top-nav-desktop .frame-3:hover .text-wrapper {
  color: var(--purple);
}

.top-nav-desktop .rectangle-2 {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 6px;
  background-color: var(--purple);
}

.top-nav-desktop .text-wrapper {
  align-self: stretch;
  font-weight: 500;
  color: var(--dark);
  font-size: 18px;
  position: relative;
  font-family: var(--font-family);
  letter-spacing: 0;
  line-height: normal;
  transition: color 0.3s;
}

.top-nav-desktop .rectangle-3 {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 6px;
  background-color: var(--purple);
  opacity: 0;
  transition: opacity 0.3s;
}

.top-nav-desktop .frame-3:hover .rectangle-3 {
  opacity: 1;
}

.top-nav-desktop .frame-4, .frame-4 {
  display: flex;
  align-items: center;
  /* justify-content: flex-end; */
  gap: 8px;
  /* padding: 24px 0px 0px; */
  position: relative;
}

/* NEW Badge for Predicts Tab */
.new-badge {
  position: relative;
  top: -4px;
  right: 0px;
  background: linear-gradient(
    135deg,
    var(--dark-purple) 0%,
    #a57de2 50%,
    var(--purple) 100%
  );
  background-size: 200% 200%;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 4px;
  border-radius: 0 0 6px 6px;
  text-transform: uppercase;
  animation:
    pulse-badge 2s ease-in-out infinite,
    shimmer-badge 3s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

@keyframes shimmer-badge {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media (max-width: 768px) {
  .new-badge {
    font-size: 9px;
    padding: 2px 5px;
    right: -30px;
  }
}

@media (max-width: 480px) {
  .new-badge {
    font-size: 8px;
    padding: 1px 4px;
    right: -25px;
    top: -6px;
  }
}

.top-nav-desktop .rectangle-2 {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 6px;
  background-color: var(--purple);
}

.top-nav-desktop .text-wrapper {
  align-self: stretch;
  font-weight: 500;
  color: var(--dark);
  font-size: 18px;
  position: relative;
  font-family: var(--font-family);
  letter-spacing: 0;
  line-height: normal;
  transition: color 0.3s;
}



@media (max-width: 768px) {
  .frame-2 {
    gap: 12px;
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .frame-3 {
    gap: 16px;
    width: 100%;
    text-align: center;
    padding: 8px 0;
  }

  .text-wrapper {
    font-size: 16px;
    padding: 8px 0;
  }
}

@media (max-width: 480px) {
  .frame-2 {
    gap: 8px;
  }

  .frame-3 {
    gap: 10px;
  }

  .text-wrapper {
    font-size: 14px;
  }

  .header-components {
    display: inline-flex;
    height: 34px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 5px 16px;
    position: relative;
    flex: 0 0 auto;
    background-color: #ffffff33;
    border-radius: 60px;
    border: 1px solid;
    border-color: var(--purple);
  }
}

.header-components {
  display: inline-flex;
  height: 35px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  position: relative;
  flex: 0 0 auto;
  background-color: #ffffff33;
  border-radius: 60px;
  border: 1px solid;
  border-color: var(--purple);
  color: var(--purple);
}

.header .frame {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  flex: 0 0 auto;
}

.icon-wallet-wallet {
  position: relative;
  width: 16px;
  height: 16px;
}

.link {
  color: var(--purple);
  font-size: 12px;
  text-align: center;
  position: relative;
  width: fit-content;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
}

.text-link-article {
  color: var(--purple);
  font-size: 16px;
  font-weight: 500;
  text-decoration: underline;
}

.header-components-2 {
  display: inline-flex;
  height: 35px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  gap: 8px;
  padding: 2px 16px;
  position: relative;
  flex: 0 0 auto;
  background-color: #ffffff33;
  border-radius: 60px;
  border: 1px solid;
  border-color: #7622f0;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.header-components-2:hover {
  background-color: #7622f0;
}

.header-components-2:hover .text-wrapper-wallet {
  color: white;
}

.text-wrapper-wallet {
  color: var(--purple);
  font-size: 14px;
  text-align: center;
  position: relative;
  width: fit-content;
  font-family: var(--font-family);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
  transition: color 0.3s ease;
}
/* End of Top header */

/* ---------------------------------------------------------------------------
 * Curv currency icon (.curv-icon)
 *
 * Sérgio (27 Apr) — "all currency signals too curv not dollars". The contour
 * integral glyph (∮ U+222E) was missing from several common system fonts and
 * silently fell back to £ / $. The icon below replaces the glyph everywhere
 * (dashboard, billing, predictions, profile points, dynamic JS injections).
 *
 *   - Sizes with surrounding text via 1em width/height.
 *   - Inherits color via `currentColor`, so a green points display stays
 *     green, a red error message stays red, etc.
 *   - vertical-align: -0.125em keeps the optical baseline aligned with the
 *     numeric value next to it (e.g. ".curv-icon 220").
 * -------------------------------------------------------------------------*/
.curv-icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.125em;
  flex-shrink: 0;
}

/* ---------------------------------------------------------------------------
 * Desktop hamburger trigger (#menuBtnDesktop, .hamburger-btn)
 *
 * Sérgio (27 Apr) — sidebar wasn't popping up on desktop because the existing
 * trigger lived inside the bottom-nav (which is `display: none` above 480px).
 * This is the desktop counterpart, included from views/partials/top-nav-desktop
 * and inline desktop nav blocks.
 *
 * Visibility:
 *   - Hidden ≤480px (mobile uses the bottom-nav Menu tab instead).
 *   - Inline-flex ≥481px so it sits next to the Join-now / Betslip CTA.
 * -------------------------------------------------------------------------*/
.hamburger-btn {
  display: none;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 10px;
  width: 44px;
  height: 44px;
  padding: 10px 9px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  color: inherit;
  opacity: 0.85;
  transition: border-color 0.15s ease, background 0.15s ease, opacity 0.15s ease;
}

.hamburger-btn:hover,
.hamburger-btn:focus-visible {
  border-color: var(--cta-primary-hover, #c47bff);
  background: rgba(196, 123, 255, 0.08);
  opacity: 1;
  outline: none;
}

.hamburger-btn .hamburger-bar {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

@media (min-width: 481px) {
  .hamburger-btn {
    display: inline-flex;
  }
}

.nav-main {
  display: none;
}

@media (max-width: 768px) {
  .homepage .top {
    display: flex;
    row-gap: 100px;
    /* column-gap: 100px; */
    padding: 16px;
    height: fit-content;
    justify-content: space-between;
    /* flex-direction: column;
    align-items: center;
    padding: 0px 0px 0px; */
  }

}

@media (max-width: 480px) {
  /* Bottom navigation */
  .nav-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: fixed;
    width: 100%;
    height: 60px;
    bottom: 0;
    left: 50%;
    border-radius: 24px 24px 0 0;
    background-color: var(--white);
    box-shadow: 0px -4px 10px rgba(0, 0, 0, 0.1);
    transform: translateX(-50%);
    z-index: 100;
  }

  .nav-main .img {
    width: 100%;
    object-fit: cover;
    position: relative;
    height: 1px;
  }

  .nav-main .frame-8 {
    display: flex;
    width: -webkit-fill-available;
    border-radius: 100%;
    align-items: flex-start;
    justify-content: space-between;
    flex: 0 0 auto;
    padding: 0 20px;
  }

  .nav-main .div-3 {
    position: relative;
    /*width: 57px;
    height: 48px;*/
    color: var(--neon-green);
  }

  .nav-main .rectangle {
    position: absolute;
    width: 57px;
    height: 4px;
    top: 45px;
    left: 0;
    background-color: var(--purple);
  }

  .nav-main .hicon-bold-home {
    position: absolute;
    width: 18px;
    height: 18px;
    top: 5px;
    left: 20px;
  }

  .nav-main .text-wrapper-3 {
    position: absolute;
    height: 17px;
    top: 25px;
    left: 10px;
    font-family: var(--font-family);
    font-weight: 600;
    color: var(--purple);
    font-size: 14px;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
  }

  .nav-main .frame-9 {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
    top: 2px;
    left: 7px;
  }

  .nav-main .group-2 {
    position: relative;
    width: 38px;
    height: 44px;
    top: 3px;
    left: 10px;
  }

  .nav-main .text-wrapper-5 {
    position: absolute;
    height: 17px;
    top: 27px;
    left: 0;
    font-family: var(--font-family);
    font-weight: 400;
    color: var(--dark);
    font-size: 14px;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
  }

  .text-wrapper-wallet {
    font-size: 12px;
  }

  .vector {
    /*position: absolute;
    width: 24px;
    height: 20px;
    top: 0;
    left: 6px;*/
    position: relative;
    width: 24px;
    height: 23px;
  }

  .search-btt {
    position: relative;
    width: 40px;
    height: 40px;
  }

  .side-menu-icon {
    position: relative;
    width: 30px;
    height: 23px;
  }

  .text-wrapper-5 {
    position: absolute;
    height: 17px;
    top: 27px;
    left: 0;
    font-family: var(--font-family);
    font-weight: 400;
    color: var(--dark);
    font-size: 14px;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
  }

    .wallet-points-text {
    font-family: var(--font-family);
    font-weight: 700;
    color: var(--dark);
    font-size: 24px;
    text-align: left;
  }

  .frame-69 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    /*position: relative;
    top: 1px;
    left: 6px;*/
  }

  .frame-69 .nav-main-button {
    text-decoration: none;
    font-family: var(--font-family);
    color: inherit;
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .frame-69.selected {
    border-bottom: 4px solid var(--purple);
    content: "";
    display: flex;
    height: 50px;
  }

  .frame-69.selected .nav-main-button {
    gap: 3px !important;
  }

  .text-wrapper-4 {
    position: relative;
    width: fit-content;
    font-family: var(--font-family);
    font-weight: 400;
    color: var(--dark);
    font-size: 12px;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
  }

  .selected .text-wrapper-4 {
    text-decoration: none;
    font-family: var(--font-family);
    color: var(--purple);
    font-weight: 700;
  }

  .homepage .text-wrapper-4 {
    position: relative;
    width: fit-content;
    margin-top: -6.5px;
    margin-bottom: -4.5px;
    font-family: var(--font-family);
    font-weight: 700;
    color: var(--neon-green);
    font-size: 24px;
    letter-spacing: 0;
    line-height: normal;
    white-space: nowrap;
  }

  .homepage .text-wrapper-4 a {
    font-family: var(--font-family);
    font-weight: 700;
    color: var(--neon-green);
    font-size: 32px;
    letter-spacing: 0;
    line-height: normal;
    white-space: nowrap;
  }

  .live-dealer {
    position: relative;
    width: 23px;
    height: 23px;
  }

  .home-icon {
    position: relative;
    width: 23px;
    height: 23px;
  }

  .homepage .frame-8 {
    display: flex;
    flex-direction: column;
    width: 260px;
    height: 100%;
    /* align-items: flex-start; */
    justify-content: flex-start;
    gap: 8px;
    padding: 20px 10px;
    position: relative;
    /* align-self: stretch; */
    background-color: var(--neon-green);
    border-right-width: 1px;
    border-right-style: solid;
    border-color: #04020f33;
    /* opacity: 0.8; */
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .homepage .frame-8:hover {
    background-color: rgba(200, 255, 0, 0.6);
  }

  .div-3 {
    position: relative;
    /*width: 57px;
    height: 36px;*/
    color: var(--neon-green);
    display: flex;
    justify-content: center;
  }

  .logout-footer-item {
    display: visible;
  }

  .header-components-2 {
    display: inline-flex;
    height: 34px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 5px 16px;
    position: relative;
    flex: 0 0 auto;
    background-color: #ffffff33;
    border-radius: 60px;
    border: 1px solid;
    border-color: var(--purple);
  }
}

@media (min-width: 769px) {
  .text-wrapper-20 .top-logo {
    height: 64px;
    width: 100%;
  }

  .all-bettors-logo {
    width: 100px;
    height: 38px;
  }
}

.text-wrapper-20,
.top-logo {
  /* margin-right: 24px; */
  display: flex;
  align-items: center;

  justify-content: space-between;
}

/* Logout button for desktop */
.logout-btn-desktop {
  all: unset;
  box-sizing: border-box;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 30px;
  position: relative;
  flex: 0 0 auto;
  border-radius: 100px;
  border: 3px solid;
  border-color: var(--purple);
  color: var(--purple);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition:
    background-color 0.3s,
    color 0.3s;
  margin-left: 12px;
}

.logout-btn-desktop:hover {
  background-color: var(--purple);
  color: white;
}

/* Menu Modal */
.menu-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.menu-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.menu-modal-content {
  position: absolute;
  bottom: 0;
  right: 0;
  background: white;
  border-radius: 0px 0px 0 0px;
  padding: 20px;
  max-height: 100%;
  height: 100%;
  width: 240px;
  overflow-y: auto;
  animation: slideRight 0.3s ease;
}

@keyframes slideRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

.menu-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.menu-modal-header h3,
.side-menu-username {
  font-family: var(--font-family);
  font-size: 24px;
  font-weight: 600;
  color: var(--black);
  margin: 0;
}

.menu-modal .cta-side-menu {
  padding: 7px 16px 7px 16px;
  gap: 10px;
  border-radius: 15px;
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 4px;
  border-left-width: 2px;
  border-width: 2px, 2px, 4px, 2px;
  border-style: solid;
  border-color: var(--dark-purple);
  color: var(--purple);
  background-color: var(--purple);
  transition: var(--white) 0.3s ease;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  width: fit-content;
  margin-top: 8px;
}

.menu-modal .cta-side-menu-primary {
  padding: 12px 20px 11px 20px;
  gap: 16px;
  border-radius: 15px;
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 4px;
  border-left-width: 2px;
  border-width: 2px, 2px, 4px, 2px;
  border-style: solid;
  border-color: var(--dark-purple);
  color: var(--purple);
  background-color: var(--purple);
  transition: var(--white) 0.3s ease;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  width: fit-content;
  margin-top: 8px;
  margin-bottom: 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.menu-modal .cta-side-menu:hover .cta-side-menu-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(65, 4, 152, 0.3);
}

.menu-modal .cta-side-menu-text {
  position: relative;
  width: fit-content;
  margin-top: -2px;
  font-family: var(--font-family);
  font-weight: 700;
  color: var(--white);
  font-size: 14px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
}

.menu-modal .cta-side-menu-text-primary {
  position: relative;
  width: fit-content;
  margin-top: -2px;
  font-family: var(--font-family);
  font-weight: 700;
  color: var(--white);
  font-size: 18px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
}

/*.side-menu-username {}*/
.menu-modal-close {
  background: none;
  border: none;
  font-size: 32px;
  color: var(--purple);
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  flex-direction: column;
}

.menu-modal-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.logout-footer-item {
  padding: 0px;
  background: transparent;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--purple);
  cursor: pointer;
  transition: background 0.2s ease;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 6px 0px;
  background: transparent;
  border: none;
  border-radius: 12px;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease;
  width: 100%;
  text-align: left;
}

.menu-item:hover {
  background: rgba(98, 0, 238, 0.1);
}

.menu-item img {
  width: 24px;
  height: 24px;
}

.menu-icon-text {
  font-size: 24px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-divider {
  height: 1px;
  background: rgba(98, 0, 238, 0.2);
  margin: 8px 0;
}

.close-side-menu {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  justify-content: center;
}
