@charset "UTF-8";

/* =========================
   GLOBAL
========================= */

body {
  background:
    radial-gradient(circle at 50% -15%, rgba(255,255,255,0.34), transparent 55%),
    radial-gradient(circle at 15% 18%, rgba(255, 235, 190, 0.14), transparent 34%),
    radial-gradient(circle at 85% 20%, rgba(255, 210, 220, 0.16), transparent 36%),
    linear-gradient(180deg, #e9aeb4 0%, #dc96a0 52%, #cc808c 100%);
  text-align: center;
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  color: #1F2D3D;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html {
  scroll-behavior: smooth;
}
body {
  position: relative;
  overflow-x: hidden;
}
/* =========================
   Background Fractions
========================= */
.fraction-decor {
  position: fixed;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

  opacity: 0.04;

  filter: drop-shadow(0 6px 12px rgba(79, 70, 229, 0.05));
}

/* top-left behind the logo area */
.fraction-decor-circle-quarters {
  width: 150px;
  height: 150px;
  left: 4vw;
  top: 7vh;
  transform: rotate(-12deg);
  opacity: 0.04;
  background-image: url("../images/fraction-decor/fraction-circle-quarters.svg");
}

/* top-right */
.fraction-decor-circle-half {
  width: 135px;
  height: 135px;
  right: 5vw;
  top: 12vh;
  transform: rotate(10deg);
  opacity: 0.05;
  background-image: url("../images/fraction-decor/fraction-circle-half.svg");
}

/* middle area near the tabs */
.fraction-decor-bar {
  width: 250px;
  height: 80px;
  left: 50%;
  top: 33vh;
  transform: translateX(-50%) rotate(-30deg);
  opacity: 0.06;
  background-image: url("../images/fraction-decor/fraction-bar-quarters.svg");
}

/* lower left */
.fraction-decor-half {
  width: 95px;
  height: 110px;
  left: 8vw;
  bottom: 15vh;
  transform: rotate(8deg);
  opacity: 0.05;
  background-image: url("../images/fraction-decor/fraction-number-half.svg");
}

/* lower right */
.fraction-decor-quarter {
  width: 95px;
  height: 110px;
  right: 9vw;
  bottom: 18vh;
  transform: rotate(-8deg);
  opacity: 0.05;
  background-image: url("../images/fraction-decor/fraction-number-quarter.svg");
}

@media (max-width: 767.98px) {
  .fraction-decor-circle-quarters,
  .fraction-decor-circle-half {
    width: 95px;
    height: 95px;
  }

  .fraction-decor-bar {
    width: 180px;
    height: 58px;
    top: 52vh;
    opacity: 0.05;
  }

  .fraction-decor-half,
  .fraction-decor-quarter {
    width: 68px;
    height: 82px;
  }
}




.flag-btn {
  border-radius: 18px;
  cursor: pointer;
  border: none;
  outline: 2px solid rgba(255,255,255,0.35);
  outline-offset: 0;

  box-shadow:
    0 10px 20px rgba(0,0,0,0.12),
    0 4px 0 rgba(0,0,0,0.15),
    inset 0 2px 4px rgba(255,255,255,0.35);

  transition: all 0.2s ease;
}

/* hover = fun lift */
.flag-btn:hover {
  transform: translateY(-4px) scale(1.05) rotate(-1deg);
  outline: 3px solid rgba(255,255,255,0.75);

  box-shadow:
    0 16px 28px rgba(0,0,0,0.18),
    inset 0 2px 5px rgba(255,255,255,0.4),
    0 6px 0 rgba(0,0,0,0.2);
}

/* click press effect */
.flag-btn:active {
  transform: translateY(2px) scale(0.98);

  box-shadow:
    0 6px 12px rgba(0,0,0,0.15),
    0 2px 0 rgba(0,0,0,0.2);
}


.flag-wrap {
  margin-bottom: 25px;
}

.flag-wrap a {
  text-decoration: none;
}

.flag-wrap:hover .flag-label {
  color: #FFFFFF;
}

.flag-label {
  margin-top: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #C0C1FF;
  letter-spacing: 0.05em;
}

.flag-active {
  transform: scale(1.05);
  box-shadow:
    0 14px 26px rgba(0,0,0,0.18),
    0 0 0 4px rgba(99, 102, 241, 0.25);
}

.flag-current {
  border-radius: 22px;

  /* slightly larger presence */
  transform: scale(1.05);

  /* softer, more “display” style */
  box-shadow:
    0 14px 30px rgba(0,0,0,0.18),
    0 6px 0 rgba(255,255,255,0.6) inset;

  /* subtle highlight ring (very soft) */
  outline: 4px solid rgba(255,255,255,0.35);

  /* no interaction */
  pointer-events: none;
}

.flag-glass {
  display: inline-block;
  border-radius: 26px;
  padding: 8px;

  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  border: 2px solid rgba(255,255,255,0.4);

  box-shadow:
    0 20px 40px rgba(0,0,0,0.18),
    inset 0 2px 6px rgba(255,255,255,0.5),
    inset 0 -6px 14px rgba(0,0,0,0.08);
}

.flag-glass img {
  border-radius: 20px;
  display: block;
}
/* =========================
   TYPOGRAPHY
========================= */
.heading-primary-style {
  color: #FFFFFF;

  text-shadow:
    0 2px 0 rgba(0,0,0,0.25),
    0 6px 0 rgba(0,0,0,0.15),
    0 10px 20px rgba(0,0,0,0.25);
}
.main-heading {
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 800;
  font-size: 1.9rem;
  line-height: 1.2;
  color: #F7F8FF;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
 text-shadow:
    0 2px 6px rgba(0,0,0,0.25),
    0 10px 24px rgba(0,0,0,0.25);
}

h1, h2, h3, h4, h5, h6,
p, li, a, button {
  font-family: "Poppins", Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #F7F8FF;
}

p, li {
  font-weight: 400;
}
h1 {
  color: #F7F8FF !important;
}


/* =========================
   LAYOUT
========================= */

.top-spacing {
  padding-top: 2rem;
}

.site-wrap {
  overflow-x: hidden;
}

/* =========================
   HEADER / BANNER
========================= */

.banner-section {
  padding: 1.5rem 0 0.8rem;
}

.intro-text {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #D6DEF7;
}

/* =========================
   INTRO BOX
========================= */

.intro-box {
  margin-top: 10px;
  padding: 30px;
  border-radius: 24px;

  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.96) 0%,
    rgba(243,245,255,0.94) 100%
  );

  color: #1F2D3D;

  border: 6px solid rgba(255,255,255,0.6);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);

  position: relative;
}

.intro-box::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 2px dashed rgba(79, 70, 229, 0.12);
  border-radius: 18px;
  pointer-events: none;
}

.intro-heading {
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: #1F2D3D;
  position: relative;
  z-index: 1;
}

.intro-note {
  margin-top: 1rem;
  padding: 14px 18px;
  border-radius: 16px;

  background: linear-gradient(180deg, #fff1f2 0%, #f8dfe3 100%);
  border: 2px solid rgba(185, 71, 84, 0.18);
  color: #7a2f3b;

  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 600;
  text-align: center;

  box-shadow: 0 6px 16px rgba(185, 71, 84, 0.12);

  position: relative;
  z-index: 1;
}

.intro-cta {
  color: #8f3a47;
  font-weight: 700;
  text-decoration: none;
}

.intro-cta:hover {
  color: #b94754;
	text-decoration: none;
}

.intro-logo {
  height: 30px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  opacity: 0.98;
  margin-right: 0;
}

.intro-cta-text {
  display: inline-block;
  line-height: 1;
}

/* =========================
   CARDS
========================= */

.cards-section {
  padding-bottom: 3rem;
}

.feature-card {
  background: linear-gradient(180deg, #ffffff 0%, #F5F7FF 100%);
  border: 2px solid #DCE4FF;
  border-radius: 26px;
  padding: 3rem 2.25rem;
  text-align: center;
  box-shadow: 0 14px 30px rgba(79, 70, 229, 0.10);
  transition: 0.25s;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  top: -28px;
  right: -28px;
  width: 90px;
  height: 90px;
  background: rgba(255, 209, 102, 0.18);
  border-radius: 50%;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(79, 70, 229, 0.16);
}

.feature-title {
  font-size: 2rem;
  color: #1F2D3D;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.feature-text {
  font-size: 1.1rem;
  color: #5C6B7A;
  position: relative;
  z-index: 1;
}

/* =========================
   GAME CARDS
========================= */

.game-section {
  margin-bottom: 2rem;
}

.game-card {
  margin-top: 10px;
  padding: 30px;
  border-radius: 24px;

  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.96) 0%,
    rgba(244,247,255,0.95) 100%
  );
  border: 6px solid rgba(185, 71, 84, 0.65);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.18);
  
 

  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.game-card .row {
  margin-left: 0;
  margin-right: 0;
}
.game-card [class*="col-"] {
  padding-left: 15px;
  padding-right: 15px;
}

.game-card:hover {
 
  border-color: rgba(160, 55, 68, 0.85);

  box-shadow:
    0 22px 44px rgba(15,23,42,0.22),
    0 0 0 4px rgba(185,71,84,0.18),
    0 0 28px rgba(185,71,84,0.24);
  
}


/* Image */

/* Image */

.game-image-link {
  display: block;
  position: relative;
  z-index: 1;
}

.game-image {
  border-radius: 18px;
  border: 2px solid rgba(255,255,255,0.85);
  box-shadow:
    0 10px 24px rgba(202,153,156,0.20),
    0 4px 10px rgba(15,23,42,0.12),
    0 2px 0 rgba(255,255,255,0.6) inset;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-image:hover {
  transform: scale(1.03) rotate(-0.4deg);

  box-shadow:
    0 16px 34px rgba(185,71,84,0.22),
    0 6px 14px rgba(15,23,42,0.14),
    0 2px 0 rgba(255,255,255,0.7) inset;
}

/* Content */

.game-content {
  padding-top: 1rem;
  padding-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.game-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;

  background: #f1dcde;
  color: #7a2f3b;
  border: 1px solid rgba(122, 47, 59, 0.15);

  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.gameDELETE-tag {
  color: #2F80ED;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.game-title {
  color:  #8f3a47;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.game-title-link {
  color:  #8f3a47;
  text-decoration: none;
  font-weight: 700;
}

.game-title-link:hover {
    color: #b94754;
  text-decoration: none;
}

.game-description {
  color: #5C6B7A;
	max-width: 520px;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
	 font-weight: 600;
}



.game-button-primary {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 16px;

    background: linear-gradient(180deg, #e7a6ad 0%, #d7838d 100%);

  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-decoration: none;

  border: 2px solid rgba(255,255,255,0.75);

  box-shadow:
   0 8px 18px rgba(202, 153, 156, 0.32),
  inset 0 2px 5px rgba(255,255,255,0.36);

  transition: all 0.2s ease;
}

.game-button-primary:hover {
  background: linear-gradient(180deg, #dda0a7 0%, #ca747f 100%);

  transform: translateY(-1px);

  box-shadow:
    0 10px 22px rgba(202, 153, 156, 0.38),
    inset 0 2px 6px rgba(255,255,255,0.42);

  color: #ffffff;
  text-decoration: none;
}

.game-button-primary:active {
  transform: translateY(1px);

  box-shadow:
    0 5px 12px rgba(248,113,113,0.22),
    inset 0 1px 3px rgba(255,255,255,0.25);
}

.game-button-primary,
.game-button-primary:hover,
.game-button-primary:focus,
.game-button-primary:active {
  color: #ffffff;
  text-decoration: none;
}




/* =========================
   BUTTONS
========================= */

.math-btn,
.math-btn-light {
  color: white;
  padding: 13px 24px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.2px;
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.78);
  box-shadow: 0 8px 18px rgba(47, 128, 237, 0.16);
  transition: all 0.2s ease;
}

/* =========================
   MATHS TABS
========================= */

.math-tabs {
  display: inline-flex;
  max-width: 620px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow-x: hidden;

  background: rgba(255,255,255,0.14);
  border-radius: 20px;
  padding: 7px;
  gap: 6px;

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  border: 2px solid rgba(255,255,255,0.24);

  box-shadow:
    0 10px 22px rgba(0,0,0,0.12),
    inset 0 1px 3px rgba(255,255,255,0.18);
}

.math-tab {
  flex: 1 1 0;
  min-width: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 11px 18px;

  font-weight: 700;
  text-decoration: none;

  color: #ffffff;
  background: rgba(255,255,255,0.22);
  white-space: nowrap;

  border-radius: 14px;
  border: 2px solid rgba(255,255,255,0.28);

  text-shadow: 0 2px 6px rgba(122,47,59,0.18);

  box-shadow:
    inset 0 2px 5px rgba(255,255,255,0.25),
    0 6px 14px rgba(122,47,59,0.08);

  transition: all 0.2s ease;
}

.math-tab:hover {
  background: rgba(255,255,255,0.34);
  color: #ffffff;

  border-color: rgba(255,255,255,0.46);

  transform: translateY(-1px);
  text-decoration: none;

  box-shadow:
    inset 0 2px 6px rgba(255,255,255,0.32),
    0 8px 18px rgba(122,47,59,0.12);
}

.math-tab.active,
.math-tab[aria-current="page"] {
  border-radius: 15px;

  background: linear-gradient(180deg, #ff5a63 0%, #d95b66 48%, #b94754 100%);
  color: #ffffff;

  box-shadow:
    0 10px 22px rgba(185, 71, 84, 0.34),
    inset 0 2px 5px rgba(255,255,255,0.40),
    inset 0 -3px 8px rgba(122,47,59,0.18);
}

.math-tab.active:hover,
.math-tab[aria-current="page"]:hover {
  background: linear-gradient(180deg, #ff6b73 0%, #e35f6a 48%, #c74654 100%);

  box-shadow:
    0 12px 26px rgba(185, 71, 84, 0.42),
    inset 0 2px 6px rgba(255,255,255,0.45),
    inset 0 -3px 8px rgba(122,47,59,0.20);
}



.math-tab:active {
  transform: scale(0.98);
}
/* Floating Back Button */
.floating-back-btn {
  position: fixed;
  left: max(16px, env(safe-area-inset-left));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 9999;

  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 10px 14px;
  border-radius: 999px;

  background: linear-gradient(180deg, #FDA4AF 0%, #F87171 100%);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);

  border: 2px solid rgba(255,255,255,0.55);

  color: #ffffff !important;
  text-decoration: none !important;

  font-family: "Poppins", Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;

  box-shadow:
    0 8px 18px rgba(248,113,113,0.30),
    inset 0 2px 5px rgba(255,255,255,0.36);

  transition: all 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.floating-back-btn:hover,
.floating-back-btn:focus {
  background: linear-gradient(180deg, #FEB2BD 0%, #EF6A6A 100%);
  border-color: rgba(255,255,255,0.72);

  transform: translateY(-1px);

  box-shadow:
    0 10px 22px rgba(248,113,113,0.36),
    inset 0 2px 6px rgba(255,255,255,0.42);

  color: #ffffff !important;
  text-decoration: none !important;
}

.floating-back-btn:active {
  transform: translateY(1px);

  box-shadow:
    0 5px 12px rgba(248,113,113,0.24),
    inset 0 1px 3px rgba(255,255,255,0.25);
}

.floating-back-icon {
  font-size: 16px;
  opacity: 0.95;
  line-height: 1;
}

.floating-back-text {
  line-height: 1;
}

body.game-page {
    min-height: 100vh;
  background:
    radial-gradient(circle at 50% -15%, rgba(255,255,255,0.34), transparent 55%),
    radial-gradient(circle at 15% 18%, rgba(255, 235, 190, 0.14), transparent 34%),
    radial-gradient(circle at 85% 20%, rgba(255, 210, 220, 0.16), transparent 36%),
    linear-gradient(180deg, #e9aeb4 0%, #dc96a0 52%, #cc808c 100%);
  background-attachment: fixed;
}

#ruffle ruffle-player {
 
border: 6px solid rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  box-sizing: border-box;
  overflow: hidden;

  box-shadow:
    0 14px 32px rgba(15, 23, 42, 0.18),
    0 0 0 2px rgba(185, 71, 84, 0.12);
}
/* =========================
   WORKSHEET BUTTONS
========================= */

.worksheet-button {
  display: inline-block;
  padding: 10px 22px;

  border-radius: 999px; /* full pill */

  background: linear-gradient(
    180deg,
    #EEF2FF 0%,
    #DCE4FF 100%
  );

  border: 2px solid rgba(99,102,241,0.18);

  color: #4338CA;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.2px;

  box-shadow:
    0 6px 16px rgba(79,70,229,0.12),
    inset 0 2px 4px rgba(255,255,255,0.75);

  transition: all 0.2s ease;
}

.worksheet-button:hover {
  transform: translateY(-2px);

  background: linear-gradient(
    180deg,
    #FFFFFF 0%,
    #E5E7FF 100%
  );

  color: #312E81;

  box-shadow:
    0 10px 20px rgba(79,70,229,0.18),
    inset 0 2px 5px rgba(255,255,255,0.9);

  text-decoration: none;
}

.worksheet-button:active {
  transform: translateY(1px);
}

.worksheet-button,
.worksheet-button:hover {
  text-decoration: none;
}

.worksheet-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 1rem;
}

.worksheet-button {
  min-width: 220px;
  text-align: center;
}
@media (max-width: 768px) {
  .floating-back-btn {
    left: max(12px, env(safe-area-inset-left));
    bottom: max(12px, env(safe-area-inset-bottom));
    padding: 9px 12px;
    font-size: 13px;
  }

  .floating-back-icon {
    font-size: 15px;
  }
}
/* =========================
   SEO CONTENT BOX
========================= */

.seo-box{
  margin:40px 0;
  padding:30px;
  border-radius:26px;

  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.96) 0%,
    rgba(243,245,255,0.94) 100%
  );

  border:6px solid rgba(255,255,255,0.6);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.6),
    0 12px 28px rgba(79,70,229,0.10);

  position:relative;
  overflow:hidden;
}

.seo-box::before{
  content:"";
  position:absolute;
  inset:10px;

  border:2px dashed rgba(79,70,229,0.12);
  border-radius:18px;

  pointer-events:none;
}

.seo-heading{
  position:relative;
  z-index:1;

  font-size:1.4rem;
  font-weight:700;
  color:#1F2D3D;

  margin-bottom:16px;
}

.seo-box p{
  position:relative;
  z-index:1;

  color:#334155;
  line-height:1.8;
  margin-bottom:14px;
}
/* =========================
   FOOTER
========================= */

.site-footer {
   background: linear-gradient(180deg, #d95b66 0%, #b94754 100%);
  color: #FFF5F6;
  padding: 50px 0 40px;
  margin-top: 60px;
  border-radius: 30px 30px 0 0;
  box-shadow: 0 -8px 24px rgba(143,79,88,0.24);
}

.site-footer h5 {
  color: #FFFFFF;
  margin-bottom: 12px;
}

.site-footer p {
  font-size: 0.9rem;
	font-weight: 500;
  color: #FFF5F6;
}

.site-footer a {
  color: #FFE8EA;
  text-decoration: none;
	font-weight: 600;
}

.site-footer a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

.footer-copy {
  color: rgba(255, 245, 246, 0.84);
  font-size: 0.85rem;
	font-weight: 500;
  margin-top: 10px;
}
/* =========================
   ANIMATIONS
========================= */

.animated-row {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.6s ease;
}

.animated-row.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991.98px) {
  .main-heading {
    font-size: 2rem;
  }

  body {
    background:
      radial-gradient(circle at 50% -20%, rgba(255,255,255,0.20), transparent 60%),
      linear-gradient(180deg, #e9aeb4 0%, #dc96a0 52%, #cc808c 100%);
  }
}

@media (max-width: 767.98px) {
  .main-heading {
    font-size: 1.7rem;
  }

  .feature-title {
    font-size: 1.6rem;
  }

  .math-btn,
  .math-btn-light {
    width: 80%;
    margin: 10px auto;
  }

  .intro-box,
  .game-card,
  .feature-card {
    border-radius: 20px;
  }

  .game-card::before {
    width: 56px;
    height: 56px;
    top: 10px;
    left: 10px;
  }

  .game-card::after {
    width: 48px;
    height: 48px;
    bottom: 10px;
    right: 10px;
  }

  body {
    background:
      radial-gradient(circle at 50% -20%, rgba(255,255,255,0.20), transparent 60%),
      linear-gradient(180deg, #e9aeb4 0%, #dc96a0 52%, #cc808c 100%);
  }
  }


#backToTopBtn {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.2s ease;
}

#backToTopBtn.show {
  opacity: 1;
  pointer-events: auto;
}
#loading-message {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  font-family: "Poppins", Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #7a2f3b;

  background: rgba(255,255,255,0.92);

  border: 2px solid rgba(79, 70, 229, 0.18);

  box-shadow:
    0 8px 20px rgba(79, 70, 229, 0.12);
  padding: 14px 20px;
  border-radius: 12px;

  z-index: 9999;
}