/* Custom Addons CSS */
:root {
  --transition-speed: 0.3s;
}

/* Dark Mode Palette Overrides */
:root.theme-dark {
  --cgx-ink: #fbf6f2;
  --cgx-ink-soft: #d9c7bf;
  --cgx-burgundy: #a12332;
  --cgx-burgundy-deep: #160305;
  --cgx-paper: #120406;
  --cgx-paper-warm: #1a080a;
  --cgx-mist: #2c0f12;
  --cgx-grey: #a6938e;
  --cgx-line: #3b181c;
  --cgx-white: #1a080a;
  
  --cgx-surface: var(--cgx-paper);
  --cgx-surface-alt: var(--cgx-paper-warm);
  --cgx-on-dark: #fbf6f2;
  --cgx-on-dark-dim: #d9b3b1;
}

/* Transition background and text color for smooth theme toggle */
body {
  transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease;
}

/* Ensure other elements transition nicely */
.cgx-minicard,
.cgx-step,
.cgx-rankcard,
.cgx-criterion,
.cgx-catcard,
.cgx-header,
.cgx-field__control,
.cgx-footer,
.cgx-brand__mark,
.cgx-burger,
.cgx-rail__panel,
.cgx-consent__card {
  transition: background-color var(--transition-speed) ease, 
              color var(--transition-speed) ease, 
              border-color var(--transition-speed) ease, 
              box-shadow var(--transition-speed) ease;
}

/* Do not crop the logo */
.cgx-brand__mark {
  border-radius: 0 !important;
}

/* Search Box style in header */
.cgx-search-container {
  position: relative;
  flex-grow: 1;
  max-width: 280px;
  margin-inline: 1.5rem;
}

.cgx-search-input {
  width: 100%;
  min-height: 40px;
  padding: 0.5rem 1rem 0.5rem 2.5rem;
  border-radius: 999px;
  border: 1.5px solid var(--cgx-line);
  background-color: var(--cgx-white);
  color: var(--cgx-ink);
  font-family: var(--cgx-font-utility);
  font-size: 0.9rem;
  transition: border-color var(--cgx-motion) ease, box-shadow var(--cgx-motion) ease;
  outline: none;
}

.cgx-search-input:focus {
  border-color: var(--cgx-red);
  box-shadow: 0 0 0 3px rgba(216, 31, 42, 0.15);
}

.cgx-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cgx-grey);
  pointer-events: none;
  display: flex;
  align-items: center;
}

/* Dropdown list of results */
.cgx-search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background-color: var(--cgx-white);
  border: 1px solid var(--cgx-line);
  border-radius: var(--cgx-radius-s);
  box-shadow: var(--cgx-shadow-lift);
  max-height: 320px;
  overflow-y: auto;
  z-index: 120;
  padding: 0.5rem 0;
  display: none;
  animation: cgxFadeIn 0.2s ease forwards;
}

@keyframes cgxFadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

.cgx-search-item {
  display: block;
  padding: 0.7rem 1.2rem;
  border-bottom: 1px solid var(--cgx-line);
  transition: background-color var(--cgx-motion) ease;
  text-decoration: none;
  color: inherit;
}

.cgx-search-item:last-child {
  border-bottom: none;
}

.cgx-search-item:hover {
  background-color: var(--cgx-paper-warm);
}

.cgx-search-item-title {
  font-family: var(--cgx-font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--cgx-red);
  margin-bottom: 0.2rem;
}

.cgx-search-item-desc {
  font-size: 0.82rem;
  color: var(--cgx-ink-soft);
  line-height: 1.3;
  margin: 0;
}

.cgx-search-no-results {
  padding: 1rem 1.2rem;
  font-size: 0.9rem;
  color: var(--cgx-grey);
  text-align: center;
}

/* Floating Theme Switcher Button */
.theme-toggle-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--cgx-white);
  border: 1px solid var(--cgx-line);
  color: var(--cgx-ink);
  box-shadow: var(--cgx-shadow-lift);
  cursor: pointer;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background-color var(--transition-speed) ease, color var(--transition-speed) ease;
}

.theme-toggle-btn:hover {
  transform: scale(1.1);
}

.theme-toggle-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* Adjustments for theme-dark to prevent issues */
:root.theme-dark .cgx-minicard,
:root.theme-dark .cgx-step,
:root.theme-dark .cgx-rankcard,
:root.theme-dark .cgx-criterion,
:root.theme-dark .cgx-catcard {
  background-color: var(--cgx-paper-warm);
  border-color: var(--cgx-line);
}

:root.theme-dark .cgx-rankcard--lead {
  background-color: var(--cgx-ink);
  color: var(--cgx-on-dark);
}

:root.theme-dark .cgx-btn--light {
  background-color: var(--cgx-ink-soft);
  color: var(--cgx-white);
  border-color: var(--cgx-line);
}

:root.theme-dark .cgx-btn--light:hover {
  background-color: var(--cgx-burgundy);
}

:root.theme-dark .cgx-field__control[aria-invalid="true"] {
  background-color: #3d1418;
}

/* Responsive Search in Header */
@media (max-width: 920px) {
  .cgx-search-container {
    max-width: 200px;
    margin-inline: 0.5rem;
  }
}
@media (max-width: 600px) {
  .cgx-search-container {
    display: none; /* Hide in tiny viewport to not break styles */
  }
}

/* New Hero Section */
.cgx-new-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-image: url('../../img/hero-fon.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #050000;
}

.cgx-new-hero__shell {
  position: relative;
  width: 100%;
  max-width: 1400px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin: 0 auto;
}

.cgx-new-hero__title {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  display: flex;
  flex-direction: column;
  z-index: 1;
  font-family: "Inter", var(--cgx-font-display, sans-serif);
  font-weight: 900;
  color: #ffffff;
  margin: 0;
  pointer-events: none;
}

.cgx-new-hero__title-top {
  display: flex;
  justify-content: space-between;
  font-size: clamp(4rem, 11vw, 13rem);
  letter-spacing: -0.04em;
  line-height: 0.9;
  text-transform: none;
}

.cgx-new-hero__title-bottom {
  font-size: clamp(6rem, 16vw, 19rem);
  letter-spacing: -0.05em;
  line-height: 0.8;
  margin-top: -0.1em;
  text-transform: none;
}

.cgx-new-hero__person {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 100%;
  max-width: 900px;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.cgx-new-hero__person img {
  width: 100%;
  height: auto;
  max-height: 95vh;
  object-fit: contain;
  object-position: bottom;
}

.cgx-new-hero__text-left {
  position: absolute;
  bottom: 10%;
  left: 5%;
  max-width: 360px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.6;
}

.cgx-new-hero__text-left p {
  margin-bottom: 1.5rem;
}

.cgx-new-hero__text-left p:last-child {
  margin-bottom: 0;
}

.cgx-new-hero__text-right {
  position: absolute;
  top: 35%;
  right: 5%;
  max-width: 280px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .cgx-new-hero__title {
    top: 35%;
  }
  .cgx-new-hero__text-right {
    top: auto;
    bottom: 10%;
    right: 5%;
    text-align: right;
  }
  .cgx-new-hero__text-left {
    bottom: 25%;
  }
}

@media (max-width: 768px) {
  .cgx-new-hero__title {
    top: 25%;
    width: 95%;
  }
  .cgx-new-hero__title-top, .cgx-new-hero__title-bottom {
    text-align: center;
    justify-content: center;
    flex-direction: column;
  }
  .cgx-new-hero__person {
    opacity: 0.7;
    z-index: 0;
  }
  .cgx-new-hero__text-left, .cgx-new-hero__text-right {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    max-width: 100%;
    text-align: center;
    padding: 1rem 2rem;
    z-index: 3;
  }
  .cgx-new-hero__shell {
    justify-content: flex-end;
    padding-bottom: 2rem;
  }
}

/* New Selection Section (White) */
.cgx-new-selection-white {
  position: relative;
  background-color: #fbf6f2; /* Warm white */
  color: #1a080a;
  padding: 6rem 0;
  overflow: hidden;
  z-index: 1;
}

/* Force text colors in case theme-dark overrides it */
:root.theme-dark .cgx-new-selection-white {
  background-color: #fbf6f2;
  color: #1a080a;
}
:root.theme-dark .cgx-new-selection-white__text p {
  color: #3b181c;
}
:root.theme-dark .cgx-new-selection-white__title {
  color: #2c0f12;
}

.cgx-new-selection-white__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Inter", var(--cgx-font-display, sans-serif);
  font-weight: 900;
  font-size: clamp(10rem, 20vw, 25rem);
  color: rgba(0, 0, 0, 0.03);
  white-space: nowrap;
  pointer-events: none;
  z-index: -1;
  line-height: 0.8;
  text-align: center;
}

.cgx-new-selection-white__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

.cgx-new-selection-white__content {
  flex: 0 0 45%;
  padding-right: 2rem;
  position: relative;
}

.cgx-new-selection-white__title {
  font-family: "Inter", var(--cgx-font-display, sans-serif);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  color: #2c0f12;
  margin-bottom: 2rem;
  position: relative;
}

.cgx-new-selection-white__title span {
  color: #d81f2a;
}

.cgx-new-selection-white__asterisks {
  position: absolute;
  top: 0;
  right: 0;
  font-family: monospace;
  font-size: 1.5rem;
  font-weight: bold;
  color: #2c0f12;
}
:root.theme-dark .cgx-new-selection-white__asterisks {
  color: #2c0f12;
}

.cgx-new-selection-white__text {
  font-size: 1rem;
  line-height: 1.6;
  color: #3b181c;
  max-width: 95%;
}

.cgx-new-selection-white__text p {
  margin-bottom: 1.5rem;
}

.cgx-new-selection-white__images {
  flex: 0 0 50%;
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
  align-items: center;
}

.cgx-new-selection-white__images img {
  width: 30%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  aspect-ratio: 3/4;
}

.cgx-new-selection-white__images .img-center {
  transform: translateY(-20px);
}

/* New Selection Section (Red) */
.cgx-new-selection-red {
  position: relative;
  background-color: #340810;
  color: #ffffff;
  padding: 6rem 0 10rem 0;
  overflow: hidden;
  z-index: 1;
}

.cgx-new-selection-red__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Inter", var(--cgx-font-display, sans-serif);
  font-weight: 900;
  font-size: clamp(8rem, 20vw, 25rem);
  color: rgba(216, 31, 42, 0.05);
  white-space: nowrap;
  pointer-events: none;
  z-index: -1;
  line-height: 0.8;
  text-align: center;
}

.cgx-new-selection-red__container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.cgx-new-selection-red__title {
  font-family: "Inter", var(--cgx-font-display, sans-serif);
  font-weight: 900;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 4rem;
  max-width: 800px;
}

.cgx-new-selection-red__asterisks {
  position: absolute;
  top: 0;
  right: 0;
  font-family: monospace;
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
}

.cgx-new-selection-red__cards {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}

.cgx-new-card {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 2.5rem;
  color: #2c0f12;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

:root.theme-dark .cgx-new-card {
  background-color: #ffffff;
  color: #2c0f12;
}

.cgx-new-card--2 {
  transform: translateY(40px);
}
.cgx-new-card:hover {
  transform: translateY(-5px);
}
.cgx-new-card--2:hover {
  transform: translateY(35px); /* keep base offset */
}

.cgx-new-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.cgx-new-card__header h3 {
  font-family: "Inter", var(--cgx-font-display, sans-serif);
  font-size: 1.8rem;
  line-height: 1.1;
  font-weight: 800;
  margin: 0;
  color: #2c0f12;
}

.cgx-new-card__num {
  font-family: "Inter", monospace;
  font-weight: bold;
  font-size: 1.2rem;
  color: #2c0f12;
}

.cgx-new-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.cgx-new-card__footer p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
  margin: 0;
  max-width: 75%;
}

.cgx-new-card__icon {
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .cgx-new-selection-white__container {
    flex-direction: column;
    padding: 0 2rem;
  }
  .cgx-new-selection-white__content {
    flex: 0 0 100%;
    padding-right: 0;
    margin-bottom: 3rem;
  }
  .cgx-new-selection-white__images {
    width: 100%;
    justify-content: center;
  }
  .cgx-new-selection-white__asterisks {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
  }
  .cgx-new-selection-red__container {
    padding: 0 2rem;
  }
  .cgx-new-selection-red__cards {
    flex-direction: column;
    gap: 2rem;
  }
  .cgx-new-card--2 {
    transform: none;
  }
  .cgx-new-card--2:hover {
    transform: translateY(-5px);
  }
  .cgx-new-selection-red__asterisks {
    position: relative;
    display: block;
    margin-bottom: 2rem;
  }
}

/* New Platforms Section (White) */
.cgx-new-platforms {
  position: relative;
  background-color: #fbf6f2; /* Warm white */
  color: #1a080a;
  padding: 6rem 0;
  overflow: hidden;
  z-index: 1;
}

:root.theme-dark .cgx-new-platforms {
  background-color: #fbf6f2;
  color: #1a080a;
}

.cgx-new-platforms__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Inter", var(--cgx-font-display, sans-serif);
  font-weight: 900;
  font-size: clamp(10rem, 20vw, 25rem);
  color: rgba(0, 0, 0, 0.03);
  white-space: nowrap;
  pointer-events: none;
  z-index: -1;
  line-height: 0.8;
  text-align: center;
}

.cgx-new-platforms__container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.cgx-new-platforms__title {
  font-family: "Inter", var(--cgx-font-display, sans-serif);
  font-weight: 900;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.1;
  color: #340810;
  margin-bottom: 3rem;
  text-align: right;
  padding-right: 2rem;
}
:root.theme-dark .cgx-new-platforms__title { color: #340810; }

.cgx-new-platforms__asterisks {
  position: absolute;
  top: 0;
  left: 0;
  font-family: monospace;
  font-size: 1.5rem;
  font-weight: bold;
  color: #340810;
}
:root.theme-dark .cgx-new-platforms__asterisks { color: #340810; }

.cgx-new-platforms__media {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 2rem;
}

.cgx-new-platforms__media img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* New Steps Section (Red) */
.cgx-new-steps {
  position: relative;
  background-color: #340810;
  color: #ffffff;
  padding: 6rem 0;
  overflow: hidden;
  z-index: 1;
}

.cgx-new-steps__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Inter", var(--cgx-font-display, sans-serif);
  font-weight: 900;
  font-size: clamp(8rem, 20vw, 25rem);
  color: rgba(216, 31, 42, 0.05);
  white-space: nowrap;
  pointer-events: none;
  z-index: -1;
  line-height: 0.8;
  text-align: center;
}

.cgx-new-steps__container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.cgx-new-steps__title {
  font-family: "Inter", var(--cgx-font-display, sans-serif);
  font-weight: 900;
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 4rem;
  max-width: 600px;
}

.cgx-new-steps__asterisks {
  position: absolute;
  top: 0;
  right: 0;
  font-family: monospace;
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
}

.cgx-new-steps__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cgx-new-steps__list li {
  background-color: #ffffff;
  border-radius: 99px;
  padding: 1.2rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #340810;
  font-family: "Inter", var(--cgx-font-display, sans-serif);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
}
:root.theme-dark .cgx-new-steps__list li {
  background-color: #ffffff;
  color: #340810;
}

.cgx-new-steps__list li:hover {
  transform: translateX(10px);
}

.cgx-new-steps__num {
  font-weight: 900;
  font-size: 1.4rem;
}

.cgx-new-steps__text {
  font-weight: 600;
  font-size: 1.1rem;
}

/* New Features Section (White) */
.cgx-new-features {
  position: relative;
  background-color: #fbf6f2; /* Warm white */
  color: #1a080a;
  padding: 6rem 0;
  overflow: hidden;
  z-index: 1;
}

:root.theme-dark .cgx-new-features {
  background-color: #fbf6f2;
  color: #1a080a;
}

.cgx-new-features__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Inter", var(--cgx-font-display, sans-serif);
  font-weight: 900;
  font-size: clamp(10rem, 20vw, 25rem);
  color: rgba(0, 0, 0, 0.03);
  white-space: nowrap;
  pointer-events: none;
  z-index: -1;
  line-height: 0.8;
  text-align: center;
}

.cgx-new-features__container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.cgx-new-features__title {
  font-family: "Inter", var(--cgx-font-display, sans-serif);
  font-weight: 900;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.1;
  color: #340810;
  margin-bottom: 4rem;
  text-align: right;
  padding-right: 2rem;
}
:root.theme-dark .cgx-new-features__title { color: #340810; }

.cgx-new-features__asterisks {
  position: absolute;
  top: 0;
  left: 0;
  font-family: monospace;
  font-size: 1.5rem;
  font-weight: bold;
  color: #340810;
}
:root.theme-dark .cgx-new-features__asterisks { color: #340810; }

.cgx-new-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 0 2rem;
}

.cgx-new-featcard {
  background-color: transparent;
  border: 1px solid #c9a599; /* slight reddish outline */
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  transition: border-color 0.3s ease, transform 0.3s ease;
  background-color: #ffffff;
}

:root.theme-dark .cgx-new-featcard {
  background-color: #ffffff;
  border-color: #c9a599;
}

.cgx-new-featcard:hover {
  border-color: #d81f2a;
  transform: translateY(-5px);
}

.cgx-new-featcard--alt1 {
  align-items: flex-start;
}

.cgx-new-featcard--alt2 {
  align-items: flex-end;
  text-align: right;
}

.cgx-new-featcard h3 {
  font-family: "Inter", var(--cgx-font-display, sans-serif);
  font-weight: 800;
  font-size: 1.4rem;
  color: #340810;
  margin-bottom: 1rem;
  line-height: 1.2;
}
:root.theme-dark .cgx-new-featcard h3 { color: #340810; }

.cgx-new-featcard p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
  margin: 0;
}
:root.theme-dark .cgx-new-featcard p { color: #555; }

.cgx-new-featcard__icon svg {
  fill: none;
}

.cgx-new-featcard__icon--right {
  align-self: flex-end;
}

/* Make some cards offset to mimic masonry */
.cgx-new-features__grid .cgx-new-featcard:nth-child(2) {
  transform: translateY(30px);
}
.cgx-new-features__grid .cgx-new-featcard:nth-child(5) {
  transform: translateY(30px);
}
.cgx-new-features__grid .cgx-new-featcard:nth-child(2):hover,
.cgx-new-features__grid .cgx-new-featcard:nth-child(5):hover {
  transform: translateY(25px);
}

@media (max-width: 1024px) {
  .cgx-new-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cgx-new-features__grid .cgx-new-featcard:nth-child(2),
  .cgx-new-features__grid .cgx-new-featcard:nth-child(5) {
    transform: none;
  }
}
@media (max-width: 768px) {
  .cgx-new-platforms__title, .cgx-new-features__title {
    text-align: left;
    padding-left: 2rem;
  }
  .cgx-new-steps__list li {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 20px;
  }
  .cgx-new-features__grid {
    grid-template-columns: 1fr;
  }
  .cgx-new-featcard--alt2 {
    align-items: flex-start;
    text-align: left;
  }
}

/* New Ranking Section */
.cgx-new-ranking {
  position: relative;
  background-color: #340810;
  color: #ffffff;
  padding: 6rem 0;
  overflow: hidden;
  z-index: 1;
}

.cgx-new-ranking__container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.cgx-new-ranking__title {
  font-family: "Inter", var(--cgx-font-display, sans-serif);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 4rem;
}

.cgx-new-ranking__asterisks {
  position: absolute;
  top: 0;
  right: 0;
  font-family: monospace;
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
}

.cgx-new-gamegrid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  padding: 0 2rem;
}

.cgx-new-gamecard {
  background-color: #e5dfd8;
  border-radius: 24px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  color: #340810;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  grid-column: span 2;
  transition: transform 0.3s ease;
}

.cgx-new-gamecard:hover {
  transform: translateY(-5px);
}

:root.theme-dark .cgx-new-gamecard {
  background-color: #e5dfd8;
  color: #340810;
}

.cgx-new-gamecard:nth-child(4),
.cgx-new-gamecard:nth-child(5) {
  grid-column: span 3;
}

/* Badge */
.cgx-new-gamecard__badge {
  background-color: #ffffff;
  border: 1px solid #340810;
  border-radius: 99px;
  padding: 0.5rem 1rem;
  font-weight: 900;
  font-family: "Inter", var(--cgx-font-display, sans-serif);
  text-align: center;
  margin: 0 auto 1.5rem auto;
  font-size: 1.1rem;
  width: 100%;
  max-width: 200px;
}
:root.theme-dark .cgx-new-gamecard__badge {
  background-color: #ffffff;
  border-color: #340810;
}

.cgx-new-gamecard__img-link {
  display: block;
  margin-bottom: 1.5rem;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.cgx-new-gamecard__img-link img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.cgx-new-gamecard__img-link:hover img {
  transform: scale(1.05);
}

.cgx-new-gamecard__title {
  font-family: "Inter", var(--cgx-font-display, sans-serif);
  font-weight: 900;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: #340810;
  line-height: 1.2;
}

.cgx-new-gamecard__section {
  margin-bottom: 1rem;
}

.cgx-new-gamecard__section h4 {
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
  color: #340810;
  text-transform: none;
}

.cgx-new-gamecard__section p {
  font-size: 0.85rem;
  line-height: 1.4;
  color: #4a1f26;
  margin: 0;
}

.cgx-new-gamecard__btn {
  margin-top: auto;
  display: block;
  width: 100%;
  text-align: center;
  background-color: transparent;
  border: 1px solid #340810;
  border-radius: 99px;
  padding: 0.8rem;
  font-weight: 900;
  font-family: "Inter", var(--cgx-font-display, sans-serif);
  color: #340810;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.cgx-new-gamecard__btn:hover {
  background-color: #340810;
  color: #ffffff;
}

@media (max-width: 1024px) {
  .cgx-new-gamegrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cgx-new-gamecard, 
  .cgx-new-gamecard:nth-child(4),
  .cgx-new-gamecard:nth-child(5) {
    grid-column: span 1;
  }
}

@media (max-width: 600px) {
  .cgx-new-gamegrid {
    grid-template-columns: 1fr;
  }
}

/* New Experience Section */
.cgx-new-experience {
  position: relative;
  color: #ffffff;
  padding: 6rem 0;
  overflow: hidden;
  z-index: 1;
  background-color: #0d0103;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}

.cgx-new-experience__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.cgx-new-experience__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cgx-new-experience__fg {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 50%;
  z-index: 0;
  pointer-events: none;
}

.cgx-new-experience__fg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
}

.cgx-new-experience__container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.cgx-new-experience__title {
  font-family: "Inter", var(--cgx-font-display, sans-serif);
  font-weight: 900;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 4rem;
  max-width: 800px;
}

.cgx-new-experience__asterisks {
  position: absolute;
  top: 0;
  right: 0;
  font-family: monospace;
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
}

.cgx-new-experience__content {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
}

.cgx-new-experience__left {
  flex: 0 0 35%;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding-top: 2rem;
}

.cgx-new-experience__left p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.cgx-new-experience__right {
  flex: 0 0 35%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  text-align: right;
  align-items: flex-end;
}

.cgx-new-experience__right p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  max-width: 300px;
}

.cgx-new-experience__icon {
  margin: 1rem 0;
}

/* New Characteristics Section */
.cgx-new-characteristics {
  position: relative;
  background-color: #fbf6f2; /* Warm white */
  color: #1a080a;
  padding: 6rem 0;
  overflow: hidden;
  z-index: 1;
  border-radius: 40px;
  margin-top: -20px; /* Slight overlap */
}

:root.theme-dark .cgx-new-characteristics {
  background-color: #fbf6f2;
  color: #1a080a;
}

.cgx-new-characteristics__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Inter", var(--cgx-font-display, sans-serif);
  font-weight: 900;
  font-size: clamp(10rem, 20vw, 25rem);
  color: rgba(0, 0, 0, 0.03);
  white-space: nowrap;
  pointer-events: none;
  z-index: -1;
  line-height: 0.8;
  text-align: center;
}

.cgx-new-characteristics__container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.cgx-new-characteristics__title {
  font-family: "Inter", var(--cgx-font-display, sans-serif);
  font-weight: 900;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.1;
  color: #340810;
  margin-bottom: 4rem;
}
:root.theme-dark .cgx-new-characteristics__title { color: #340810; }

.cgx-new-characteristics__title .text-red {
  color: #d81f2a;
}

.cgx-new-characteristics__asterisks {
  position: absolute;
  top: 0;
  right: 0;
  font-family: monospace;
  font-size: 1.5rem;
  font-weight: bold;
  color: #340810;
}
:root.theme-dark .cgx-new-characteristics__asterisks { color: #340810; }

.cgx-new-characteristics__layout {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}

.cgx-new-characteristics__media {
  flex: 0 0 45%;
}

.cgx-new-characteristics__media img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  display: block;
}

.cgx-new-characteristics__list-wrap {
  flex: 1;
}

.cgx-new-characteristics__desc {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 3rem;
}

.cgx-new-characteristics__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cgx-new-characteristics__list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.cgx-new-characteristics__icon {
  font-family: monospace;
  font-weight: bold;
  color: #d81f2a;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.cgx-new-characteristics__list h4 {
  font-family: "Inter", var(--cgx-font-display, sans-serif);
  font-weight: 800;
  font-size: 1.1rem;
  color: #340810;
  margin: 0 0 0.3rem 0;
}

.cgx-new-characteristics__list p {
  font-size: 0.9rem;
  color: #555;
  margin: 0;
  line-height: 1.4;
}

/* New Criteria Section */
.cgx-new-criteria {
  position: relative;
  background-color: #340810;
  color: #ffffff;
  padding: 6rem 0 10rem 0;
  overflow: hidden;
  z-index: 1;
  margin-top: -20px;
}

.cgx-new-criteria__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Inter", var(--cgx-font-display, sans-serif);
  font-weight: 900;
  font-size: clamp(8rem, 20vw, 25rem);
  color: rgba(216, 31, 42, 0.05);
  white-space: nowrap;
  pointer-events: none;
  z-index: -1;
  line-height: 0.8;
  text-align: center;
}

.cgx-new-criteria__container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.cgx-new-criteria__title {
  font-family: "Inter", var(--cgx-font-display, sans-serif);
  font-weight: 900;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 4rem;
}

.cgx-new-criteria__asterisks {
  position: absolute;
  top: 0;
  right: 0;
  font-family: monospace;
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
}

.cgx-new-criteria__cards {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}

.cgx-new-critcard {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  min-height: 250px;
}

:root.theme-dark .cgx-new-critcard {
  background-color: #ffffff;
}

.cgx-new-critcard:hover {
  transform: translateY(-10px);
}

.cgx-new-critcard__num {
  font-family: "Inter", var(--cgx-font-display, sans-serif);
  font-weight: 900;
  font-size: 3rem;
  color: #4a1f26;
  margin-bottom: 1.5rem;
  display: block;
}
:root.theme-dark .cgx-new-critcard__num { color: #4a1f26; }

.cgx-new-critcard p {
  font-size: 1.1rem;
  font-weight: 700;
  color: #d81f2a;
  margin: 0;
  line-height: 1.3;
}
:root.theme-dark .cgx-new-critcard p { color: #d81f2a; }

.cgx-new-criteria__box-img {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 300px;
  opacity: 0.15;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .cgx-new-experience__content {
    flex-direction: column;
    gap: 2rem;
  }
  .cgx-new-experience__left,
  .cgx-new-experience__right {
    flex: 1;
    align-items: flex-start;
    text-align: left;
  }
  .cgx-new-experience__right p {
    max-width: 100%;
  }
  .cgx-new-characteristics__layout {
    flex-direction: column;
  }
  .cgx-new-characteristics__media {
    width: 100%;
  }
  .cgx-new-criteria__cards {
    flex-wrap: wrap;
  }
  .cgx-new-critcard {
    flex: 0 0 calc(50% - 1rem);
  }
}
@media (max-width: 600px) {
  .cgx-new-critcard {
    flex: 0 0 100%;
  }
}

/* New World Section */
.cgx-new-world {
  position: relative;
  background-color: #fbf6f2; /* warm white */
  color: #340810;
  padding: 6rem 0;
  overflow: hidden;
  z-index: 1;
  border-radius: 40px;
  margin-top: -20px;
}
:root.theme-dark .cgx-new-world { background-color: #fbf6f2; color: #340810; }

.cgx-new-world__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Inter", var(--cgx-font-display, sans-serif);
  font-weight: 900;
  font-size: clamp(8rem, 20vw, 25rem);
  color: rgba(0, 0, 0, 0.03);
  white-space: nowrap;
  pointer-events: none;
  z-index: -1;
  line-height: 0.8;
  text-align: center;
}

.cgx-new-world__container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.cgx-new-world__title {
  font-family: "Inter", var(--cgx-font-display, sans-serif);
  font-weight: 900;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.1;
  color: #340810;
  margin-bottom: 4rem;
  text-align: right;
}
:root.theme-dark .cgx-new-world__title { color: #340810; }

.cgx-new-world__asterisks {
  position: absolute;
  top: 0;
  left: 0;
  font-family: monospace;
  font-size: 1.5rem;
  font-weight: bold;
  color: #340810;
}

.cgx-new-world__media img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

/* New Opportunities Section */
.cgx-new-opportunities {
  position: relative;
  background-color: #340810;
  color: #ffffff;
  padding: 6rem 0;
  overflow: hidden;
  z-index: 1;
  margin-top: -20px;
}

.cgx-new-opportunities__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Inter", var(--cgx-font-display, sans-serif);
  font-weight: 900;
  font-size: clamp(8rem, 20vw, 25rem);
  color: rgba(216, 31, 42, 0.05);
  white-space: nowrap;
  pointer-events: none;
  z-index: -1;
  line-height: 0.8;
  text-align: center;
}

.cgx-new-opportunities__container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.cgx-new-opportunities__title {
  font-family: "Inter", var(--cgx-font-display, sans-serif);
  font-weight: 900;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 4rem;
}

.cgx-new-opportunities__asterisks {
  position: absolute;
  top: 0;
  right: 0;
  font-family: monospace;
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
}

.cgx-new-opportunities__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cgx-new-oppcard {
  background-color: #e5dfd8;
  border-radius: 99px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  color: #340810;
  transition: transform 0.3s ease;
}
:root.theme-dark .cgx-new-oppcard { background-color: #e5dfd8; color: #340810; }

.cgx-new-oppcard:hover {
  transform: translateX(10px);
}

.cgx-new-oppcard__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cgx-new-oppcard__title {
  font-family: "Inter", var(--cgx-font-display, sans-serif);
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0;
  flex: 0 0 300px;
  color: #340810;
}

.cgx-new-oppcard__desc {
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
  color: #4a1f26;
}
:root.theme-dark .cgx-new-oppcard__title,
:root.theme-dark .cgx-new-oppcard__desc { color: #340810; }

/* New Finder Section */
.cgx-new-finder {
  position: relative;
  background-color: #fbf6f2;
  color: #340810;
  padding: 6rem 0 8rem 0;
  overflow: hidden;
  z-index: 1;
  border-radius: 40px;
  margin-top: -20px;
}
:root.theme-dark .cgx-new-finder { background-color: #fbf6f2; color: #340810; }

.cgx-new-finder__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Inter", var(--cgx-font-display, sans-serif);
  font-weight: 900;
  font-size: clamp(8rem, 20vw, 25rem);
  color: rgba(0, 0, 0, 0.03);
  white-space: nowrap;
  pointer-events: none;
  z-index: -1;
  line-height: 0.8;
  text-align: center;
}

.cgx-new-finder__container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.cgx-new-finder__title {
  font-family: "Inter", var(--cgx-font-display, sans-serif);
  font-weight: 900;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.1;
  color: #340810;
  margin-bottom: 4rem;
  text-align: right;
}
:root.theme-dark .cgx-new-finder__title { color: #340810; }

.cgx-new-finder__asterisks {
  position: absolute;
  top: 0;
  left: 0;
  font-family: monospace;
  font-size: 1.5rem;
  font-weight: bold;
  color: #340810;
}

.cgx-new-finder__layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.cgx-new-finder__left {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cgx-new-finder__left p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

.cgx-new-finder__right {
  flex: 0 0 40%;
  display: flex;
  justify-content: center;
}

.cgx-new-finder__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 250px;
  background-color: #d81f2a;
  color: #ffffff;
  border-radius: 50%;
  font-family: "Inter", var(--cgx-font-display, sans-serif);
  font-weight: 900;
  font-size: 1.1rem;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 20px 40px rgba(216, 31, 42, 0.4);
  transition: transform 0.3s ease, background-color 0.3s ease;
}
:root.theme-dark .cgx-new-finder__btn { color: #ffffff; }

.cgx-new-finder__btn:hover {
  transform: scale(1.05);
  background-color: #a8101a;
}

@media (max-width: 1024px) {
  .cgx-new-oppcard {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 30px;
    gap: 1rem;
  }
  .cgx-new-oppcard__title {
    flex: auto;
  }
  .cgx-new-finder__layout {
    flex-direction: column;
    text-align: center;
  }
  .cgx-new-finder__left {
    flex: 1;
  }
}
@media (max-width: 600px) {
  .cgx-new-finder__btn {
    width: 200px;
    height: 200px;
    font-size: 1rem;
  }
}

/* New Contact Section */
.cgx-new-contact {
  background-color: #340810;
  color: #ffffff;
  padding: 6rem 0;
  font-family: "Inter", var(--cgx-font-display, sans-serif);
}
:root.theme-dark .cgx-new-contact { background-color: #340810; color: #ffffff; }

.cgx-new-contact__container {
  max-width: 1400px;
  margin: 0 auto;
}

.cgx-new-contact__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 5rem;
}

.cgx-new-contact__title {
  font-weight: 900;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.1;
  color: #ffffff;
  margin: 0;
}
:root.theme-dark .cgx-new-contact__title { color: #ffffff; }

.cgx-new-contact__asterisks {
  font-family: monospace;
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
}

.cgx-new-contact__layout {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}

.cgx-new-contact__info {
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding-top: 2rem;
}

.cgx-new-contact__info-block h4 {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
  text-transform: none;
}

.cgx-new-contact__info-block p {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.5;
}

.cgx-new-contact__form-wrap {
  flex: 1;
}

.cgx-new-contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cgx-new-form-group input,
.cgx-new-form-group textarea {
  width: 100%;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 99px;
  padding: 1.2rem 2rem;
  color: #ffffff;
  font-family: "Inter", var(--cgx-font-display, sans-serif);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.cgx-new-form-group textarea {
  border-radius: 30px;
  min-height: 150px;
  resize: vertical;
}

.cgx-new-form-group input:focus,
.cgx-new-form-group textarea:focus {
  outline: none;
  border-color: #ffffff;
}

.cgx-new-form-group input::placeholder,
.cgx-new-form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.cgx-new-form-footer {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 1rem;
}

.cgx-new-contact__btn {
  background-color: #ffffff;
  color: #340810;
  border: none;
  border-radius: 99px;
  padding: 1.2rem 3rem;
  font-weight: 900;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
  flex-shrink: 0;
}

.cgx-new-contact__btn:hover {
  transform: translateY(-2px);
  background-color: #f0f0f0;
}

.cgx-new-contact__disclaimer {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 1024px) {
  .cgx-new-contact__layout {
    flex-direction: column;
    gap: 3rem;
  }
  .cgx-new-contact__info {
    flex: auto;
    width: 100%;
  }
  .cgx-new-form-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

/* New Footer Styles */
.cgx-new-footer {
  background-color: #ffffff;
  color: #340810;
  padding: 3rem 0;
  font-family: var(--cgx-font-base, "Inter", sans-serif);
}

:root.theme-dark .cgx-new-footer {
  background-color: #ffffff;
  color: #340810;
}

.cgx-new-footer__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cgx-new-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 1rem;
}

.cgx-new-footer__logo img {
  height: 50px;
  width: auto;
}

.cgx-new-footer__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.cgx-new-footer__nav a {
  text-decoration: none;
  color: #340810;
  font-size: 1rem;
  font-weight: 400;
  transition: color var(--transition-speed, 0.3s) ease;
}

.cgx-new-footer__nav a:hover {
  color: #d81f2a;
}

.cgx-new-footer__contact {
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
}

.cgx-new-footer__contact p {
  margin: 0.3rem 0;
}

.cgx-new-footer__divider {
  border: none;
  border-top: 1px solid rgba(52, 8, 16, 0.15);
  margin: 1rem 0;
}

.cgx-new-footer__disclaimer {
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 1200px;
  margin: 0 auto;
  color: rgba(52, 8, 16, 0.85);
}

.cgx-new-footer__disclaimer p {
  margin-bottom: 0.5rem;
}

.cgx-new-footer__disclaimer p:last-child {
  margin-bottom: 0;
}

.cgx-new-footer__bottom {
  text-align: center;
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .cgx-new-footer__top {
    flex-direction: column;
    text-align: center;
  }
  .cgx-new-footer__nav ul {
    justify-content: center;
    gap: 1rem;
  }
}
