:root {
  --bg:#f4f2ef;
  --ink:#0b0b0b;
  --muted:rgba(11,11,11,.65);
  --line:rgba(11,11,11,.18);
  --paper:#ffffff;
  --panel:#0b0b0b;
  --panelInk:#ffffff;
  --max:1120px;
  --radius:18px;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body.an {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
}

.an-container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px;
}

.an-main {
  padding: 22px 0 60px;
}

.an-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(244, 242, 239, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.an-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.an-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}

.an-brand__text {
  font-weight: 900;
  letter-spacing: 0.08em;
  font-size: 12px;
}

.an-nav__links {
  display: flex;
  gap: 16px;
  align-items: center;
}

.an-nav__links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  opacity: 0.9;
}

.an-nav__links a:hover {
  opacity: 1;
}

.an-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 13px;
}

.an-btn--primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.an-kicker {
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 12px;
  opacity: 0.75;
}

.an-subkicker {
  font-size: 12px;
  opacity: 0.55;
  margin-top: 4px;
}

.an-label {
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 10px;
}

.an-muted {
  color: var(--muted);
}

.an-list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.an-list li {
  margin: 6px 0;
}

.an-hero {
  padding: 26px 0 40px;
}

.an-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 26px;
  align-items: stretch;
}

.an-hero__meta {
  padding-top: 10px;
}

.an-hero__message {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 2px solid var(--ink);
  max-width: 420px;
}

.an-hero__message p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.an-hero__media {
  position: relative;
  min-height: 520px;
}

.an-hero__year {
  position: absolute;
  right: -4px;
  top: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-weight: 900;
  font-size: 52px;
  letter-spacing: 0.12em;
  opacity: 0.9;
}

.an-hero__frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  min-height: 520px;
}

.an-hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}

.an-hero__title {
  position: absolute;
  left: 22px;
  bottom: 22px;
  font-weight: 900;
  font-size: 54px;
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--paper);
  mix-blend-mode: screen;
  text-transform: uppercase;
}

.an-hero__card {
  position: absolute;
  right: -30px;
  bottom: -22px;
  width: min(320px, 86%);
  background: var(--panel);
  color: var(--panelInk);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.an-hero__cardTitle {
  font-weight: 800;
  opacity: 0.9;
  margin-bottom: 10px;
}

.an-hero__card p {
  margin: 0;
  opacity: 0.8;
  line-height: 1.45;
  font-size: 13px;
}

.an-split {
  margin-top: 46px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.an-split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.an-split__left {
  background: var(--panel);
  color: var(--panelInk);
  padding: 34px;
  display: flex;
  align-items: flex-end;
}

.an-split__stack {
  display: flex;
  gap: 18px;
  align-items: flex-end;
}

.an-vertical {
  writing-mode: vertical-rl;
  font-weight: 900;
  letter-spacing: 0.14em;
  opacity: 0.9;
}

.an-huge {
  font-weight: 900;
  font-size: 78px;
  line-height: 0.85;
  letter-spacing: 0.02em;
}

.an-split__right {
  background: var(--paper);
}

.an-split__rightInner {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 34px 22px;
}

.an-card {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.an-card__eyebrow {
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.12em;
  opacity: 0.6;
  text-transform: uppercase;
}

.an-card h2 {
  margin: 10px 0 10px;
  font-size: 28px;
}

.an-card p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.55;
}

.an-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.an-look {
  padding: 54px 0;
}

.an-look__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
}

.an-super {
  font-weight: 900;
  font-size: 86px;
  line-height: 0.9;
  letter-spacing: -0.02em;
}

.an-look__side {
  max-width: 360px;
}

.an-pill {
  display: inline-block;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.22em;
  font-size: 12px;
  margin-bottom: 14px;
}

.an-look__bottom {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 140px;
  gap: 18px;
  align-items: stretch;
}

.an-look__image {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
}

img {
  filter: grayscale(1) contrast(1.05);
}

.an-look__image img {
  max-height: 50vh;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}

.an-look__year {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-left: 1px solid var(--line);
}

.an-yearStack {
  writing-mode: vertical-rl;
  font-weight: 900;
  font-size: 58px;
  letter-spacing: 0.12em;
  opacity: 0.85;
}

.an-arrow {
  position: absolute;
  right: 60px;
  bottom: 22px;
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(45deg);
  opacity: 0.5;
}

.an-editorial {
  padding: 46px 0;
  border-top: 1px solid var(--line);
}

.an-editorial__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.an-editorial__block {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.an-editorial__block h3 {
  margin: 10px 0 10px;
  font-size: 22px;
}

.an-editorial__block p {
  margin: 0;
  line-height: 1.55;
}

.an-editorial__image {
  grid-column: 1/-1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

.an-editorial__image img {
  max-height: 600px;
  width: 100%;
  min-width: 100vw;
  height: auto;
  display: block;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}

.an-cta {
  padding: 54px 0;
}

.an-cta__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}

.an-cta__inner h2 {
  margin: 8px 0 10px;
  font-size: 30px;
}

.an-cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.an-footer {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

.bolder-game {
  font-weight: 900;
  color: #0b0b0b !important;
}

.an-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.an-footer__title {
  font-weight: 900;
  letter-spacing: 0.08em;
  font-size: 12px;
}

.an-footer__muted {
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}

.an-footer__right {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.an-footer__right a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  opacity: 0.85;
}

.an-footer__right a:hover {
  opacity: 1;
}

.an-footer__dot {
  opacity: 0.4;
}

@media (max-width: 980px) {
  .an-hero__grid {
    grid-template-columns: 1fr;
  }
  .an-hero__media {
    min-height: 440px;
  }
  .an-hero__title {
    font-size: 44px;
  }
  .an-split__grid {
    grid-template-columns: 1fr;
  }
  .an-cols {
    grid-template-columns: 1fr;
  }
  .an-look__top {
    flex-direction: column;
  }
  .an-super {
    font-size: 64px;
  }
  .an-look__bottom {
    grid-template-columns: 1fr;
  }
  .an-look__year {
    border-left: none;
    border-top: 1px solid var(--line);
    padding: 18px;
  }
  .an-yearStack {
    writing-mode: horizontal-tb;
  }
  .an-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
* {
  border-radius: 0 !important;
}
* * {
  border-radius: 0 !important;
}

.glitch {
  position: relative;
  overflow: hidden;
}

.glitch img {
  position: relative;
  z-index: 1;
  display: block;
}

.glitch__layers {
  position: absolute;
  z-index: 2;
  left: 0 !important;
  right: 0;
  top: 0;
  bottom: 0;
  min-width: 100vw;
  opacity: 0.22;
  height: auto !important;
  filter: invert(40%) contrast(175%) brightness(3%);
}

.glitch__layer {
  position: absolute;
  left: 0 !important;
  right: 0;
  top: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover !important;
}

.glitch__layer:nth-child(1) {
  min-width: 100vw;
  transform: translateX(-5%);
  animation: glitch-anim-1 2s infinite linear alternate;
}

.glitch__layer:nth-child(2) {
  min-width: 100vw;
  transform: translateX(3%) translateY(3%);
  animation: glitch-anim-2 2.3s -0.8s infinite linear alternate;
}

.glitch__layer:nth-child(3) {
  min-width: 100vw;
  transform: translateX(5%);
  animation: glitch-anim-flash 1s infinite linear;
}

@keyframes glitch-anim-1 {
  0% {
    clip-path: polygon(0 0%, 100% 0%, 100% 5%, 0 5%);
  }
  10% {
    clip-path: polygon(0 15%, 100% 15%, 100% 15%, 0 15%);
  }
  20% {
    clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%);
  }
  30% {
    clip-path: polygon(0 1%, 100% 1%, 100% 2%, 0 2%);
  }
  40% {
    clip-path: polygon(0 35%, 100% 35%, 100% 35%, 0 35%);
  }
  50% {
    clip-path: polygon(0 45%, 100% 45%, 100% 46%, 0 46%);
  }
  60% {
    clip-path: polygon(0 50%, 100% 50%, 100% 70%, 0 70%);
  }
  70% {
    clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
  }
  80% {
    clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
  }
  90% {
    clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
  }
  100% {
    clip-path: polygon(0 60%, 100% 60%, 100% 70%, 0 70%);
  }
}
@keyframes glitch-anim-2 {
  0% {
    clip-path: polygon(0 15%, 100% 15%, 100% 30%, 0 30%);
  }
  15% {
    clip-path: polygon(0 3%, 100% 3%, 100% 3%, 0 3%);
  }
  25% {
    clip-path: polygon(0 8%, 100% 8%, 100% 20%, 0 20%);
  }
  30% {
    clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%);
  }
  45% {
    clip-path: polygon(0 45%, 100% 45%, 100% 45%, 0 45%);
  }
  50% {
    clip-path: polygon(0 50%, 100% 50%, 100% 57%, 0 57%);
  }
  65% {
    clip-path: polygon(0 60%, 100% 60%, 100% 60%, 0 60%);
  }
  75% {
    clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
  }
  80% {
    clip-path: polygon(0 40%, 100% 40%, 100% 60%, 0 60%);
  }
  95% {
    clip-path: polygon(0 45%, 100% 45%, 100% 60%, 0 60%);
  }
  100% {
    clip-path: polygon(0 11%, 100% 11%, 100% 15%, 0 15%);
  }
}
@keyframes glitch-anim-flash {
  0% {
    opacity: 0.2;
  }
  30%, 100% {
    opacity: 0;
  }
}
.an-sponsor-image__footer {
  position: relative;
  width: 136px;
}
.an-sponsor-image__footer::after {
  content: "official sponsor";
  position: relative;
  left: 0;
  top: -15px;
  bottom: 0;
  display: inline-block;
  width: 120px;
  font-size: 12px;
  z-index: 1099;
  color: #f2f2f2;
  text-transform: uppercase;
  background-color: #ff5f00;
  padding: 8px;
}

.img-fluid.img-blocked {
  min-width: 100%;
  height: auto !important;
  object-fit: contain;
  max-height: 136px;
  background-color: black;
  border-radius: 0 !important;
  border: 0;
  border-color: transparent !important;
  filter: grayscale(0) !important;
}

/*# sourceMappingURL=main.app.css.map */
