*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body { overflow-x: hidden; max-width: 100vw; }
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3, h4, p, a, span, li { word-break: break-word; overflow-wrap: break-word; max-width: 100%; }

:root {
  --ff-heading: 'Oswald', sans-serif;
  --ff-body: 'Montserrat', sans-serif;

  --cl-primary: #1A1A2E; /* Deep Blue-Purple */
  --cl-secondary: #0F3460; /* Darker Blue */
  --cl-accent: #E94560; /* Vibrant Red-Pink */
  --cl-text: #E0E0E0; /* Light Gray for readability */
  --cl-light-text: #FFFFFF; /* Pure White */
  --cl-background-light: #2C3C58; /* Muted Blue-Gray */
  --cl-success: #3DDC84; /* Bright Green */
  --cl-error: #FF6B6B; /* Soft Red */

  --br-soft: 8px;
  --br-round: 50%;

  --hh: 80px; /* Header height, updated by JS */
}

.bv1 {
  font-family: var(--ff-body);
  color: var(--cl-text);
  background-color: var(--cl-primary);
  line-height: 1.6;
  padding-top: var(--hh);
}

/* Base Container */
.r2s {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.x7c {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--cl-primary);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  padding: 15px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.x7c > .r2s {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.y8v {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--cl-light-text);
  font-family: var(--ff-heading);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 700;
  gap: 10px;
}

.b4z {
  width: 32px;
  height: 32px;
  color: var(--cl-accent);
}

.p9k {
  margin-left: 5px;
}

.e3q {
  display: flex;
  gap: 30px;
}

.d0j {
  color: var(--cl-text);
  text-decoration: none;
  font-weight: 700;
  padding: 5px 0;
  position: relative;
  transition: color 0.3s ease;
}

.d0j::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: var(--cl-accent);
  transition: width 0.3s ease;
}

.d0j:hover {
  color: var(--cl-accent);
}

.d0j:hover::after {
  width: 100%;
}

.k1m {
  display: none; /* Hidden on desktop */
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  position: relative;
  z-index: 1001; /* Ensure button is clickable over mobile nav */
}

.s2h {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--cl-accent);
  margin: 5px 0;
  transition: all 0.3s ease;
}

.k1m.is-active .s2h:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.k1m.is-active .s2h:nth-child(2) {
  opacity: 0;
}
.k1m.is-active .s2h:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.f6g {
  display: none; /* Hidden on desktop, controlled by JS on mobile */
}

/* Fade-in animation */
main > section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.b1c {
  opacity: 1;
  transform: translateY(0);
}

/* Hero Section */
.g5j {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 80px 0;
}

.bq7 {
  background-image: url('img/pic-10.jpg');
  background-size: cover;
  background-position: center;
}

.c8p {
  position: relative;
  z-index: 1;
  background-color: rgba(15, 52, 96, 0.7); /* Darker blue with transparency */
  padding: 40px;
  border-radius: var(--br-soft);
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.a6x {
  font-family: var(--ff-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--cl-light-text);
  margin-bottom: 20px;
  line-height: 1.1;
}

.z1l {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--cl-text);
  margin-bottom: 30px;
}

.w4e {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.h0u, .m7p {
  display: inline-block;
  padding: 15px 30px;
  border-radius: var(--br-soft);
  text-decoration: none;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.h0u {
  background-color: var(--cl-accent);
  color: var(--cl-light-text);
  box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
}

.h0u:hover {
  background-color: #f75a76; /* Lighter accent */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(233, 69, 96, 0.6);
}

.m7p {
  background-color: transparent;
  color: var(--cl-accent);
  border-color: var(--cl-accent);
}

.m7p:hover {
  background-color: var(--cl-accent);
  color: var(--cl-light-text);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
}

/* Split Sections (Hero B equivalent, and general content sections) */
.y3x {
  padding: 100px 0;
  overflow: hidden;
}

.y2t {
  background-color: var(--cl-secondary);
}

.h1e {
  background-color: var(--cl-background-light);
}

.y3x > .r2s {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 60px;
  align-items: center;
}

.a1c {
  padding-right: 20px;
}

.k9v {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  color: var(--cl-light-text);
  margin-bottom: 20px;
  line-height: 1.2;
}

.d5x {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: var(--cl-text);
  margin-bottom: 30px;
}

.j8p {
  display: inline-block;
  background-color: var(--cl-accent);
  color: var(--cl-light-text);
  padding: 12px 25px;
  border-radius: var(--br-soft);
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.j8p:hover {
  background-color: #f75a76;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(233, 69, 96, 0.4);
}

.c5o {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  border-radius: var(--br-soft);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.u2d {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.q0a {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Stats Section */
.f4p {
  padding: 80px 0;
  background-color: var(--cl-primary);
}

.g9j {
  font-family: var(--ff-heading);
  font-size: clamp(2.2rem, 4vw, 4rem);
  color: var(--cl-light-text);
  text-align: center;
  margin-bottom: 60px;
}

.h0w {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.v1o {
  background-color: var(--cl-secondary);
  padding: 30px 20px;
  border-radius: var(--br-soft);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.m3r {
  font-family: var(--ff-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--cl-accent);
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}

.w8j {
  font-size: 1.1rem;
  color: var(--cl-text);
  font-weight: 700;
}

/* Testimonials Section */
.r4t {
  padding: 100px 0;
  background-color: var(--cl-background-light);
}

.c7x {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.z0f {
  background-color: var(--cl-primary);
  padding: 30px;
  border-radius: var(--br-soft);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.p2j {
  font-style: italic;
  color: var(--cl-text);
  margin-bottom: 20px;
  flex-grow: 1;
}

.q8k {
  font-weight: 700;
  color: var(--cl-accent);
  font-size: 0.95rem;
  display: block;
  text-align: right;
}

/* FAQ Section */
.m9k {
  padding: 100px 0;
  background-color: var(--cl-secondary);
}

.u5t {
  max-width: 900px;
  margin: 0 auto;
}

.e6r {
  margin-bottom: 15px;
  background-color: var(--cl-primary);
  border-radius: var(--br-soft);
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.t0o {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 30px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--ff-heading);
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  color: var(--cl-light-text);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.t0o:hover, .e6r.is-open .t0o {
  background-color: var(--cl-background-light);
}

.c1w {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.e6r.is-open .c1w {
  transform: rotate(45deg);
}

.n3e {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.n3e p {
  padding: 0 30px 20px;
  font-size: 1rem;
  color: var(--cl-text);
}

/* Blog Section */
.x0z {
  padding: 100px 0;
  background-color: var(--cl-primary);
}

.k2p {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.s1g {
  background-color: var(--cl-secondary);
  border-radius: var(--br-soft);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.s1g:hover {
  transform: translateY(-5px);
}

.t4f {
  height: 250px; /* Fixed height for consistent image display */
  width: 100%;
  overflow: hidden;
}

.e5m {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.i3h {
  font-family: var(--ff-heading);
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  color: var(--cl-light-text);
  margin: 20px 20px 10px;
  line-height: 1.3;
}

.j6t {
  font-size: 0.95rem;
  color: var(--cl-text);
  padding: 0 20px 20px;
  flex-grow: 1;
}

.o8n {
  display: inline-block;
  margin: 0 20px 20px;
  color: var(--cl-accent);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
}

.o8n:hover {
  color: #f75a76;
}

/* CTA Banner */
.b0s {
  padding: 80px 0;
  background-image: url('img/pic-11.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
  position: relative;
  z-index: 0;
}

.b0s::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(15, 52, 96, 0.8);
  z-index: -1;
}

.i9j {
  font-family: var(--ff-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--cl-light-text);
  margin-bottom: 20px;
}

.f7k {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--cl-text);
  max-width: 700px;
  margin: 0 auto 40px;
}

/* Game Section (Slots) */
.z3d {
  padding: 80px 0;
  background-color: var(--cl-background-light);
  text-align: center;
}

.a0p {
  font-family: var(--ff-heading);
  font-size: clamp(2.2rem, 4vw, 4rem);
  color: var(--cl-light-text);
  margin-bottom: 15px;
}

.b7c {
  font-size: 1rem;
  color: var(--cl-text);
  margin-bottom: 40px;
}

.x8g {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--cl-secondary);
  border-radius: var(--br-soft);
  padding: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  border: 2px solid var(--cl-primary);
}

.j5h {
  font-family: var(--ff-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--cl-light-text);
  margin-bottom: 25px;
  background-color: var(--cl-primary);
  padding: 15px;
  border-radius: var(--br-soft);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
}

.t1m {
  color: var(--cl-text);
}

.q6r {
  color: var(--cl-accent);
  font-weight: 700;
}

.o7k {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.l2s {
  font-family: var(--ff-body);
  font-weight: 700;
  color: var(--cl-text);
  font-size: 1.1rem;
}

.h6n {
  width: 100px;
  padding: 10px;
  border-radius: var(--br-soft);
  border: 2px solid var(--cl-primary);
  background-color: var(--cl-primary);
  color: var(--cl-light-text);
  font-family: var(--ff-body);
  font-size: 1rem;
  text-align: center;
  -moz-appearance: textfield; /* Hide arrows on Firefox */
}

.h6n::-webkit-outer-spin-button, .h6n::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.r9w, .d3p {
  padding: 10px 20px;
  border-radius: var(--br-soft);
  border: none;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.r9w {
  background-color: var(--cl-accent);
  color: var(--cl-light-text);
  box-shadow: 0 4px 10px rgba(233, 69, 96, 0.3);
}

.r9w:hover:not(:disabled) {
  background-color: #f75a76;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(233, 69, 96, 0.5);
}

.r9w:disabled {
  background-color: #555;
  cursor: not-allowed;
  opacity: 0.6;
}

.d3p {
  background-color: var(--cl-primary);
  color: var(--cl-accent);
  border: 2px solid var(--cl-accent);
  display: none; /* Controlled by JS */
}

.d3p:hover {
  background-color: var(--cl-accent);
  color: var(--cl-light-text);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(233, 69, 96, 0.3);
}

.f8v {
  color: var(--cl-error);
  font-size: 0.9rem;
  margin-top: -10px;
  margin-bottom: 20px;
  display: none; /* Controlled by JS */
}

.u9e {
  background-color: var(--cl-primary);
  border: 5px solid var(--cl-primary);
  border-radius: var(--br-soft);
  padding: 20px;
  margin-top: 20px;
  position: relative;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.7);
}

.p1j {
  display: flex;
  justify-content: space-around;
  gap: 15px;
  margin-bottom: 20px;
}

.k3t {
  width: 120px;
  height: 150px;
  background-color: var(--cl-background-light);
  border: 3px solid #333;
  border-radius: var(--br-soft);
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.7), 0 5px 15px rgba(0, 0, 0, 0.4);
}

.k3t::before, .k3t::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 30px;
  pointer-events: none;
  z-index: 10;
}

.k3t::before {
  top: 0;
  background: linear-gradient(to bottom, var(--cl-background-light) 0%, rgba(44, 60, 88, 0) 100%);
}

.k3t::after {
  bottom: 0;
  background: linear-gradient(to top, var(--cl-background-light) 0%, rgba(44, 60, 88, 0) 100%);
}

.i6f {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto; /* Will be set by JS for animation */
  transition: transform 0.5s ease-out;
  animation-fill-mode: forwards;
  min-height: 100%;
}

.o6u {
  font-family: var(--ff-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--cl-accent);
  height: 150px; /* Each symbol takes up the height of the reel window */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  text-shadow: 0 0 10px rgba(233, 69, 96, 0.7);
}

@keyframes slotSpin {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-300%); } /* Animate up, showing more symbols above */
}

.k3t.z4x {
  box-shadow: 0 0 25px var(--cl-success), inset 0 0 10px rgba(0, 0, 0, 0.7);
  border-color: var(--cl-success);
}

.k3t.a5r {
  box-shadow: 0 0 25px var(--cl-error), inset 0 0 10px rgba(0, 0, 0, 0.7);
  border-color: var(--cl-error);
}

.c9v {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
  font-size: 1.3rem;
  color: var(--cl-light-text);
  border-radius: var(--br-soft);
  padding: 10px 20px;
  margin-top: 20px;
  opacity: 0;
  transition: background-color 0.4s ease, opacity 0.4s ease;
}

.c9v.z4x {
  background-color: var(--cl-success);
  opacity: 1;
}

.c9v.a5r {
  background-color: var(--cl-error);
  opacity: 1;
}

.x5c {
  font-size: 0.85rem;
  color: var(--cl-text);
  margin-top: 30px;
  text-align: center;
}

/* Footer */
.w6l {
  background-color: var(--cl-primary);
  padding: 60px 0 20px;
  color: var(--cl-text);
  border-top: 1px solid var(--cl-secondary);
}

.o1f {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.z9c .y8v {
  justify-content: flex-start;
}

.k0q {
  font-size: 0.9rem;
  margin-top: 15px;
  color: var(--cl-text);
}

.x6e {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.j7f {
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  color: var(--cl-light-text);
  margin-bottom: 15px;
}

.c2n {
  color: var(--cl-text);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.c2n:hover {
  color: var(--cl-accent);
}

.u0p {
  border-top: 1px solid var(--cl-secondary);
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--cl-text);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 20px 0;
}

.a2d {
  color: var(--cl-text);
}

/* Legal Page Specific Styles */
.n1r {
  min-height: 50vh;
  background-color: var(--cl-secondary);
  padding-top: var(--hh);
}

.n1r .c8p {
  background: none;
  box-shadow: none;
  padding: 0;
}

.n1r .a6x {
  text-align: center;
}

.n1r .z1l {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.j4z {
  padding: 80px 0;
}

.j4z:nth-of-type(odd) {
  background-color: var(--cl-background-light);
}

.j4z:nth-of-type(even) {
  background-color: var(--cl-secondary);
}

.s6y {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  color: var(--cl-accent);
  text-align: center;
  margin-bottom: 40px;
}

.d8f {
  font-family: var(--ff-heading);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  color: var(--cl-light-text);
  margin-top: 30px;
  margin-bottom: 15px;
}

.g0k {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 15px;
  color: var(--cl-text);
}

.p0m {
  height: 5px;
  background: linear-gradient(to right, var(--cl-accent), var(--cl-secondary));
  margin: 0 auto;
  max-width: 1200px;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .x7c > .r2s {
    padding: 0 20px;
  }

  .e3q {
    display: none;
  }

  .k1m {
    display: block;
  }

  .f6g {
    position: fixed;
    top: var(--hh);
    left: 0;
    width: 100%;
    background-color: var(--cl-primary);
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    z-index: 999;
    padding: 0 20px;
    border-top: 1px solid var(--cl-secondary);
  }

  .f6g.is-open {
    max-height: 100vh; /* Adjust as needed */
  }

  .f6g .d0j {
    padding: 15px 0;
    border-bottom: 1px solid var(--cl-secondary);
    width: 100%;
    text-align: center;
  }

  .f6g .d0j:last-child {
    border-bottom: none;
  }

  .y3x > .r2s {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }

  .a1c {
    padding-right: 0;
    text-align: center;
  }

  .c5o {
    min-height: 320px;
  }

  .g5j .c8p {
    padding: 30px;
  }

  .w4e {
    flex-direction: column;
    gap: 15px;
  }

  .h0u, .m7p, .j8p {
    width: 100%;
    text-align: center;
  }

  .h0w {
    grid-template-columns: 1fr;
  }

  .c7x {
    grid-template-columns: 1fr;
  }

  .z0f {
    padding: 25px;
  }

  .k2p {
    grid-template-columns: 1fr;
  }

  .s1g {
    margin-bottom: 20px;
  }

  .o1f {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .z9c .y8v {
    justify-content: center;
  }

  .x6e {
    align-items: center;
  }

  .j7f {
    margin-bottom: 10px;
  }

  .o7k {
    flex-direction: column;
  }

  .r9w, .d3p {
    width: 100%;
    margin-top: 10px;
  }

  .u9e {
    padding: 15px;
  }

  .p1j {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    scroll-snap-type: x mandatory;
  }

  .k3t {
    flex-shrink: 0;
    width: 100px;
    height: 120px;
    scroll-snap-align: center;
  }

  .o6u {
    font-size: 3rem;
    height: 120px;
  }

  .h6n {
    width: 80px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  .r2s {
    padding: 0 16px;
  }

  .g5j .c8p {
    padding: 20px;
  }

  .a6x {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .z1l {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
  }

  .k9v {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }

  .y3x, .f4p, .r4t, .m9k, .x0z, .b0s, .z3d, .j4z {
    padding: 60px 0;
  }

  .h0u, .m7p, .j8p, .r9w, .d3p {
    padding: 12px 20px;
    font-size: 1rem;
  }

  .j5h {
    font-size: 1.2rem;
  }

  .l2s {
    font-size: 1rem;
  }

  .h6n {
    font-size: 0.9rem;
    padding: 8px;
  }

  .c9v {
    font-size: 1.1rem;
  }

  .o1f {
    padding: 0 16px;
  }

  .u0p {
    padding: 15px 16px 0;
  }

  .s6y {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }

  .d8f {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
  }

  .g0k {
    font-size: 0.9rem;
  }
}
