/* ============================================================
   ExitGaming — Lineage 2 Reborn Clan
   ============================================================
   Sections:
     1. Reset & CSS variables
     2. Typography
     3. Layout & utilities
     4. Navigation
     5. Hero + embers + grain + vignette
     6. About
     7. Timeline
     8. Videos + modal
     9. Leaders
    10. Join (form + success)
    11. Contact
    12. Footer
    13. Responsive breakpoints
    14. prefers-reduced-motion
   ============================================================ */


/* ============================================================
   1. RESET & CSS VARIABLES
   ============================================================ */
:root {
  --c-black: #0B0B0B;
  --c-coal:  #141414;
  --c-coal-light: #1c1c1c;
  --c-blood: #B30000;
  --c-deep:  #7A0000;
  --c-ember: #FF4500;
  --c-ice:   #F5F5F5;
  --c-gray:  #8A8A8A;
  --c-gray-dark: #3a3a3a;

  --f-display: 'Cinzel', 'Times New Roman', serif;
  --f-body: 'Cormorant Garamond', Georgia, serif;
  --f-mono: 'JetBrains Mono', 'Courier New', monospace;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 240ms;
  --t-med:  500ms;
  --t-slow: 900ms;

  --nav-h: 72px;
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--c-black);
  color: var(--c-ice);
  font-family: var(--f-body);
  font-size: 18px;
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast) var(--ease);
}

a:hover {
  color: var(--c-blood);
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--c-blood);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* noscript */
.noscript-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--c-blood);
  color: var(--c-ice);
  font-family: var(--f-mono);
  font-size: 13px;
  padding: 12px 16px;
  text-align: center;
  z-index: 9999;
}


/* ============================================================
   2. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.15;
  color: var(--c-ice);
}

h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.75rem); letter-spacing: 0.12em; }

.eyebrow {
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-blood);
  margin-bottom: 14px;
}

.section-title {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
}

.section-lede {
  font-family: var(--f-body);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--c-gray);
  max-width: 640px;
  margin: 0 0 48px;
}


/* ============================================================
   3. LAYOUT & UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section {
  position: relative;
  padding: clamp(80px, 12vh, 140px) 0;
}

/* Reveal-on-scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
  will-change: opacity, transform;
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid currentColor;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
  background: transparent;
  color: var(--c-ice);
}

.btn--ghost {
  border-color: rgba(245, 245, 245, 0.4);
}

.btn--ghost:hover {
  color: var(--c-blood);
  border-color: var(--c-blood);
  background: rgba(179, 0, 0, 0.06);
}

.btn--filled {
  background: var(--c-blood);
  color: var(--c-ice);
  border-color: var(--c-blood);
}

.btn--filled:hover {
  background: var(--c-deep);
  border-color: var(--c-deep);
  color: var(--c-ice);
  box-shadow: 0 0 28px rgba(179, 0, 0, 0.55);
}

.btn--small {
  padding: 12px 22px;
  font-size: 11px;
}

.btn--submit {
  width: 100%;
}

/* Film grain (SVG noise overlay) */
.film-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.9 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* Global vignette */
.vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 8000;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.55) 100%);
}


/* ============================================================
   4. NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  transition: background var(--t-fast) var(--ease),
              backdrop-filter var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  background: rgba(11, 11, 11, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(179, 0, 0, 0.35);
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--c-ice);
}

.nav__brand-icon {
  width: 28px; height: 28px;
  color: var(--c-blood);
}

.nav__brand-logo {
  display: block;
  height: 44px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(179, 0, 0, 0.4));
  transition: filter var(--t-fast) var(--ease);
}

.nav__brand:hover .nav__brand-logo {
  filter: drop-shadow(0 0 18px rgba(179, 0, 0, 0.7));
}

.nav__brand-text {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.28em;
}

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

.nav__links a {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-ice);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--c-blood);
  transition: width var(--t-fast) var(--ease);
}

.nav__links a:hover::after { width: 100%; }

.nav__cta {
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 10px 22px;
  background: var(--c-blood);
  color: var(--c-ice);
  border: 1px solid var(--c-blood);
  transition: all var(--t-fast) var(--ease);
}

.nav__cta:hover {
  background: var(--c-deep);
  color: var(--c-ice);
  box-shadow: 0 0 18px rgba(179, 0, 0, 0.5);
}

.nav__cta--mobile { display: none; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav__burger span {
  width: 26px;
  height: 1.5px;
  background: var(--c-ice);
  transition: transform var(--t-fast) var(--ease), opacity var(--t-fast) var(--ease);
}

.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ============================================================
   5. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: var(--nav-h) var(--gutter) 90px;
  background:
    radial-gradient(ellipse 60% 40% at 50% 38%, #2a0808 0%, #140303 35%, var(--c-black) 70%),
    radial-gradient(ellipse at 50% 100%, #1a0000 0%, var(--c-black) 60%);
}

.hero__bg-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  will-change: transform;
}

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

.hero__smoke {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 25% 80%, rgba(179, 0, 0, 0.15), transparent 45%),
    radial-gradient(circle at 75% 70%, rgba(122, 0, 0, 0.12), transparent 50%),
    radial-gradient(circle at 50% 30%, rgba(0, 0, 0, 0.6), transparent 55%);
  filter: blur(30px);
}

.hero__embers {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
  display: block;
}

.hero__content {
  position: relative;
  max-width: 900px;
  padding: 40px 0;
}

/* Make sure interactive hero items render above the embers canvas (z:3),
   while leaving the empty whitespace around them transparent so the
   embers stay visible across the whole hero. */
.hero__title-img,
.hero__divider,
.hero__tagline,
.hero__ctas,
.hero__countdown,
.hero__meta {
  position: relative;
  z-index: 4;
}

.hero__skull {
  width: clamp(120px, 16vw, 180px);
  height: clamp(120px, 16vw, 180px);
  margin: 0 auto 32px;
  color: var(--c-blood);
  animation: breathe 4s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(179, 0, 0, 0.45));
}

.hero__skull svg { width: 100%; height: 100%; }

/* Hero logo image — replaces title + skull */
.hero__title-img {
  position: relative;
  display: block;
  margin: 0 auto 28px;
  max-width: 360px;
  width: 70%;
  font-size: 0; /* h1 wrapper, no visible text */
  line-height: 0;
  animation: breathe 4s ease-in-out infinite;
}

.hero__title-img::before {
  content: '';
  position: absolute;
  inset: -40%;
  background: radial-gradient(ellipse 60% 55% at 50% 50%, rgba(179, 0, 0, 0.4) 0%, rgba(179, 0, 0, 0.15) 40%, transparent 75%);
  z-index: -1;
  pointer-events: none;
}

.hero__logo {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 40px rgba(179, 0, 0, 0.55));
}

@keyframes breathe {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 30px rgba(179, 0, 0, 0.45));
  }
  50% {
    transform: scale(1.04);
    filter: drop-shadow(0 0 50px rgba(179, 0, 0, 0.75));
  }
}

.hero__title {
  font-size: clamp(2.8rem, 9vw, 6.5rem);
  font-weight: 900;
  letter-spacing: 0.16em;
  background: linear-gradient(to bottom, #ffffff 0%, var(--c-ice) 50%, #707070 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 28px;
  text-shadow: 0 0 60px rgba(179, 0, 0, 0.2);
}

.hero__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 32px;
  color: var(--c-blood);
}

.hero__divider-line {
  width: clamp(40px, 8vw, 100px);
  height: 1px;
  background: linear-gradient(to right, transparent, var(--c-blood), transparent);
}

.hero__divider-mark {
  font-size: 18px;
  color: var(--c-blood);
}

.hero__tagline {
  font-family: var(--f-body);
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  line-height: 1.4;
  margin-bottom: 48px;
  font-weight: 300;
}

.hero__tagline em {
  color: var(--c-blood);
  font-style: italic;
  font-weight: 400;
}

.hero__tagline span {
  color: var(--c-ice);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 56px;
}

.hero__meta {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--c-gray);
}

/* Hero countdown */
.hero__countdown {
  margin: 0 auto 36px;
  max-width: 560px;
}

.hero__countdown-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-blood);
  margin-bottom: 14px;
}

.hero__countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.hero__countdown-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 4px 12px;
  background: rgba(20, 20, 20, 0.7);
  border: 1px solid var(--c-gray-dark);
  border-top: 2px solid var(--c-blood);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  min-width: 0;
  overflow: hidden;
}

.hero__countdown-num {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  letter-spacing: 0.04em;
  color: var(--c-ice);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.hero__countdown-sub {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-gray);
  margin-top: 6px;
}

.hero__meta span {
  color: var(--c-blood);
  margin: 0 8px;
}

.hero__meta-link {
  color: var(--c-ice);
  border-bottom: 1px solid transparent;
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}

.hero__meta-link:hover {
  color: var(--c-blood);
  border-bottom-color: var(--c-blood);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--c-gray);
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--c-blood), transparent);
  animation: scrollLine 2.4s ease-in-out infinite;
}

.hero__scroll-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 0.9; transform-origin: top; }
  50% { transform: scaleY(0.3); opacity: 0.3; transform-origin: top; }
}


/* ============================================================
   6. ABOUT
   ============================================================ */
.about {
  background: var(--c-black);
}

.about__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
  margin-top: 48px;
}

.about__copy p {
  margin-bottom: 24px;
  font-size: 1.15rem;
  line-height: 1.75;
  color: #d0d0d0;
}

.about__copy p.about__beat {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  letter-spacing: 0.04em;
  color: var(--c-ice);
  text-align: left;
  padding-left: 18px;
  border-left: 2px solid var(--c-blood);
  margin-top: 8px;
  margin-bottom: 32px;
  line-height: 1.4;
}

.about__quote {
  position: relative;
  margin-top: 32px;
  padding: 24px 32px 24px 56px;
  border-left: 2px solid var(--c-blood);
  background: linear-gradient(to right, rgba(179, 0, 0, 0.04), transparent);
}

.about__quote-mark {
  position: absolute;
  left: 14px;
  top: -10px;
  font-family: var(--f-display);
  font-size: 80px;
  color: var(--c-blood);
  line-height: 1;
  opacity: 0.65;
}

.about__quote p {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.about__stats {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 32px;
  background: var(--c-coal);
  border: 1px solid var(--c-gray-dark);
  border-top: 2px solid var(--c-blood);
}

.stat {
  text-align: center;
  padding: 16px 8px;
}

.stat__num {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--c-blood);
  line-height: 1;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.stat__label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-gray);
}


/* ============================================================
   7. TIMELINE
   ============================================================ */
.timeline {
  background: var(--c-black);
  position: relative;
}

.timeline__list {
  list-style: none;
  position: relative;
  margin-top: 64px;
  padding: 24px 0;
}

/* Central vertical line */
.timeline__list::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--c-blood) 10%,
    var(--c-deep) 90%,
    transparent 100%
  );
  transform: translateX(-50%);
}

.timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  margin-bottom: 56px;
}

.timeline__item:nth-child(odd) .timeline__card {
  grid-column: 1;
  margin-right: 32px;
  text-align: right;
}

.timeline__item:nth-child(even) .timeline__card {
  grid-column: 3;
  margin-left: 32px;
  text-align: left;
}

/* Diamond node on center line */
.timeline__item::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 32px;
  width: 14px; height: 14px;
  background: var(--c-blood);
  transform: translate(-50%, 0) rotate(45deg);
  box-shadow: 0 0 18px rgba(179, 0, 0, 0.7);
  z-index: 2;
}

.timeline__card {
  background: var(--c-coal);
  border: 1px solid var(--c-gray-dark);
  padding: 28px 28px 24px;
  transition: border-color var(--t-fast) var(--ease),
              transform var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease);
  position: relative;
}

.timeline__card:hover {
  border-color: var(--c-blood);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.timeline__year {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(2rem, 3.6vw, 2.75rem);
  letter-spacing: 0.06em;
  -webkit-text-stroke: 1.2px var(--c-blood);
  color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}

.timeline__tag {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-blood);
  margin-bottom: 12px;
}

.timeline__title {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.timeline__card p {
  font-size: 1.05rem;
  color: #c8c8c8;
  line-height: 1.65;
}

.timeline__link {
  color: var(--c-blood);
  border-bottom: 1px solid rgba(179, 0, 0, 0.4);
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}

.timeline__link:hover {
  color: var(--c-ice);
  border-bottom-color: var(--c-ice);
}

/* The Return card — emphasized */
.timeline__item--return .timeline__card {
  border: 1px solid var(--c-blood);
  background: linear-gradient(135deg, rgba(179, 0, 0, 0.1), var(--c-coal));
  box-shadow: 0 0 32px rgba(179, 0, 0, 0.25);
}

.timeline__item--return::before {
  width: 18px; height: 18px;
  top: 28px;
  background: var(--c-blood);
  box-shadow: 0 0 24px rgba(179, 0, 0, 0.9);
  animation: pulse-node 1.8s ease-in-out infinite;
}

@keyframes pulse-node {
  0%, 100% { box-shadow: 0 0 16px rgba(179, 0, 0, 0.7); }
  50% { box-shadow: 0 0 36px rgba(179, 0, 0, 1); }
}

.timeline__item--return .timeline__year {
  -webkit-text-stroke: 1.5px var(--c-blood);
  text-shadow: 0 0 22px rgba(179, 0, 0, 0.45);
}


/* ============================================================
   8. VIDEOS + MODAL
   ============================================================ */
.videos {
  background: linear-gradient(180deg, var(--c-black) 0%, #0a0a0a 100%);
}

.videos__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}

.filter-btn {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid var(--c-gray-dark);
  color: var(--c-gray);
  background: transparent;
  transition: all var(--t-fast) var(--ease);
}

.filter-btn:hover {
  color: var(--c-ice);
  border-color: var(--c-gray);
}

.filter-btn.is-active {
  background: var(--c-blood);
  border-color: var(--c-blood);
  color: var(--c-ice);
  box-shadow: 0 0 18px rgba(179, 0, 0, 0.4);
}

.videos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.video-card {
  position: relative;
  background: var(--c-coal);
  border: 1px solid var(--c-gray-dark);
  cursor: pointer;
  overflow: hidden;
  transition: transform var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease),
              opacity var(--t-med) var(--ease);
}

.video-card.is-hidden {
  display: none;
}

.video-card:hover,
.video-card:focus-within {
  border-color: var(--c-blood);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6),
              0 0 22px rgba(179, 0, 0, 0.25);
}

.video-card__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.video-card__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(40%) brightness(0.75);
  transition: filter var(--t-med) var(--ease),
              transform var(--t-slow) var(--ease);
}

.video-card:hover .video-card__thumb img,
.video-card:focus-within .video-card__thumb img {
  filter: grayscale(0%) brightness(0.9);
  transform: scale(1.05);
}

.video-card__thumb.is-placeholder {
  background: linear-gradient(135deg, #1a0000 0%, #000 60%, #0a0a0a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-card__thumb.is-placeholder img { display: none; }

.video-card__thumb.is-placeholder::after {
  content: attr(data-placeholder-label);
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--c-blood);
  text-align: center;
  opacity: 0.85;
}

.video-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}

.video-card__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  width: 64px; height: 64px;
  background: var(--c-blood);
  color: var(--c-ice);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t-fast) var(--ease),
              transform var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease);
  pointer-events: none;
}

.video-card__play svg { width: 24px; height: 24px; }

.video-card:hover .video-card__play,
.video-card:focus-within .video-card__play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  box-shadow: 0 0 28px rgba(179, 0, 0, 0.7);
}

.video-card__tag {
  position: absolute;
  top: 12px; right: 12px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: rgba(0, 0, 0, 0.75);
  color: var(--c-blood);
  border: 1px solid var(--c-blood);
  z-index: 2;
}

.video-card__meta {
  padding: 20px;
}

.video-card__title {
  font-size: 1.15rem;
  margin-bottom: 6px;
  letter-spacing: 0.1em;
}

.video-card__sub {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gray);
}

/* Video Modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--t-fast) var(--ease);
}

.video-modal[hidden] { display: none; }

.video-modal.is-open {
  opacity: 1;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.video-modal__panel {
  position: relative;
  width: 100%;
  max-width: 1100px;
  z-index: 1;
}

.video-modal__close {
  position: absolute;
  top: -52px;
  right: 0;
  width: 40px; height: 40px;
  color: var(--c-ice);
  border: 1px solid var(--c-gray-dark);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast) var(--ease);
}

.video-modal__close:hover {
  color: var(--c-blood);
  border-color: var(--c-blood);
}

.video-modal__close svg { width: 20px; height: 20px; }

.video-modal__player {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid var(--c-blood);
  box-shadow: 0 0 60px rgba(179, 0, 0, 0.4);
}

.video-modal__player iframe {
  width: 100%; height: 100%;
  border: 0;
  display: block;
}


/* ============================================================
   9. LEADERS
   ============================================================ */
.leaders {
  background: var(--c-black);
}

.leaders__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 56px auto 0;
}

.leader-card {
  position: relative;
  background: var(--c-coal);
  border: 1px solid var(--c-gray-dark);
  padding: 28px 32px 24px;
  text-align: center;
  transition: border-color var(--t-fast) var(--ease),
              transform var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease);
}

.leaders__motto {
  text-align: center;
  margin: 40px auto 0;
  max-width: 640px;
  font-family: var(--f-body);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.55;
  color: var(--c-gray);
}

.leaders__motto em {
  color: var(--c-ice);
  font-style: italic;
  font-weight: 400;
}

.leader-card:hover {
  border-color: var(--c-blood);
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.55),
              0 0 26px rgba(179, 0, 0, 0.3);
}

.leader-card__rank {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-blood);
  margin-bottom: 16px;
}

.leader-card__skull {
  width: 100px; height: 100px;
  margin: 0 auto 20px;
  color: var(--c-blood);
  filter: drop-shadow(0 0 22px rgba(179, 0, 0, 0.45));
  transition: filter var(--t-fast) var(--ease);
}

.leader-card:hover .leader-card__skull {
  filter: drop-shadow(0 0 32px rgba(179, 0, 0, 0.7));
}

.leader-card__skull svg { width: 100%; height: 100%; }

.leader-card__name {
  font-size: 1.85rem;
  letter-spacing: 0.16em;
  margin-bottom: 0;
}

.leader-card__role {
  font-family: var(--f-body);
  color: var(--c-gray);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.leader-card__role em {
  font-style: italic;
}

.leader-card__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  list-style: none;
  margin-bottom: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--c-gray-dark);
  border-bottom: 1px solid var(--c-gray-dark);
}

.leader-card__stats li {
  display: flex;
  flex-direction: column;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gray);
}

.leader-card__stats span {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--c-ice);
  margin-bottom: 4px;
}

.leader-card__quote p {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--c-ice);
  line-height: 1.45;
}


/* ============================================================
   9.5. CALLBACK — Veteranos volta pro clan
   ============================================================ */
.callback {
  background: var(--c-black);
  position: relative;
  overflow: hidden;
  padding: clamp(60px, 9vh, 100px) 0;
}

.callback::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(179, 0, 0, 0.14), transparent 70%);
  pointer-events: none;
}

.callback__inner {
  position: relative;
  text-align: center;
  max-width: 720px;
  border: 1px solid var(--c-gray-dark);
  border-top: 2px solid var(--c-blood);
  background: linear-gradient(180deg, rgba(179, 0, 0, 0.05), rgba(20, 20, 20, 0.6));
  padding: clamp(36px, 6vw, 56px) clamp(24px, 5vw, 56px);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.callback__eyebrow {
  margin-bottom: 14px;
}

.callback__title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  letter-spacing: 0.12em;
  margin-bottom: 18px;
  color: var(--c-ice);
}

.callback__text {
  font-family: var(--f-body);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.65;
  color: var(--c-gray);
  margin-bottom: 32px;
}

.callback__text em {
  color: var(--c-ice);
  font-style: italic;
  display: inline-block;
  margin-top: 6px;
}

.callback__cta {
  display: inline-flex;
}


/* ============================================================
   10. JOIN — Form + Success
   ============================================================ */
.join {
  background: var(--c-black);
  position: relative;
  overflow: hidden;
}

.join::before,
.join::after {
  content: '';
  position: absolute;
  width: 60vw; height: 60vw;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

.join::before {
  background: radial-gradient(circle, var(--c-blood), transparent 70%);
  top: -20%; left: -20%;
}

.join::after {
  background: radial-gradient(circle, var(--c-deep), transparent 70%);
  bottom: -20%; right: -20%;
}

.join .container {
  position: relative;
  z-index: 1;
}

.join__form {
  max-width: 720px;
  margin: 56px auto 0;
  display: grid;
  gap: 28px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row label,
.form-row legend {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-gray);
  padding: 0;
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row select,
.form-row textarea {
  width: 100%;
  background: var(--c-coal);
  border: 1px solid var(--c-gray-dark);
  color: var(--c-ice);
  font-family: var(--f-body);
  font-size: 1.05rem;
  padding: 14px 16px;
  transition: border-color var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease);
  border-radius: 0;
  -webkit-appearance: none;
}

.form-row textarea {
  resize: vertical;
  min-height: 110px;
  font-family: var(--f-body);
  line-height: 1.55;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: var(--c-gray);
  font-style: italic;
  opacity: 0.7;
}

.form-row select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><polygon points='0,0 12,0 6,8' fill='%23B30000'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 8px;
  padding-right: 40px;
  cursor: pointer;
}

.form-row select option,
.form-row select optgroup {
  background: var(--c-coal);
  color: var(--c-ice);
}

.form-row input:hover,
.form-row select:hover,
.form-row textarea:hover {
  border-color: var(--c-gray);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 0;
  border-color: var(--c-blood);
  background: var(--c-coal-light);
  box-shadow: 0 0 0 3px rgba(179, 0, 0, 0.18);
}

.form-row--radio fieldset {
  border: 0;
  padding: 0;
}

.radio-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 6px;
}

.radio-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 18px 18px 16px;
  background: var(--c-coal);
  border: 1px solid var(--c-gray-dark);
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
}

.radio-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-card__title {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-ice);
}

.radio-card__sub {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--c-gray);
}

.radio-card:hover {
  border-color: var(--c-gray);
}

.radio-card:has(input:checked),
.radio-card.is-selected {
  border-color: var(--c-blood);
  background: linear-gradient(135deg, rgba(179, 0, 0, 0.1), var(--c-coal));
  box-shadow: 0 0 22px rgba(179, 0, 0, 0.25);
}

.radio-card:has(input:checked) .radio-card__title,
.radio-card.is-selected .radio-card__title {
  color: var(--c-blood);
}

.radio-card:focus-within {
  border-color: var(--c-blood);
}

/* Success state */
.join__success {
  max-width: 540px;
  margin: 56px auto 0;
  text-align: center;
  padding: 48px 32px;
  background: var(--c-coal);
  border: 1px solid var(--c-blood);
  box-shadow: 0 0 50px rgba(179, 0, 0, 0.25);
}

.join__success-skull {
  width: 110px; height: 110px;
  margin: 0 auto 24px;
  color: var(--c-blood);
  animation: breathe 4s ease-in-out infinite;
}

.join__success-skull svg { width: 100%; height: 100%; }

.join__success-logo {
  display: block;
  max-width: 160px;
  width: 60%;
  height: auto;
  margin: 0 auto 24px;
  filter: drop-shadow(0 0 22px rgba(179, 0, 0, 0.5));
  animation: breathe 4s ease-in-out infinite;
}

.join__success h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  letter-spacing: 0.18em;
}

.join__success p {
  color: var(--c-gray);
  margin-bottom: 12px;
}

.join__success-meta {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-blood);
  margin-top: 20px;
}


/* ============================================================
   11. CONTACT
   ============================================================ */
.contact {
  background: var(--c-black);
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 56px auto 0;
  max-width: 880px;
}

.contact-card {
  position: relative;
  background: var(--c-coal);
  border: 1px solid var(--c-gray-dark);
  padding: 32px 28px;
  display: block;
  text-align: left;
  transition: transform var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease);
  color: var(--c-ice);
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--c-blood);
  transition: width var(--t-med) var(--ease);
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-blood);
  color: var(--c-ice);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.55);
}

.contact-card[aria-disabled="true"] {
  cursor: default;
  opacity: 0.8;
}

.contact-card[aria-disabled="true"]:hover {
  transform: none;
  border-color: var(--c-gray-dark);
  box-shadow: none;
}

.contact-card[aria-disabled="true"]::before { display: none; }

.contact-card:hover::before { width: 100%; }

.contact-card__icon {
  width: 38px; height: 38px;
  color: var(--c-blood);
  margin-bottom: 20px;
}

.contact-card__icon svg { width: 100%; height: 100%; }

.contact-card h3 {
  font-size: 1.2rem;
  letter-spacing: 0.18em;
  margin-bottom: 10px;
}

.contact-card p {
  font-size: 0.98rem;
  color: var(--c-gray);
  margin-bottom: 18px;
  line-height: 1.5;
}

.contact-card__cta {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-blood);
}

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

.contact-card__form input,
.contact-card__form textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--c-gray-dark);
  color: var(--c-ice);
  font-family: var(--f-body);
  font-size: 1rem;
  padding: 8px 0;
  border-radius: 0;
}

.contact-card__form input:focus,
.contact-card__form textarea:focus {
  outline: 0;
  border-bottom-color: var(--c-blood);
}

.contact-card__form textarea {
  resize: vertical;
  min-height: 60px;
}

.contact-card__sent {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-blood);
  margin-top: 8px;
}


/* ============================================================
   12. FOOTER
   ============================================================ */
.footer {
  background: #050505;
  padding: 80px 0 48px;
  border-top: 1px solid var(--c-gray-dark);
  position: relative;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.footer__skull {
  width: 80px; height: 80px;
  color: var(--c-blood);
  filter: drop-shadow(0 0 22px rgba(179, 0, 0, 0.5));
  margin-bottom: 12px;
}

.footer__skull svg { width: 100%; height: 100%; }

.footer__logo {
  display: block;
  max-width: 200px;
  width: 50%;
  height: auto;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 22px rgba(179, 0, 0, 0.45));
}

.footer__brand {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  letter-spacing: 0.28em;
  color: var(--c-ice);
}

.footer__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 12px 0 16px;
  color: var(--c-blood);
}

.footer__divider-line {
  width: 80px; height: 1px;
  background: linear-gradient(to right, transparent, var(--c-blood), transparent);
}

.footer__divider-mark { font-size: 14px; }

.footer__slogan {
  font-family: var(--f-body);
  font-size: 1.15rem;
}

.footer__slogan em {
  color: var(--c-blood);
  font-style: italic;
}

.footer__copy {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gray);
  margin-top: 16px;
}


/* ============================================================
   13. RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 1024px) {
  .videos__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
  .about__grid { grid-template-columns: 1fr; }
  .about__stats { position: static; max-width: 560px; margin: 0 auto; }
}

@media (max-width: 820px) {
  .nav__links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    padding: 28px 0;
    background: rgba(11, 11, 11, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(179, 0, 0, 0.3);
    transform: translateY(-110%);
    transition: transform var(--t-med) var(--ease);
  }
  .nav__links.is-open { transform: translateY(0); }

  .nav__links a {
    padding: 18px var(--gutter);
    width: 100%;
    border-bottom: 1px solid var(--c-gray-dark);
  }
  .nav__links a::after { display: none; }

  .nav__cta { display: none; }
  .nav__cta--mobile {
    display: inline-flex !important;
    align-self: center;
    width: auto !important;
    margin-top: 20px;
  }
  .nav__burger { display: flex; }

  /* Hero: compact on tablet/mobile */
  .hero__title-img { max-width: 280px; width: 65%; }
  .hero__tagline { font-size: clamp(1.15rem, 4vw, 1.5rem); margin-bottom: 36px; }
  .hero__countdown-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  /* Force countdown visible on mobile — bypass reveal observer race */
  .hero__countdown[data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition-delay: 0ms !important;
  }
  .hero__meta {
    font-size: 10px;
    letter-spacing: 0.25em;
    line-height: 1.8;
  }

  /* Timeline → single column, drop the central rail on mobile */
  .timeline__list::before { display: none; }
  .timeline__item {
    grid-template-columns: 1fr;
    padding-left: 0;
  }
  .timeline__item:nth-child(odd) .timeline__card,
  .timeline__item:nth-child(even) .timeline__card {
    grid-column: 1;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }
  .timeline__item::before,
  .timeline__item--return::before { display: none; }

  /* About beats — smaller on mobile */
  .about__copy p { font-size: 1.05rem; line-height: 1.65; }
  .about__copy p.about__beat {
    font-size: clamp(1.1rem, 3.5vw, 1.3rem);
    padding-left: 14px;
  }

  /* Callback — tighter padding */
  .callback__inner { padding: 32px 20px; }

  /* Videos filters wrap */
  .videos__filters { gap: 8px; }
  .filter-btn { padding: 8px 14px; font-size: 10px; }

  /* Form inputs — bigger touch target */
  .form-row input[type="text"],
  .form-row input[type="email"],
  .form-row select,
  .form-row textarea {
    font-size: 16px; /* prevents iOS zoom on focus */
    padding: 13px 14px;
  }

  .leaders__grid { grid-template-columns: 1fr; max-width: 480px; }
  .videos__grid { grid-template-columns: 1fr; }
  .radio-cards { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  :root { --gutter: 18px; }

  .about__stats { grid-template-columns: repeat(2, 1fr); padding: 22px 14px; }
  .stat__num { font-size: clamp(1.7rem, 7vw, 2.4rem); }

  .filter-btn { padding: 7px 12px; font-size: 10px; letter-spacing: 0.18em; }

  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { width: 100%; padding: 14px 22px; }
  .hero__title-img { max-width: 240px; width: 70%; }
  .hero__tagline { font-size: 1.15rem; }
  .hero__countdown-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .hero__countdown-num { font-size: 1.7rem; }
  .hero__meta { font-size: 9.5px; letter-spacing: 0.22em; }
  .hero__meta span { margin: 0 4px; }

  .section-title { font-size: clamp(1.6rem, 7vw, 2rem); letter-spacing: 0.12em; }

  .about__quote {
    padding: 20px 18px 20px 38px;
  }
  .about__quote p { font-size: 1.1rem; }

  .leader-card__stats { grid-template-columns: 1fr; gap: 8px; }
  .video-modal__close { top: -48px; }

  .callback__inner { padding: 26px 18px; }
  .callback__title { font-size: 1.3rem; letter-spacing: 0.08em; }
  .callback__text { font-size: 1rem; }

  section { padding: 60px 0; }

  .footer { padding: 56px 0 36px; }
  .footer__copy { font-size: 9px; letter-spacing: 0.18em; line-height: 1.6; }
}


/* ============================================================
   14. prefers-reduced-motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto !important; }
  .hero__embers { display: none; }
  .hero__skull { animation: none; }
  [data-reveal] { opacity: 1; transform: none; }
}
