/* Trustedcasinofr — Dark Betting UI 2025 (Bleu de France v4, animated diamonds) */
:root {
  --aur-bg: #0a1020;
  --aur-bg-soft: #0e1426;
  --aur-fg: #ecf2ff;
  --aur-sub: #a7b6d9;
  --aur-link: #93c5fd;
  --aur-ac: #2563eb;
  --aur-ac-2: #60a5fa;
  --aur-good: #22c55e;
  --aur-warn: #facc15;
  --aur-danger: #ef4444;
  --aur-card: #0f1a33;
  --aur-line: #25314a;
  --aur-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
  --aur-radius-sm: 10px;
  --aur-radius: 14px;
  --aur-radius-lg: 18px;
  --aur-focus: 0 0 0 3px rgba(37, 99, 235, 0.28),
    0 0 0 5px rgba(96, 165, 250, 0.28);
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
body.aur-shell {
  font-family: "Sora", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu,
    Cantarell, "Helvetica Neue", Arial, sans-serif;
  color: var(--aur-fg);
  background: linear-gradient(
    180deg,
    var(--aur-bg) 0%,
    #0a1020 60%,
    #091226 100%
  );
  line-height: 1.65;
  position: relative;
  overflow-x: clip;
}
figure {
  margin: 20px 0;
}
/* Static background image */
body.aur-shell::before {
  content: "";
  position: fixed;
  inset: -6vh -6vw;
  z-index: -3;
  background: radial-gradient(
      900px 420px at 110% -10%,
      rgba(37, 99, 235, 0.12),
      transparent 60%
    ),
    radial-gradient(
      700px 360px at -10% 0%,
      rgba(96, 165, 250, 0.1),
      transparent 60%
    ),
    linear-gradient(rgba(7, 11, 20, 0.58), rgba(7, 11, 20, 0.72)),
    url("./assets/paris-bg.webp") center 12% / cover no-repeat;
  filter: saturate(90%) contrast(92%);
}
/* Animated diamonds overlay using SVG data URIs */
body.aur-shell::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Crect x='1' y='1' width='8' height='8' transform='rotate(45 5 5)' fill='%2360A5FA' fill-opacity='.14'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Crect x='2' y='0' width='8' height='8' transform='rotate(45 6 6)' fill='%232563EB' fill-opacity='.12'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Crect x='2' y='2' width='10' height='10' transform='rotate(45 7 7)' fill='%2360A5FA' fill-opacity='.10'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Crect x='3' y='3' width='12' height='12' transform='rotate(45 9 9)' fill='%232563EB' fill-opacity='.16'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Crect x='3' y='3' width='10' height='10' transform='rotate(45 8 8)' fill='%2360A5FA' fill-opacity='.12'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Crect x='4' y='4' width='12' height='12' transform='rotate(45 10 10)' fill='%232563EB' fill-opacity='.10'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 12px 12px, 18px 18px, 10px 10px, 22px 22px, 14px 14px,
    20px 20px;
  background-position: 10% 18%, 34% 26%, 62% 12%, 78% 38%, 22% 68%, 70% 82%;
  animation: diamond-drift 24s ease-in-out infinite;
  opacity: 0.85;
}
@keyframes diamond-drift {
  0% {
    background-position: 10% 18%, 34% 26%, 62% 12%, 78% 38%, 22% 68%, 70% 82%;
    opacity: 0.85;
  }
  50% {
    background-position: 12% 20%, 36% 30%, 64% 16%, 80% 36%, 20% 70%, 68% 80%;
    opacity: 0.95;
  }
  100% {
    background-position: 10% 18%, 34% 26%, 62% 12%, 78% 38%, 22% 68%, 70% 82%;
    opacity: 0.85;
  }
}

/* Links */
.aur-shell a {
  color: var(--aur-link);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.aur-shell a:hover {
  color: #cfe5ff;
}
/* No underline for brand and CTA */
.aur-brand,
.aur-brand *,
.aur-cta {
  text-decoration: none !important;
}

/* Focus */
:focus {
  outline: none;
}
:focus-visible {
  box-shadow: var(--aur-focus);
  border-radius: 8px;
}

/* Layout */
.aur-wrap {
  width: min(1120px, 92%);
  margin-inline: auto;
}

/* Overlay when nav is open */
body.nav-open::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(3, 8, 20, 0.6);
  backdrop-filter: blur(2px);
  z-index: 40;
}

/* Skip link */
.aur-skip {
  position: absolute;
  left: -9999px;
  top: auto;
}
.aur-skip:focus-visible {
  left: 16px;
  top: 16px;
  background: #0d1320;
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 8px;
  z-index: 999;
}

/* Header */
.aur-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(9, 14, 28, 0.88);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--aur-line);
}
.aur-header .aur-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.aur-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  color: inherit;
}
.aur-logo {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: conic-gradient(from 210deg, rgba(37, 99, 235, 0.35));
}
.aur-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.aur-title {
  display: flex;
  flex-direction: column;
}
.aur-title-a {
  font-weight: 800;
  letter-spacing: 0.2px;
}
.aur-title-b {
  font-size: 0.8rem;
  color: var(--aur-sub);
}

.aur-burger {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--aur-line);
  border-radius: 12px;
  background: #0d1730;
  position: relative;
  z-index: 60;
}
.aur-burger .l {
  position: absolute;
  left: 50%;
  width: 26px;
  height: 2px;
  background: #e7eaf5;
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.22s ease, opacity 0.2s ease, width 0.2s ease,
    background-color 0.2s ease;
  transform: translateX(-50%);
}
.aur-burger .l1 {
  top: 50%;
  transform: translate(-50%, -8px);
}
.aur-burger .l2 {
  top: 50%;
  transform: translate(-50%, 0);
}
.aur-burger .l3 {
  top: 50%;
  transform: translate(-50%, 8px);
}
body.nav-open .aur-burger {
  position: fixed;
  top: 16px;
  right: 16px;
  border-color: #3b82f6;
  background: #0b142a;
}
body.nav-open .aur-burger .l {
  background: #93c5fd;
}
body.nav-open .aur-burger .l1 {
  transform: translate(-50%, 0) rotate(45deg);
}
body.nav-open .aur-burger .l2 {
  opacity: 0;
  width: 0;
}
body.nav-open .aur-burger .l3 {
  transform: translate(-50%, 0) rotate(-45deg);
}

.aur-nav ul {
  display: flex;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.aur-nav a {
  display: inline-block;
  padding: 8px 12px;
  color: inherit;
  border-radius: 10px;
}
.aur-nav a[aria-current="page"],
.aur-nav a:hover {
  background: #122041;
  box-shadow: inset 0 0 0 1px var(--aur-line);
}

/* Hero */
.aur-hero {
  padding: 38px 0 12px;
}
.aur-h1 {
  font-size: clamp(1.7rem, 2.6vw, 2.6rem);
  margin: 0 0 8px;
  font-weight: 800;
  letter-spacing: 0.2px;
}
.aur-sub {
  color: var(--aur-sub);
  margin: 0.2rem 0;
}
.aur-divider {
  position: relative;
  height: 0;
  border-top: 1px dashed var(--aur-line);
  margin: 24px 0;
}

/* Headings diamond marker */
.aur-h2 {
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.aur-h2::before {
  content: "";
  width: 12px;
  height: 12px;
  background-image: linear-gradient(135deg, var(--aur-ac), var(--aur-ac-2));
  transform: rotate(45deg);
}

/* Offer */
.aur-top {
  padding: 8px 0 26px;
}
.aur-offer {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  background: var(--aur-card);
  border: 1px solid var(--aur-line);
  border-radius: 14px;
  padding: 18px 16px 16px 16px;
  box-shadow: var(--aur-shadow);
  position: relative;
  overflow: visible;
}
.aur-offer::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background: linear-gradient(180deg, var(--aur-ac), var(--aur-ac-2));
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35) inset;
  border-top-left-radius: 14px;
  border-bottom-left-radius: 14px;
}
.aur-offer::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--aur-ac-2), var(--aur-ac));
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.aur-badge {
  display: inline-block;
  background: linear-gradient(90deg, var(--aur-ac), var(--aur-ac-2));
  color: #071020;
  font-weight: 800;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.82rem;
  position: absolute;
  top: -12px;
  left: 16px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.aur-offer-left {
  display: grid;
  grid-template-columns: 220px 1fr;
  grid-template-areas: "logo points" "logo chips";
  gap: 12px 16px;
  align-items: center;
}
.aur-offer-head {
  grid-area: logo;
}
.aur-offer-logo {
  width: 100%;
  min-height: 160px;
  padding: 14px;
  border-radius: 12px;
  border: 1px dashed var(--aur-line);
  background: linear-gradient(180deg, #0e1a36, #0b1428);
  display: grid;
  place-items: center;
}
.aur-offer-logo img {
  max-width: 100%;
  width: 100%;
  object-fit: contain;
}

.aur-points {
  grid-area: points;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.95rem;
}
.aur-points li {
  position: relative;
  padding-left: 16px;
  margin: 0;
}
.aur-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 10px;
  height: 10px;
  background-image: linear-gradient(135deg, var(--aur-ac), var(--aur-ac-2));
  transform: rotate(45deg);
}
.aur-points li:nth-child(n + 3) {
  display: none;
}

.aur-chips {
  grid-area: chips;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 0;
}
.aur-chip {
  font-size: 0.78rem;
  border: 1px solid var(--aur-line);
  border-radius: 999px;
  padding: 6px 10px;
  background: #0c1731;
  color: #dfe6fa;
  transition: transform 0.15s ease, background-color 0.2s ease,
    border-color 0.2s ease;
}
.aur-chip:hover {
  transform: translateY(-1px);
  background: #112042;
}

.aur-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  justify-content: center;
}
.aur-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}
.aur-stars {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 2px;
}
.aur-stars-base {
  color: #2d3a57;
}
.aur-stars-fill {
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
  overflow: hidden;
  color: #facc15;
  pointer-events: none;
}
.aur-score {
  font-weight: 700;
}

/* CTA — gold for higher contrast */
.aur-cta {
  display: inline-block;
  text-align: center;
  padding: 14px 22px;
  border-radius: 999px;
  color: var(--aur-fg) !important;
  background: var(--aur-ac);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.2px;
  transition: transform 0.15s ease, filter 0.2s, box-shadow 0.2s ease;
}
.aur-cta:hover,
.aur-cta:focus-visible {
  filter: brightness(1.05);
  transform: translateY(-1px);
}
.aur-cta::after {
  content: "⟶";
  margin-left: 0.6ch;
}

.aur-cta-note {
  display: block;
  color: #93a9d8;
  text-align: right;
  font-size: 0.85rem;
}

/* Sections */
.aur-guide,
.aur-anj,
.aur-compare,
.aur-reviews,
.aur-pay,
.aur-games,
.aur-trust,
.aur-calendar,
.aur-stats,
.aur-gloss {
  padding: 24px 0;
}

/* Unified card style */
.aur-guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}
.aur-guide article,
.aur-review,
.aur-game {
  background: var(--aur-card);
  border: 1px solid var(--aur-line);
  border-radius: 14px;
  padding: 14px;
  position: relative;
  box-shadow: none;
}
.aur-guide article::before,
.aur-review::before,
.aur-game::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: -1px;
  height: 3px;
  background: linear-gradient(90deg, var(--aur-ac), var(--aur-ac-2));
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.aur-game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

/* ANJ */
.aur-anj p {
  display: inline-block;
  background: #0c1731;
  border: 1px solid var(--aur-line);
  border-radius: 12px;
  padding: 12px;
}
.aur-anj-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}
.aur-anj-list li {
  background: #0c1731;
  border: 1px solid var(--aur-line);
  border-radius: 12px;
  padding: 12px 12px 12px 30px;
  position: relative;
}
.aur-anj-list li::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 12px;
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, var(--aur-ac), var(--aur-ac-2));
  transform: rotate(45deg);
}

/* Glossaire unified geometry */
.aur-gloss .aur-dl {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}
.aur-gloss dt,
.aur-gloss dd {
  background: #0c1731;
  border: 1px solid var(--aur-line);
  margin: 0;
}
.aur-gloss dt {
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 800;
}
.aur-gloss dd {
  border-top: none;
  border-radius: 14px;
  padding: 12px 14px;
  color: #dfe6fb;
}

/* Compare */
.aur-compare-grid {
  display: grid;
  gap: 8px;
  border: 1px solid var(--aur-line);
  border-radius: 12px;
  background: var(--aur-card);
  padding: 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.aur-compare-grid > [role="row"] {
  min-width: 720px;
}
.aur-compare-head {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1.6fr;
  gap: 10px;
  font-weight: 800;
  color: #d9e2f7;
  background: #13244a;
  border: 1px solid var(--aur-line);
  border-radius: 10px;
  padding: 10px;
}
.aur-compare-grid [role="row"]:not(.aur-compare-head) {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1.6fr;
  gap: 10px;
  border: 1px dashed var(--aur-line);
  border-radius: 10px;
  padding: 10px;
  background: #0f1a33;
}

/* Pay */
.aur-paylist {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.aur-paylist li {
  border: 1px dashed var(--aur-line);
  border-radius: 8px;
  padding: 8px 12px;
  background: #0c1731;
  transition: transform 0.15s ease, background-color 0.2s ease;
}
.aur-paylist li:hover {
  transform: translateY(-1px);
  background: #112042;
}
.aur-pay-note {
  color: #94a0bf;
}

/* Trust */
.aur-trustpoints {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.aur-trustpoints li {
  background: #0f1a33;
  border: 1px solid var(--aur-line);
  border-radius: 12px;
  padding: 12px;
  position: relative;
}

/* Calendar */
.aur-calendar-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.aur-calendar-list li {
  position: relative;
  margin: 0.5rem 0;
  padding-left: 18px;
}
.aur-calendar-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 10px;
  height: 10px;
  background: linear-gradient(90deg, var(--aur-ac), var(--aur-ac-2));
  transform: rotate(45deg);
}

/* Stats chips */
.aur-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}
.aur-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #0f1a33;
  border: 1px solid var(--aur-line);
  border-radius: 999px;
  padding: 10px 14px;
}
.aur-stat::before {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, var(--aur-ac), var(--aur-ac-2));
  transform: rotate(45deg);
  border-radius: 2px;
}
.aur-stat-figure {
  font-size: 1.3rem;
  font-weight: 800;
  color: #60a5fa;
}
.aur-stat p {
  margin: 0;
  color: #c6d4f5;
}

/* Footer */
.aur-footer {
  margin-top: 24px;
  border-top: 1px solid var(--aur-line);
  background: linear-gradient(180deg, #0b1124, #09162a);
}
.aur-foot-top {
  display: grid;
  grid-template-columns: 350px 1fr 0.6fr;
  gap: 18px;
  align-items: start;
  justify-content: space-between;
  padding: 26px 0 16px;
}
.aur-legal-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  background: #0f1a33;
  border: 1px solid var(--aur-line);
  border-radius: 12px;
  padding: 12px;
}
.aur-legal-logos-link {
  flex: 0 0 100px;
  width: 100px;
  height: 100px;
  background: #0c1731;
  border: 1px solid var(--aur-line);
  border-radius: 10px;
  padding: 10px;
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.aur-legal-logos-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--aur-shadow);
}
.aur-legal-logos-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.aur-foot-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 10px;
}
.aur-foot-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #f0f6ff;
  text-decoration: none;
  padding: 10px 12px;
  border: 1px solid var(--aur-line);
  border-radius: 10px;
  background: #0c1731;
  min-height: 44px;
}
.aur-foot-links a::after {
  content: "↗";
  color: #93c5fd;
}
.aur-foot-links a:hover {
  background: #112042;
  border-color: #2e3c5d;
}

.aur-legal-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.aur-legal-nav a {
  display: inline-block;
  color: #c9d6f5;
  text-decoration: none;
  padding: 8px 12px;
  border: 1px dashed var(--aur-line);
  border-radius: 999px;
}
.aur-legal-nav a:hover {
  border-style: solid;
  border-color: #3b82f6;
  color: #f6faff;
}

.aur-disclaimer {
  color: #9aa6c6;
  margin-top: 8px;
}
.aur-foot-btm {
  border-top: 1px solid var(--aur-line);
  padding: 10px 0;
  margin-top: 6px;
}
.aur-copy {
  color: #97a3c4;
  font-size: 0.92rem;
}

/* Reveal */
.will-in {
  opacity: 0;
  transform: translateY(8px);
}
.is-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* Mobile nav — fullscreen */
@media (max-width: 900px) {
  .aur-burger {
    display: grid;
  }
  .aur-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(10, 16, 32, 0.98);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 24px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s ease, opacity 0.28s ease;
    z-index: 55;
  }
  .aur-nav ul {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .aur-nav li {
    opacity: 0;
    transform: translateX(8px);
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  body.nav-open .aur-nav {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  body.nav-open .aur-nav li {
    opacity: 1;
    transform: none;
  }
  body.nav-open .aur-nav li:nth-child(1) {
    transition-delay: 0.06s;
  }
  body.nav-open .aur-nav li:nth-child(2) {
    transition-delay: 0.12s;
  }
  body.nav-open .aur-nav li:nth-child(3) {
    transition-delay: 0.18s;
  }
  body.nav-open .aur-nav li:nth-child(4) {
    transition-delay: 0.24s;
  }
  body.nav-open .aur-nav li:nth-child(5) {
    transition-delay: 0.3s;
  }

  .aur-offer {
    grid-template-columns: 1fr;
  }
  .aur-right {
    align-items: flex-start;
  }
  .aur-offer-left {
    grid-template-columns: 1fr;
    grid-template-areas: "logo" "points" "chips";
    align-items: start;
  }
  .aur-offer-logo {
    width: 320px;
    height: 120px;
  }
  .aur-foot-top {
    grid-template-columns: 1fr;
  }
  .aur-foot-links {
    grid-template-columns: 1fr;
  }
}
