:root {
  --body-bg-color: #000000;
  --body-text-color: #e3e3e3;
  --heading-color: #ffffff;
  --hero-gradient1: #168295;
  --hero-gradient2: #0b5e3a;
  --footer-bg-color: #0d0d0d;
  --link-color: #ffcc00;
  --header-bg-color: #000000;
  --font-family: system-ui;
  --nav-link-color: #ffffff;
  --footer-text-color: #ffffff;
  --header-text-color: #ffffffff;
}
html {
  overflow-x: hidden;
}
body {
  background-color: var(--body-bg-color);
  color: var(--body-text-color) !important;
  font-family: var(--font-family);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("/images/body-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
h1 {
  font-size: clamp(2rem, 4vw, 2.5rem) !important;
}
h2 {
  font-size: clamp(1.6rem, 3vw, 2rem) !important;
}
h3 {
  font-size: clamp(1.4rem, 3vw, 1.7rem) !important;
}
p {
  margin-bottom: 0.5rem !important;
}
section {
  padding: 15px 0;
  scroll-margin-top: 70px;
}
h2,
h3 {
  color: var(--heading-color) !important;
}
.content-area a {
  color: var(--link-color) !important;
  text-decoration: none !important;
}
.content-area a:hover {
  color: var(--link-color) !important;
  opacity: 0.8;
}
.sidebar-page-list {
  padding: 0;
  margin: 0;
  margin-bottom: 17px;
  width: 279px;
}
.sidebar-page-list li {
  list-style-type: disc;
  list-style-position: inside;
  color: var(--heading-color);
}
.sidebar-page-list li::marker {
  color: var(--link-color);
  font-size: 1.2em;
}
.sidebar-page-list li:last-child {
  border-bottom: none;
}
.sidebar-page-list li a {
  padding: 12px 0;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  color: var(--link-color);
}
.sidebar-page-list li a:hover {
  padding-left: 11px;
}
.twitter-tweet {
  width: 279px !important;
}
.x {
  display: flex;
  justify-content: center;
}
.error_page {
  min-height: 70vh;
}
.footer {
  background: rgba(10, 10, 10, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 50px 0 28px;
  position: relative;
  overflow: hidden;
}
/* subtle gradient glow at the top */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #ffcc00, #ff3b30);
  opacity: 0.95;
}
.footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 10%,
      rgba(255, 204, 0, 0.12),
      transparent 55%
    ),
    radial-gradient(circle at 80% 30%, rgba(255, 59, 48, 0.1), transparent 60%);
  pointer-events: none;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
  position: relative;
  z-index: 2;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-top img {
  filter: drop-shadow(0 0 14px rgba(255, 204, 0, 0.18));
  opacity: 0.95;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}
.footer-top img:hover {
  transform: translateY(-2px);
  opacity: 1;
}
.footer-links {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin: 0;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: color 0.25s ease;
}
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #ffcc00, #ff3b30);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  border-radius: 10px;
}
.footer-links a:hover {
  color: #ffcc00;
}
.footer-links a:hover::after {
  transform: scaleX(1);
}
.footer-links p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 0 !important;
}
.footer-divider {
  border: none;
  height: 1px;
  margin: 26px 0 18px;
  background: rgba(255, 255, 255, 0.08);
}
.footer-bottom {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  text-align: center;
}
.footer-bottom a {
  color: rgba(255, 204, 0, 0.95);
  font-weight: 700;
  text-decoration: none;
  transition:
    color 0.25s ease,
    text-shadow 0.25s ease;
}
.footer-bottom a:hover {
  color: #ff3b30;
  text-shadow: 0 0 12px rgba(255, 59, 48, 0.35);
}
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .footer-bottom {
    text-align: center;
  }
}
.navbar {
  background-color: transparent !important;
  transition:
    background-color 0.4s ease,
    box-shadow 0.3s ease;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
}
.navbar.scrolled {
  background: rgba(12, 12, 12, 0.85) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.45),
    0 1px 0 rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.35s ease;
}
.navbar {
  transition: all 0.35s ease;
}
.navbar.scrolled .nav-link {
  color: rgba(255, 255, 255, 0.92) !important;
}
.navbar.scrolled .nav-link:hover {
  color: #ffcc00 !important;
  text-shadow: 0 0 10px rgba(255, 204, 0, 0.35);
}
/* subtle Mexico City accent gradient line */
.navbar.scrolled::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, #ffcc00, #ff3b30);
  opacity: 0.95;
}
.hero-section {
  padding: 115px 0 30px;
  position: relative;
  overflow: hidden;
  color: var(--header-text-color);
}
.hero-section.gradient-bg {
  background: linear-gradient(
    135deg,
    var(--hero-gradient1),
    var(--hero-gradient2)
  );
}
.hero-section .container {
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 30px;
  }
}
.navbar-light .navbar-nav .nav-link {
  color: var(--nav-link-color, #141414) !important;
}
.navbar-light .navbar-nav .nav-link.active {
  color: var(--link-color) !important;
  font-weight: bold;
}
/* Mobile nav */
@media (max-width: 1199.98px) {
  .navbar-collapse {
    position: fixed;
    top: 61px;
    left: 15px;
    right: 15px;
    background-color: color-mix(
      in srgb,
      var(--header-bg-color) 65%,
      transparent
    );
    backdrop-filter: blur(12px);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 15px;
    margin: 0;
  }
  .navbar-nav {
    width: 100%;
  }
  .navbar-nav .nav-item {
    margin: 7px 0;
  }
  .navbar-nav .nav-item:hover {
    transform: translateY(-1px);
  }
  .navbar-nav .nav-link {
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding: 0;
  }
  .navbar-toggler {
    z-index: 10000;
    position: relative;
    border: var(--bs-border-width) solid var(--nav-link-color, #141414) !important;
  }
}
.custom-dropdown {
  border: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  min-width: 220px;
  background: color-mix(
    in srgb,
    var(--header-bg-color) 65%,
    transparent
  ) !important;
  backdrop-filter: blur(12px);
}
.custom-dropdown .dropdown-item {
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  color: var(--nav-link-color, #141414) !important;
  font-weight: 500;
  border-radius: 0;
  text-wrap: wrap;
}
.dropdown-menu {
  display: none;
}
.custom-dropdown .dropdown-item:hover {
  color: #fff;
  background: color-mix(
    in srgb,
    var(--header-bg-color) 95%,
    transparent
  ) !important;
}
.nav-item.dropdown > .nav-link {
  display: flex;
  align-items: center;
}
.nav-item.dropdown > .nav-link .arrow {
  position: relative;
  margin-left: auto;
  border: solid var(--nav-link-color, #141414);
  border-width: 0 2px 2px 0;
  padding: 3px;
  transform: rotate(45deg);
  transition: transform 0.25s;
}
.dropdown.open .dropdown-menu {
  display: block;
}
@media (min-width: 1200px) {
  .nav-item.dropdown {
    position: relative;
  }
  .nav-item.dropdown > .nav-link .arrow {
    margin-left: 7px;
  }
  .custom-dropdown.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0;
    z-index: 1000;
  }
  .nav-item.dropdown:hover > .nav-link .arrow {
    transform: rotate(-135deg);
  }
  .nav-item.dropdown:hover > .dropdown-menu {
    display: block !important;
  }
}
@media (max-width: 1199px) {
  .nav-item.dropdown > .nav-link .arrow {
    padding: 4px;
  }
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--link-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}
.scroll-top i {
  font-size: 24px;
  color: var(--footer-bg-color);
  line-height: 0;
}
.scroll-top:hover {
  background-color: color-mix(in srgb, var(--link-color), transparent 20%);
  color: var(--footer-bg-color);
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}
.colored {
  position: relative;
  color: #ffcc00;
  font-weight: 800;
}
.colored {
  background: linear-gradient(90deg, #ffcc00, #ff3b30);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.sidebar-newsletter {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 17px;
  position: relative;
  overflow: hidden;
  width: 279px;
  margin-bottom: 15px;
}
/* subtle glow background */
.sidebar-newsletter::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(255, 204, 0, 0.12),
      transparent 55%
    ),
    radial-gradient(circle at 85% 30%, rgba(255, 59, 48, 0.1), transparent 60%);
  pointer-events: none;
}
.newsletter-title {
  position: relative;
  z-index: 1;
  margin: 0 0 6px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #fff;
}
.newsletter-text {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.4;
}
.newsletter-label {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}
.newsletter-form {
  position: relative;
  z-index: 1;
}
.newsletter-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.newsletter-row input {
  height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  outline: none;
  transition: all 0.25s ease;
}
.newsletter-row input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.newsletter-row input:focus {
  border-color: rgba(255, 204, 0, 0.75);
  box-shadow: 0 0 0 4px rgba(255, 204, 0, 0.18);
}
.newsletter-row button {
  height: 44px;
  width: 90%;
  padding: 0 16px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #0b0b0b;
  background: linear-gradient(90deg, #ffcc00, #ff3b30);
  transition:
    transform 0.2s ease,
    box-shadow 0.25s ease;
  white-space: nowrap;
}
.newsletter-row button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(255, 59, 48, 0.25);
}
.newsletter-row button:active {
  transform: translateY(0);
}
.newsletter-note {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
}
.heading {
  margin-bottom: 25px;
  position: relative;
}
.heading h2 {
  font-weight: 900;
  letter-spacing: 0.6px;
  margin-bottom: 12px;
  color: #fff;
  line-height: 1.15;
  text-transform: none;
}
/* cool accent underline */
.heading h2::after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  margin: 14px auto 0; /* centers underline for text-center */
  border-radius: 999px;
  background: linear-gradient(90deg, #ffcc00, #ff3b30);
  box-shadow: 0 0 18px rgba(255, 59, 48, 0.25);
}
.heading p {
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
}
.img-move {
  animation: floatY 4s ease-in-out infinite;
}
@keyframes floatY {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 22px 20px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
/* subtle gradient accent line */
.box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ffcc00, #ff3b30);
  opacity: 0.85;
}
/* soft glow in background */
.box::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 10%,
      rgba(255, 204, 0, 0.12),
      transparent 55%
    ),
    radial-gradient(circle at 80% 40%, rgba(255, 59, 48, 0.08), transparent 60%);
  pointer-events: none;
}
.box:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 204, 0, 0.35);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 204, 0, 0.08);
}
.box-emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 12px;
  font-size: 1.2rem;
  padding: 15px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 18px rgba(255, 59, 48, 0.18);
}
.box h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.25;
  display: flex;
  align-items: center;
  gap: 10px;
}
.box p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  font-size: 1rem;
}
.title {
  margin-bottom: 17px;
  position: relative;
  padding-left: 11px;
}
/* left accent line */
.title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 60px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffcc00, #ff3b30);
  box-shadow: 0 0 18px rgba(255, 59, 48, 0.25);
}
.title h2 {
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: 0.4px;
  color: #fff;
  line-height: 1.15;
}
.title p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.7;
}
.cust-bg {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  padding: 30px 21px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .cust-bg {
    padding: 30px 19px;
  }
}
/* top gradient bar */
.cust-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ffcc00, #ff3b30);
  opacity: 0.95;
}
/* soft glow background */
.cust-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(255, 204, 0, 0.12),
      transparent 55%
    ),
    radial-gradient(circle at 85% 30%, rgba(255, 59, 48, 0.1), transparent 60%);
  pointer-events: none;
}
.cust-bg h2 {
  position: relative;
  z-index: 2;
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 2.7vw, 2.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  letter-spacing: 0.5px;
}
/* subtitle / intro paragraph */
.cust-bg > p:first-of-type {
  position: relative;
  z-index: 2;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.75;
}
/* h3 sections */
.cust-bg h3 {
  position: relative;
  z-index: 2;
  margin: 21px 0 10px;
  font-weight: 900;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}
/* little accent dot before h3 */
.cust-bg h3::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffcc00, #ff3b30);
  box-shadow: 0 0 14px rgba(255, 59, 48, 0.25);
  flex-shrink: 0;
}
.cust-bg p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.75;
}
.cust-bg h3 + p {
  margin-bottom: 11px;
}
.img_el {
  padding: 30px 0;
  position: relative;
  margin: 30px auto;
}
.img_el:before {
  content: "";
  background: color-mix(in srgb, #000000b5, transparent 5%);
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 17px;
}
.img_el .img_el-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url("/images/flavors.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  border-radius: 17px;
}
.img_el .container {
  position: relative;
  z-index: 3;
}
.img_el .container h2,
.img_el .container p {
  color: white !important;
}
.img_el .container h3 {
  color: #ef8a54;
}
.img-section {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  position: relative;

  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

/* subtle accent line on top */
.img-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ffcc00, #ff3b30);
  opacity: 0.95;
  z-index: 2;
}

.img-section .section-top-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;

  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.55),
    0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

/* dark content panel with glow */
.img-section__content {
  background: linear-gradient(
    180deg,
    rgba(18, 18, 18, 0.92) 0%,
    rgba(10, 10, 10, 0.96) 100%
  );
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  padding: 1.35rem 18px;
  margin-top: -8px;
  position: relative;

  box-shadow:
    0 18px 55px rgba(0, 0, 0, 0.55),
    0 1px 0 rgba(255, 255, 255, 0.05) inset;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* subtle background glow */
.img-section__content::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(255, 204, 0, 0.12),
      transparent 55%
    ),
    radial-gradient(circle at 85% 35%, rgba(255, 59, 48, 0.1), transparent 60%);
  pointer-events: none;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
}

.img-section__content h2 {
  position: relative;
  z-index: 1;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.4px;
  margin-bottom: 0.65rem;

  padding: 0.45rem 0.6rem;
  border-radius: 10px;

  background: linear-gradient(
    90deg,
    rgba(255, 204, 0, 0.14),
    rgba(255, 59, 48, 0.1)
  );
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

/* clean headings */
.img-section__content h3 {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 900;
  margin-top: 1.05rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* gradient dot before h3 */
.img-section__content h3::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffcc00, #ff3b30);
  box-shadow: 0 0 14px rgba(255, 59, 48, 0.25);
  flex-shrink: 0;
}

/* paragraph styling (keeps it readable on dark) */
.img-section__content p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  margin-bottom: 0.9rem;
}
.modern-bg {
  position: relative;
  padding: 30px 21px;
  border-radius: 22px;
  overflow: hidden;
  background: #0b0f14;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow:
    0 18px 55px rgba(0, 0, 0, 0.55),
    0 1px 0 rgba(255, 255, 255, 0.05) inset;
}

/* diagonal “Mexico accent” ribbon */
.modern-bg::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -120px;
  width: 320px;
  height: 320px;
  background: linear-gradient(135deg, #ffcc00, #ff3b30);
  opacity: 0.16;
  transform: rotate(18deg);
  filter: blur(0px);
}

/* grid texture overlay (different from glow style) */
.modern-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.25;
  pointer-events: none;
}

/* keep content above */
.modern-bg * {
  position: relative;
  z-index: 2;
}

.modern-bg h2 {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 2.6vw, 2.5rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.4px;
}

.modern-bg h2::after {
  content: "";
  display: block;
  width: 110px;
  height: 3px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffcc00, #ff3b30);
  opacity: 0.9;
}

.modern-bg p {
  margin: 0 0 14px;
  max-width: 90ch;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.8;
  font-size: 1.05rem;
}

.modern-bg p:last-child {
  margin-bottom: 0;
}
.list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

.list li {
  position: relative;
  padding: 14px 14px 14px 44px;
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);

  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

/* gradient bullet icon */
.list li::before {
  content: "🌶️";
  position: absolute;
  left: 14px;
  top: 14px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  filter: drop-shadow(0 0 10px rgba(255, 59, 48, 0.25));
}

.list li:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 204, 0, 0.25);
}
.simple-text {
  margin: 30px 0;
}

.simple-text h2 {
  color: #fff;
  font-weight: 900;
  margin-bottom: 12px;
  letter-spacing: 0.4px;
}

.simple-text p {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.8;
  margin: 0;
}
