* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: #F7F7F5;
  color: #111111;
  font-family: Arial, Helvetica, sans-serif;
}

.hero {
  min-height: 100vh;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.top-line,
.hero-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 2px solid #111;
  padding-top: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-content {
  max-width: 1200px;
  padding: 80px 0;
}

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 30px;
}

h1 {
  font-size: clamp(64px, 11vw, 180px);
  line-height: 0.82;
  letter-spacing: -0.07em;
  margin: 0;
  text-transform: uppercase;
  font-weight: 900;
}

.intro {
  max-width: 540px;
  font-size: 20px;
  line-height: 1.45;
  margin-top: 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 35px;
}

.primary-btn {
  display: inline-block;
  background: #111;
  color: #f3f0e8;
  padding: 16px 22px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.text-link {
  color: #111;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  border-bottom: 1px solid #111;
  padding-bottom: 3px;
}

.hero-footer {
  border-top: 1px solid #111;
  padding-bottom: 4px;
}

@media (max-width: 700px) {
  .hero {
    padding: 18px;
  }

  .top-line,
  .hero-footer {
    flex-direction: column;
    gap: 5px;
  }

  .hero-content {
    padding: 60px 0;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}.hero-content {
  position: relative;
}

.hero-character {
  position: absolute;
  right: -20px;
  bottom: 10px;
  width: min(38vw, 520px);
  height: auto;
  z-index: 2;
  transform: rotate(2deg);
}

@media (max-width: 900px) {
  .hero-character {
    position: relative;
    right: auto;
    bottom: auto;
    width: 75%;
    display: block;
    margin: 40px auto 0;
  }
}.about {
  position: relative;
  min-height: 100vh;
  background: #111;
  color: #f7f7f5;
  padding: 60px 32px;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 80px;
  align-items: center;
  overflow: hidden;
}

.about-number {
  position: absolute;
  right: -20px;
  top: -80px;
  font-size: 420px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.1em;
  color: #202020;
  z-index: 0;
}

.about-heading,
.about-copy {
  position: relative;
  z-index: 1;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 30px;
}

.about h2 {
  font-size: clamp(70px, 9vw, 150px);
  line-height: 0.84;
  letter-spacing: -0.07em;
  margin: 0;
}

.about-copy {
  max-width: 500px;
  align-self: end;
  padding-bottom: 80px;
}

.about-lead {
  font-size: 30px;
  line-height: 1.1;
  font-weight: 700;
}

.about-copy > p:not(.about-lead) {
  font-size: 18px;
  line-height: 1.55;
}

.editor-note {
  margin-top: 50px;
  border-top: 1px solid #f7f7f5;
  padding-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.editor-note span {
  font-size: 10px;
  letter-spacing: 0.15em;
}

.editor-note strong {
  font-size: 20px;
}

@media (max-width: 800px) {
  .about {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 50px 18px;
  }

  .about-number {
    font-size: 250px;
  }

  .about-copy {
    padding-bottom: 20px;
  }
}.meet {
  background: #f7f7f5;
  color: #111;
  padding: 70px 0 40px;
  overflow: hidden;
}

.meet-header {
  padding: 0 32px 40px;
}

.meet h2 {
  margin: 0;
  font-size: clamp(70px, 10vw, 160px);
  line-height: 0.85;
  letter-spacing: -0.07em;
}

/* ========================================
   MEET THE X'S — RESPONSIVE CAROUSEL
======================================== */

.x-strip {
  display: flex;
  width: max-content;
  padding: 10px 0 40px;
  will-change: transform;
}

.x-strip.is-running {
  animation:
    slideX var(--x-strip-speed, 28s)
    linear infinite;
}

.x-strip-group {
  display: flex;
  gap: 22px;
  flex-shrink: 0;
  padding-left: 32px;
}

.x-strip img {
  width: 340px;
  height: 340px;
  object-fit: cover;
  flex-shrink: 0;
}

@keyframes slideX {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(var(--x-strip-shift));
  }
}

.x-strip:hover {
  animation-play-state: paused;
}

@media (max-width: 700px) {
  .x-strip-group {
    padding-left: 18px;
  }

  .x-strip img {
    width: 260px;
    height: 260px;
  }
}

@media (max-width: 700px) {
  .meet-header {
    padding: 0 18px 30px;
  }

  .x-strip {
    padding-left: 18px;
  }

  .x-strip img {
    width: 260px;
    height: 260px;
  }

  .meet-caption {
    margin: 0 18px;
    flex-direction: column;
    gap: 8px;
  }
}.personality {
  background: #111;
  color: #f7f7f5;
  padding: 70px 32px 50px;
}

.personality-header {
  margin-bottom: 50px;
}

.personality h2 {
  margin: 0;
  max-width: 1100px;
  font-size: clamp(64px, 9vw, 140px);
  line-height: 0.86;
  letter-spacing: -0.07em;
}

.personality-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #f7f7f5;
  margin-top: 30px;
}

.personality-grid span {
  font-size: clamp(38px, 5vw, 82px);
  font-weight: 900;
  letter-spacing: -0.04em;
  padding: 22px 0;
  border-bottom: 1px solid #f7f7f5;
}

.personality-grid span:nth-child(odd) {
  border-right: 1px solid #f7f7f5;
  padding-right: 24px;
}

.personality-grid span:nth-child(even) {
  padding-left: 24px;
}

.personality-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

@media (max-width: 700px) {
  .personality {
    padding: 55px 18px 40px;
  }

  .personality-grid {
    grid-template-columns: 1fr;
  }

  .personality-grid span {
    border-right: 0 !important;
    padding: 18px 0 !important;
  }

  .personality-footer {
    flex-direction: column;
  }
}.personality-grid span {
  position: relative;
  cursor: pointer;
  transition:
    padding 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.personality-grid span:hover {
  background: #f7f7f5;
  color: #111;
}

.personality-grid span:nth-child(odd):hover {
  padding-left: 24px;
}

.personality-grid span:nth-child(even):hover {
  padding-left: 48px;
}.personality-item {
  position: relative;
}

.personality-preview {
  position: absolute;
  width: 300px;
  height: 300px;
  object-fit: cover;

  right: 30px;
  top: 50%;

  opacity: 0;
  visibility: hidden;

  transform: translateY(-50%) rotate(-5deg) scale(0.9);

  transition:
    opacity 0.25s ease,
    transform 0.25s ease;

  z-index: 20;
  pointer-events: none;

  box-shadow: 12px 12px 0 #111;
}

.personality-item:hover .personality-preview {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) rotate(-3deg) scale(1);
}.collection {
  background: #f7f7f5;
  color: #111;
  padding: 55px 32px 70px;
}

.collection-top {
  display: flex;
  justify-content: space-between;
  border-top: 2px solid #111;
  padding-top: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.collection-top .section-label {
  margin: 0;
}

.collection-title {
  display: grid;
  grid-template-columns: 1.5fr 0.5fr;
  gap: 60px;
  align-items: end;
  padding: 70px 0;
}

.collection-title h2 {
  margin: 0;
  font-size: clamp(80px, 12vw, 190px);
  line-height: 0.78;
  letter-spacing: -0.075em;
}

.collection-title p {
  font-size: 20px;
  line-height: 1.35;
  margin: 0;
  padding-bottom: 10px;
}

.collection-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #111;
  border-bottom: 1px solid #111;
}

.stat {
  min-height: 220px;
  padding: 25px 20px;
  border-right: 1px solid #111;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  font-size: clamp(65px, 8vw, 125px);
  line-height: 0.8;
  letter-spacing: -0.07em;
}

.stat span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.special-stat {
  background: #111;
  color: #f7f7f5;
}

.collection-bottom {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 60px;
  padding-top: 35px;
}

.collection-bottom p {
  max-width: 600px;
  font-size: 17px;
  line-height: 1.5;
  margin: 0;
}

.collection-link {
  color: #111;
  text-decoration: none;
  border-bottom: 2px solid #111;
  padding-bottom: 5px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

@media (max-width: 800px) {
  .collection {
    padding: 45px 18px 55px;
  }

  .collection-title {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .collection-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat:nth-child(2) {
    border-right: 0;
  }

  .stat {
    border-bottom: 1px solid #111;
  }

  .collection-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}.oneofone {
  background: #111;
  color: #f7f7f5;
  padding: 55px 32px 80px;
}

.oneofone-top {
  display: flex;
  justify-content: space-between;
  border-top: 2px solid #f7f7f5;
  padding-top: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.oneofone-top .section-label {
  margin: 0;
}

.oneofone-heading {
  display: grid;
  grid-template-columns: 1.5fr 0.5fr;
  gap: 60px;
  align-items: end;
  padding: 70px 0;
}

.oneofone-heading h2 {
  margin: 0;
  font-size: clamp(80px, 12vw, 190px);
  line-height: 0.78;
  letter-spacing: -0.075em;
}

.oneofone-heading p {
  margin: 0;
  max-width: 420px;
  font-size: 20px;
  line-height: 1.4;
}

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

.one-card {
  grid-column: span 4;
}

.one-card.featured {
  grid-column: span 8;
}

.one-card img {
  width: 100%;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.one-card:hover img {
  transform: scale(1.02);
}

.one-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  border-top: 1px solid #f7f7f5;
  margin-top: 10px;
  padding-top: 10px;
}

.one-meta span {
  font-size: 11px;
  letter-spacing: 0.12em;
}

.one-meta strong {
  font-size: 15px;
  letter-spacing: 0.08em;
}

.featured img {
  box-shadow:
    16px 16px 0 #ff4fa3,
    -12px -12px 0 #7c4dff;
}

@media (max-width: 800px) {
  .oneofone {
    padding: 45px 18px 60px;
  }

  .oneofone-heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .oneofone-grid {
    grid-template-columns: 1fr;
  }

  .one-card,
  .one-card.featured {
    grid-column: auto;
  }

  .featured img {
    box-shadow:
      8px 8px 0 #ff4fa3,
      -6px -6px 0 #7c4dff;
  }
}.community {
  background: #f7f7f5;
  color: #111;
  padding: 32px 0 0;
  overflow: hidden;
}

.community-top {
  margin: 0 32px;
  padding-top: 10px;
  border-top: 2px solid #111;

  display: flex;
  justify-content: space-between;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.community-main {
  padding: 90px 32px 100px;
}

.community-main h2 {
  max-width: 1300px;
  margin: 0;

  font-size: clamp(65px, 9vw, 145px);
  line-height: 0.84;
  letter-spacing: -0.07em;
}

.community-main h2 em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.community-copy {
  max-width: 520px;
  margin: 45px 0 35px;

  font-size: 19px;
  line-height: 1.5;
}

.community-button {
  display: inline-block;

  background: #111;
  color: #f7f7f5;

  padding: 17px 23px;

  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.ticker {
  width: 100%;
  overflow: hidden;
  background: #111;
  color: #f7f7f5;
  white-space: nowrap;
  padding: 15px 0;
}

.ticker-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.ticker-track.is-running {
  animation: tickerMove var(--ticker-speed, 30s) linear infinite;
}

.ticker-group {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding-right: 2rem;
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(var(--ticker-shift));
  }
}

@media (max-width: 700px) {

  .community-top {
    margin: 0 18px;
  }

  .community-main {
    padding: 70px 18px 80px;
  }

}.final-cta {
  min-height: 100vh;
  background: #111;
  color: #f7f7f5;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.final-top,
.final-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #f7f7f5;
  padding-top: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.final-content {
  padding: 70px 0;
}

.final-content h2 {
  margin: 0;
  font-size: clamp(75px, 11vw, 180px);
  line-height: 0.78;
  letter-spacing: -0.075em;
}

.final-punch {
  margin: 45px 0;
  font-size: clamp(45px, 6vw, 95px);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.final-punch em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  color: #E7F300;
}

.final-button {
  display: inline-block;
  background: #f7f7f5;
  color: #111;
  padding: 18px 25px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  transition: transform 0.2s ease;
}

.final-button:hover {
  transform: translateX(8px);
}

@media (max-width: 700px) {
  .final-cta {
    padding: 22px 18px;
  }

  .final-top,
  .final-bottom {
    flex-direction: column;
    gap: 6px;
  }
}.oneofone-statement {
  margin: 0 0 35px;
  padding-top: 12px;
  border-top: 1px solid #f7f7f5;

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}.classified-card {
  grid-column: span 4;
}

.classified-box {
  aspect-ratio: 1 / 1;
  border: 1px solid #f7f7f5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  background:
    linear-gradient(135deg, #171717 25%, #111 25%, #111 50%, #171717 50%, #171717 75%, #111 75%);
  background-size: 32px 32px;
}

.classified-box span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.classified-box strong {
  font-size: clamp(38px, 5vw, 78px);
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.classified-card:nth-child(1) {
  grid-column: span 8;
}

@media (max-width: 800px) {
  .classified-card,
  .classified-card:nth-child(1) {
    grid-column: auto;
  }
}/* 1/1 CLASSIFIED REVEAL CARDS */

.oneofone-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  width: 100%;
}

.classified-card {
  min-width: 0;
}

.classified-box {
  aspect-ratio: 1 / 1;
  width: 100%;
  box-sizing: border-box;

  border: 1px solid #f7f7f5;
  padding: 20px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  overflow: hidden;

  background:
    repeating-linear-gradient(
      -45deg,
      #111 0px,
      #111 18px,
      #181818 18px,
      #181818 36px
    );
}

.classified-box span {
  font-size: clamp(9px, 1vw, 13px);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.classified-box strong {
  font-size: clamp(20px, 2.3vw, 38px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .oneofone-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 550px) {
  .oneofone-grid {
    grid-template-columns: 1fr;
  }
}/* FINAL FIX — CLASSIFIED 1/1 GRID */

.oneofone-grid {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

.classified-card,
.classified-card:nth-child(1) {
  grid-column: auto !important;
  width: auto !important;
  min-width: 0 !important;
}

.classified-box {
  width: 100% !important;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.classified-box strong {
  font-size: clamp(18px, 2vw, 34px);
  white-space: normal;
  word-break: normal;
}/* FINAL 1/1 CLASSIFIED LAYOUT */

.oneofone-grid {
  display: flex !important;
  width: 100% !important;
  gap: 18px !important;
}

.classified-card,
.classified-card:nth-child(1) {
  flex: 1 1 0 !important;
  width: auto !important;
  min-width: 0 !important;
  grid-column: auto !important;
}

.classified-box {
  width: 100% !important;
  aspect-ratio: 1 / 1;
  box-sizing: border-box;
  padding: 20px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  border: 1px solid #f7f7f5;
  overflow: hidden;

  background:
    repeating-linear-gradient(
      -45deg,
      #111 0px,
      #111 18px,
      #181818 18px,
      #181818 36px
    );
}

.classified-box span {
  font-size: clamp(10px, 1vw, 14px);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.classified-box strong {
  font-size: clamp(22px, 2.3vw, 38px);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

@media (max-width: 900px) {
  .oneofone-grid {
    flex-wrap: wrap;
  }

  .classified-card,
  .classified-card:nth-child(1) {
    flex: 1 1 calc(50% - 18px) !important;
  }
}

@media (max-width: 550px) {
  .classified-card,
  .classified-card:nth-child(1) {
    flex: 1 1 100% !important;
  }
}/* MEET THE X'S — INTERACTION */

.x-strip:hover {
  animation-play-state: paused;
}

.x-strip img {
  transition: transform 0.25s ease;
}

.x-strip img:hover {
  transform: scale(1.04);
  z-index: 2;
}/* XRATED LOGO */

.top-logo img {
  display: block;
  width: 125px;
  height: auto;
}

.top-logo {
  display: flex;
  align-items: center;
}/* MOBILE — HERO MASTHEAD */

@media (max-width: 600px) {

  .top-line {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 8px;
  }

  .top-logo {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .top-logo img {
    width: 90px;
  }

  .top-line span:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
    text-align: right;
  }

  .top-line span:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
    text-align: right;
    max-width: 180px;
  }

}@media (max-width: 600px) {

  .hero-character {
    position: relative;
    right: auto;
    bottom: auto;

    width: 92%;
    max-width: none;

    margin: 34px auto 0;
    display: block;

    transform: rotate(1deg);
  }

}@media (max-width: 600px) {

  .hero-footer {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    align-items: end;
  }

  .hero-footer span:nth-child(1) {
    grid-column: 1;
  }

  .hero-footer span:nth-child(2) {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .hero-footer span:nth-child(3) {
    grid-column: 2;
    grid-row: 1;
    text-align: right;
  }

}/* MOBILE — ABOUT SECTION */

@media (max-width: 600px) {

  .about h2 {
    font-size: 52px;
    line-height: 0.86;
    letter-spacing: -0.055em;
  }

}/* MEET THE X'S - MOBILE SWIPE */
@media (max-width: 600px) {

  .x-strip {
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: flex-start;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

 

}/* SECTION 04 — MOBILE */
@media (max-width: 600px) {

  .personality h2 {
    font-size: 48px;
    line-height: 0.9;
    letter-spacing: -0.05em;
    max-width: 100%;
  }

}/* SECTION 04 — MOBILE TAP REVEAL */
@media (max-width: 600px) {

  /* Disable desktop hover image behaviour on mobile */
  .personality-item:hover .personality-preview {
    opacity: 0;
    visibility: hidden;
  }

  /* Only show the personality that has been tapped */
  .personality-item.active .personality-preview {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(-50%) rotate(-3deg) scale(1) !important;
  }

}/* SECTION 05 — MOBILE */
@media (max-width: 600px) {

  .collection-title h2 {
    font-size: 52px;
    line-height: 0.86;
    letter-spacing: -0.055em;
    max-width: 100%;
  }

}/* SECTION 06 — MOBILE CLASSIFIED GRID */
@media (max-width: 600px) {

  .oneofone-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
    width: 100% !important;
  }

  .classified-card,
  .classified-card:nth-child(1) {
    grid-column: auto !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    flex: none !important;
  }

 .classified-card:nth-child(5) {
  grid-column: 1 / 2 !important;
}

  .classified-box {
    width: 100% !important;
    aspect-ratio: 1 / 1;
    padding: 14px;
  }

  .classified-box span {
    font-size: 9px;
    line-height: 1.1;
  }

  .classified-box strong {
    font-size: 18px;
    white-space: nowrap;
  }
}/* SECTION 07 — MOBILE */
@media (max-width: 600px) {

  .community-main h2 {
    font-size: 48px;
    line-height: 0.88;
    letter-spacing: -0.055em;
    max-width: 100%;
  }

}/* SECTION 08 — MOBILE */
@media (max-width: 600px) {

  .final-content h2 {
    font-size: 52px;
    line-height: 0.86;
    letter-spacing: -0.055em;
    max-width: 100%;
  }

}.accent-arrow {
    color: #E7F300;
}/* CLASSIFIED 1/1 FEATURE IMAGE */

.classified-feature-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
/* =========================
   XRATED PERSONALITY QUIZ
========================= */

.xrated-quiz-section {
  background: #070707;
  color: #f5f5f2;
  padding: 100px 6vw;
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
}

.quiz-shell {
  max-width: 1200px;
  margin: 0 auto;
}

.quiz-header {
  max-width: 900px;
}

.xrated-quiz-section .section-label {
  color: #d9ff00;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  margin-bottom: 20px;
}

.quiz-header h2 {
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.88;
  letter-spacing: -0.055em;
  margin: 0;
  text-transform: uppercase;
}

.quiz-intro {
  margin-top: 28px;
  font-size: 1.1rem;
  color: #a7a7a7;
}

.quiz-progress-wrap {
  margin-top: 70px;
}

.quiz-progress-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: #a0a0a0;
}

.quiz-progress-track {
  width: 100%;
  height: 4px;
  background: #282828;
  margin-top: 12px;
  overflow: hidden;
}

.quiz-progress-bar {
  height: 100%;
  width: 8.333%;
  background: #d9ff00;
  transition: width 0.35s ease;
}

.quiz-question-area {
  margin-top: 60px;
}

#quiz-question {
  max-width: 900px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.035em;
  margin: 0 0 45px;
}

.quiz-answers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.quiz-answer {
  appearance: none;
  border: 1px solid #343434;
  background: #101010;
  color: #ffffff;
  padding: 24px;
  min-height: 110px;
  text-align: left;
  font: inherit;
  font-size: 1rem;
  line-height: 1.35;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease;
}

.quiz-answer:hover {
  border-color: #d9ff00;
  background: #17190b;
  transform: translateY(-2px);
}

.quiz-answer-letter {
  display: block;
  color: #d9ff00;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  margin-bottom: 12px;
}

@media (max-width: 700px) {
  .xrated-quiz-section {
    padding: 75px 20px;
  }

  .quiz-progress-top {
    font-size: 0.62rem;
  }

  .quiz-answers {
    grid-template-columns: 1fr;
  }

  .quiz-answer {
    min-height: auto;
  }
}
/* =========================
   XRATED RESULT REVEAL
========================= */

.quiz-result[hidden] {
  display: none;
}

.quiz-result {
  margin-top: 70px;
  padding-top: 40px;
  border-top: 1px solid #292929;
}

.result-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: #d9ff00;
}

.result-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d9ff00;
  box-shadow: 0 0 18px #d9ff00;
}

.result-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}

.result-card-stage {
  min-height: 600px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.result-card-placeholder {
  width: min(100%, 420px);
  aspect-ratio: 0.7;
  border: 1px solid #3b3b3b;
  border-radius: 24px;
  padding: 30px;
  background:
    linear-gradient(
      145deg,
      #202020 0%,
      #080808 45%,
      #171717 100%
    );
  box-shadow:
    0 35px 70px rgba(0, 0, 0, 0.6),
    inset 0 0 0 1px rgba(255,255,255,0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: rotateY(-7deg) rotateX(3deg);
}

.result-card-placeholder span,
.result-card-placeholder small {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: #d9ff00;
}

.result-card-placeholder strong {
  font-size: clamp(5rem, 10vw, 9rem);
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.result-file-number {
  color: #8b8b8b;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}

#result-name {
  margin: 15px 0 22px;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.85;
  letter-spacing: -0.055em;
}

.result-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 45px;
}

.result-meta span {
  border: 1px solid #363636;
  padding: 8px 12px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}

.result-diagnosis,
.result-detail {
  padding: 22px 0;
  border-top: 1px solid #292929;
}

.result-diagnosis > span,
.result-detail > span {
  display: block;
  margin-bottom: 10px;
  color: #777;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
}

.result-diagnosis p {
  margin: 0;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  line-height: 1.15;
}

.result-detail strong {
  display: block;
  color: #d9ff00;
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.result-detail p {
  margin: 0;
  color: #b4b4b4;
  line-height: 1.5;
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 35px;
}

.result-actions button {
  appearance: none;
  padding: 16px 22px;
  border: 1px solid #d9ff00;
  background: #d9ff00;
  color: #090909;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
}

#retake-quiz {
  background: transparent;
  color: #fff;
  border-color: #444;
}

@media (max-width: 800px) {
  .result-grid {
    grid-template-columns: 1fr;
  }

  .result-card-stage {
    min-height: auto;
  }

  .result-card-placeholder {
    max-width: 340px;
  }
}
/* =========================
   XRATED CORE PERSONALITY CARD
========================= */

.personality-card {
  position: relative;
  width: min(100%, 430px);
  aspect-ratio: 0.7;
  overflow: hidden;
  border-radius: 28px;
  padding: 28px;
  background:
    radial-gradient(circle at 20% 10%, rgba(217,255,0,0.12), transparent 24%),
    linear-gradient(145deg, #202020 0%, #080808 48%, #111111 100%);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    0 40px 90px rgba(0,0,0,0.65),
    0 0 0 1px rgba(217,255,0,0.05),
    inset 0 0 0 1px rgba(255,255,255,0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform:
    perspective(1200px)
    rotateY(-7deg)
    rotateX(3deg);
  transform-style: preserve-3d;
}

.personality-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      115deg,
      transparent 20%,
      rgba(255,255,255,0.07) 42%,
      transparent 58%
    );
  transform: translateX(-120%);
  animation: cardShine 7s ease-in-out infinite;
}

.personality-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 21px;
  border: 1px solid rgba(217,255,0,0.18);
  pointer-events: none;
}

@keyframes cardShine {
  0%, 70% {
    transform: translateX(-120%);
  }

  90%, 100% {
    transform: translateX(120%);
  }
}

.personality-card-top,
.personality-card-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
}

.card-brand {
  color: #d9ff00;
  font-weight: 800;
}

.card-number {
  color: #777;
  text-align: right;
}

.personality-card-main {
  position: relative;
  z-index: 2;
}

.card-classification,
.card-ability-label {
  margin: 0 0 10px;
  color: #767676;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
}

#card-personality-name {
  margin: 0;
  max-width: 100%;
  color: #fff;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.card-code-wrap {
  margin: 34px 0;
}

#result-card-code {
  display: inline-block;
  color: #d9ff00;
  font-size: clamp(5rem, 10vw, 8.5rem);
  line-height: 0.75;
  font-weight: 800;
  letter-spacing: -0.08em;
  text-shadow: 0 0 30px rgba(217,255,0,0.18);
}

#card-ability {
  display: block;
  max-width: 280px;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.personality-card-bottom {
  color: #777;
}

.card-watermark {
  position: absolute;
  right: -25px;
  bottom: 45px;
  z-index: 0;
  color: rgba(255,255,255,0.025);
  font-size: 18rem;
  font-weight: 900;
  line-height: 0.7;
  user-select: none;
}

@media (max-width: 800px) {
  .personality-card {
    width: min(100%, 360px);
    transform:
      perspective(1200px)
      rotateY(-3deg)
      rotateX(2deg);
  }

  .card-watermark {
    font-size: 14rem;
  }
}

/* ========================================
   XRATED DYNAMIC PERSONALITY CARD THEMES
======================================== */

.personality-card {
  --card-accent: #d9ff00;
  --card-accent-soft: rgba(217, 255, 0, 0.15);
  --card-glow: rgba(217, 255, 0, 0.22);
}

.personality-card .card-brand,
.personality-card #result-card-code {
  color: var(--card-accent);
}

.personality-card {
  background:
    radial-gradient(
      circle at 18% 10%,
      var(--card-accent-soft),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      #202020 0%,
      #080808 50%,
      #111111 100%
    );

  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.65),
    0 0 50px var(--card-glow),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

#result-card-code {
  text-shadow: 0 0 30px var(--card-glow);
}
/* COMMUNITY MAXI */

.theme-community_maxi {
  --card-accent: #62ffd0;
  --card-accent-soft: rgba(98, 255, 208, 0.18);
  --card-glow: rgba(98, 255, 208, 0.24);

  background:
    radial-gradient(
      circle at 20% 10%,
      rgba(98, 255, 208, 0.22),
      transparent 30%
    ),
    radial-gradient(
      circle at 85% 75%,
      rgba(217, 255, 0, 0.13),
      transparent 32%
    ),
    linear-gradient(
      145deg,
      #10201c 0%,
      #070908 52%,
      #101713 100%
    );
}
/* DYOR DETECTIVE */

.theme-dyor_detective {
  --card-accent: #54d8ff;
  --card-accent-soft: rgba(84, 216, 255, 0.18);
  --card-glow: rgba(84, 216, 255, 0.28);

  background:
    radial-gradient(
      circle at 18% 12%,
      rgba(84, 216, 255, 0.22),
      transparent 30%
    ),
    radial-gradient(
      circle at 88% 78%,
      rgba(70, 90, 255, 0.16),
      transparent 32%
    ),
    linear-gradient(
      145deg,
      #0c1c24 0%,
      #06090c 50%,
      #0b1224 100%
    );
}
/* LOW BATTERY */

.theme-low_battery {
  --card-accent: #ff4b4b;
  --card-accent-soft: rgba(255, 75, 75, 0.20);
  --card-glow: rgba(255, 45, 45, 0.30);

  background:
    radial-gradient(
      circle at 18% 12%,
      rgba(255, 65, 65, 0.24),
      transparent 30%
    ),
    radial-gradient(
      circle at 88% 78%,
      rgba(255, 130, 30, 0.12),
      transparent 32%
    ),
    linear-gradient(
      145deg,
      #251010 0%,
      #080707 50%,
      #1c0b0b 100%
    );
}
/* ========================================
   CORE THEMES — BATCH 1
======================================== */


/* FOMO */

.theme-fomo {
  --card-accent: #d9ff00;
  --card-accent-soft: rgba(217, 255, 0, 0.20);
  --card-glow: rgba(255, 105, 0, 0.24);

  background:
    radial-gradient(
      circle at 16% 10%,
      rgba(217, 255, 0, 0.24),
      transparent 28%
    ),
    radial-gradient(
      circle at 88% 78%,
      rgba(255, 95, 0, 0.20),
      transparent 32%
    ),
    linear-gradient(
      145deg,
      #25280c 0%,
      #090909 50%,
      #211007 100%
    );
}


/* REPLY GUY */

.theme-reply_guy {
  --card-accent: #63cfff;
  --card-accent-soft: rgba(99, 207, 255, 0.20);
  --card-glow: rgba(99, 207, 255, 0.28);

  background:
    radial-gradient(
      circle at 18% 10%,
      rgba(99, 207, 255, 0.22),
      transparent 28%
    ),
    radial-gradient(
      circle at 88% 78%,
      rgba(100, 70, 255, 0.15),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      #102231 0%,
      #07090c 52%,
      #10152b 100%
    );
}


/* DIAMOND HANDS */

.theme-diamond_hands {
  --card-accent: #d9f5ff;
  --card-accent-soft: rgba(217, 245, 255, 0.18);
  --card-glow: rgba(90, 210, 255, 0.26);

  background:
    radial-gradient(
      circle at 20% 12%,
      rgba(210, 245, 255, 0.22),
      transparent 28%
    ),
    radial-gradient(
      circle at 85% 78%,
      rgba(65, 135, 255, 0.15),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      #152029 0%,
      #07090b 50%,
      #0d1722 100%
    );
}


/* BAG HOLDER */

.theme-bag_holder {
  --card-accent: #ffb84a;
  --card-accent-soft: rgba(255, 184, 74, 0.18);
  --card-glow: rgba(255, 140, 40, 0.26);

  background:
    radial-gradient(
      circle at 18% 10%,
      rgba(255, 184, 74, 0.20),
      transparent 28%
    ),
    radial-gradient(
      circle at 88% 80%,
      rgba(115, 70, 20, 0.18),
      transparent 32%
    ),
    linear-gradient(
      145deg,
      #241b0e 0%,
      #080706 52%,
      #1b1208 100%
    );
}


/* THE SHILLER */

.theme-shiller {
  --card-accent: #ff4fd8;
  --card-accent-soft: rgba(255, 79, 216, 0.20);
  --card-glow: rgba(255, 79, 216, 0.28);

  background:
    radial-gradient(
      circle at 18% 10%,
      rgba(255, 79, 216, 0.22),
      transparent 28%
    ),
    radial-gradient(
      circle at 88% 80%,
      rgba(155, 60, 255, 0.18),
      transparent 32%
    ),
    linear-gradient(
      145deg,
      #271126 0%,
      #090709 52%,
      #1a0d21 100%
    );
}
/* ========================================
   CORE THEMES — BATCH 2
======================================== */


/* LURKER */

.theme-lurker {
  --card-accent: #8f8f8f;
  --card-accent-soft: rgba(143, 143, 143, 0.16);
  --card-glow: rgba(143, 143, 143, 0.18);

  background:
    radial-gradient(
      circle at 18% 10%,
      rgba(130, 130, 130, 0.16),
      transparent 28%
    ),
    linear-gradient(
      145deg,
      #181818 0%,
      #070707 52%,
      #111111 100%
    );
}


/* WHALE */

.theme-whale {
  --card-accent: #36d9ff;
  --card-accent-soft: rgba(54, 217, 255, 0.20);
  --card-glow: rgba(54, 217, 255, 0.30);

  background:
    radial-gradient(
      circle at 18% 10%,
      rgba(54, 217, 255, 0.24),
      transparent 30%
    ),
    radial-gradient(
      circle at 85% 82%,
      rgba(15, 70, 145, 0.25),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      #09232c 0%,
      #05090c 50%,
      #071525 100%
    );
}


/* DEGEN */

.theme-degen {
  --card-accent: #b84cff;
  --card-accent-soft: rgba(184, 76, 255, 0.22);
  --card-glow: rgba(184, 76, 255, 0.32);

  background:
    radial-gradient(
      circle at 18% 10%,
      rgba(184, 76, 255, 0.26),
      transparent 30%
    ),
    radial-gradient(
      circle at 88% 80%,
      rgba(255, 50, 150, 0.16),
      transparent 32%
    ),
    linear-gradient(
      145deg,
      #22102c 0%,
      #080609 50%,
      #1b0920 100%
    );
}


/* DYOR DETECTIVE */

.theme-dyor_detective {
  --card-accent: #ffc94a;
  --card-accent-soft: rgba(255, 201, 74, 0.20);
  --card-glow: rgba(255, 201, 74, 0.26);

  background:
    radial-gradient(
      circle at 18% 10%,
      rgba(255, 201, 74, 0.22),
      transparent 28%
    ),
    radial-gradient(
      circle at 88% 82%,
      rgba(130, 90, 20, 0.18),
      transparent 32%
    ),
    linear-gradient(
      145deg,
      #29210f 0%,
      #090806 52%,
      #1c1609 100%
    );
}


/* CHART ADDICT */

.theme-chart_addict {
  --card-accent: #00ff9d;
  --card-accent-soft: rgba(0, 255, 157, 0.20);
  --card-glow: rgba(0, 255, 157, 0.28);

  background:
    radial-gradient(
      circle at 18% 10%,
      rgba(0, 255, 157, 0.20),
      transparent 28%
    ),
    radial-gradient(
      circle at 88% 82%,
      rgba(0, 100, 80, 0.20),
      transparent 32%
    ),
    linear-gradient(
      145deg,
      #08251c 0%,
      #050907 52%,
      #071a15 100%
    );
}
.quiz-start-btn {
  margin-top: 28px;
  background: #dfff00;
  color: #0a0a0a;
  border: none;
  padding: 16px 24px;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: 0.2s ease;
}

.quiz-start-btn:hover {
  background: #ffffff;
  color: #0a0a0a;
}
#personality-card-image {
  width: 100%;
  height: auto;
  display: block;
}
#personality-card {
  display: none;
}
/* ========================================
   XRATED LIVE PERSONALITY CARD DATA
======================================== */

#result-card-stage {
  position: relative;
}

.card-live-data {
  position: absolute;
  inset: 0;
  pointer-events: none;
  color: #ffffff;
  font-family: inherit;
}

.card-live-data p {
  margin: 0;
  line-height: 1.15;
  font-size: clamp(9px, 0.78vw, 13px);
  font-weight: 700;
}

/* ========================================
   XRATED PER-CARD LIVE TEXT POSITIONING
======================================== */

.card-live-diagnosis,
.card-live-ability,
.card-live-weakness,
.card-live-habitat {
  position: absolute;
  left: var(--live-text-left, 9.7%);
  width: 28%;
  height: 7.2%;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  padding: 0 1%;

  transform: translateY(-6%);
}

.card-live-diagnosis {
  top: calc(var(--diagnosis-top, 44%) - 0.6%);
}

.card-live-ability {
  top: calc(var(--ability-top, 56%) - 0.6%);
}

.card-live-weakness {
  top: calc(var(--weakness-top, 68%) - 0.6%);
}

.card-live-habitat {
  top: calc(var(--habitat-top, 81%) - 0.6%);
}

.card-live-timeline {
  position: absolute;
  left: var(--timeline-left, 24%);
  top: var(--timeline-top, 93.9%);
  width: 42%;
  height: 3.2%;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
}

.card-live-timeline p {
  font-size: clamp(8px, 0.72vw, 12px);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}


/* ALPHA CALLER */
.overlay-alpha_caller {
  --diagnosis-top: 44.7%;
  --ability-top: 57.0%;
  --weakness-top: 68.4%;
  --habitat-top: 80.9%;

  --live-text-left: 10.15%;
}

/* BAG HOLDER */
.overlay-bag_holder {
  --diagnosis-top: 43.9%;
  --ability-top: 55.6%;
  --weakness-top: 68.0%;
  --habitat-top: 80.6%;

  --live-text-left: 10.5%;
--timeline-top: 93.25%;
}

/* BUILDER */
.overlay-builder {
  --diagnosis-top: 45.9%;
  --ability-top: 57.5%;
  --weakness-top: 70.1%;
  --habitat-top: 82.7%;

   --timeline-top: 94.35%;
}

/* CHART ADDICT */
.overlay-chart_addict {
  --diagnosis-top: 42.8%;
  --ability-top: 55.9%;
  --weakness-top: 68.8%;
  --habitat-top: 81.8%;
}

/* COMMUNITY MAXI */
.overlay-community_maxi {
  --diagnosis-top: 47.0%;
  --ability-top: 58.3%;
  --weakness-top: 70.7%;
  --habitat-top: 83.2%;
}

/* DEGEN */
.overlay-degen {
  --diagnosis-top: 44.7%;
  --ability-top: 55.9%;
  --weakness-top: 68.1%;
  --habitat-top: 80.4%;

  --live-text-left: 10.65%;
}

/* DIAMOND HANDS */
.overlay-diamond_hands {
  --diagnosis-top: 40.2%;
  --ability-top: 51.9%;
  --weakness-top: 64.8%;
  --habitat-top: 77.3%;

  --live-text-left: 11.7%;
  --timeline-top: 92.85%;
}

/* DYOR DETECTIVE */
.overlay-dyor_detective {
  --diagnosis-top: 42.4%;
  --ability-top: 54.3%;
  --weakness-top: 67.2%;
  --habitat-top: 80.1%;

  --live-text-left: 11.55%;
}

/* EXIT LIQUIDITY */
.overlay-exit_liquidity {
  --diagnosis-top: 44.5%;
  --ability-top: 57.5%;
  --weakness-top: 69.3%;
  --habitat-top: 82.1%;

  --live-text-left: 10.9%;
}

/* FARMER */
.overlay-farmer {
  --diagnosis-top: 41.9%;
  --ability-top: 55.2%;
  --weakness-top: 69.1%;
  --habitat-top: 82.5%;

  --live-text-left: 10.2%;
}

/* FLIPPER */
.overlay-flipper {
  --diagnosis-top: 44.9%;
  --ability-top: 57.0%;
  --weakness-top: 68.1%;
  --habitat-top: 80.2%;

  --live-text-left: 10.9%;
}

/* FOMO */
.overlay-fomo {
  --diagnosis-top: 37.0%;
  --ability-top: 50.6%;
  --weakness-top: 64.3%;
  --habitat-top: 77.6%;

  --live-text-left: 12.8%;
  --timeline-top: 92.4%;
}

/* FOUNDER */
.overlay-founder {
  --diagnosis-top: 44.8%;
  --ability-top: 57.0%;
  --weakness-top: 69.2%;
  --habitat-top: 81.5%;
}

/* HODLER */
.overlay-hodler {
  --diagnosis-top: 44.3%;
  --ability-top: 56.8%;
  --weakness-top: 68.1%;
  --habitat-top: 80.5%;

  --live-text-left: 10.9%;
}

/* LOW BATTERY */
.overlay-low_battery {
  --diagnosis-top: 43.4%;
  --ability-top: 55.7%;
  --weakness-top: 68.6%;
  --habitat-top: 81.5%;

  --live-text-left: 10.4%;
}

/* LURKER */
.overlay-lurker {
  --diagnosis-top: 41.5%;
  --ability-top: 54.2%;
  --weakness-top: 67.6%;
  --habitat-top: 80.6%;

  --live-text-left: 11.4%;
}

/* MAIN CHARACTER */
.overlay-main_character {
  --diagnosis-top: 45.5%;
  --ability-top: 58.2%;
  --weakness-top: 71.0%;
  --habitat-top: 83.8%;

  --live-text-left: 10.4%;

}

/* NOTIFICATION ADDICT */
.overlay-notification_addict {
  --diagnosis-top: 42.0%;
  --ability-top: 55.1%;
  --weakness-top: 67.6%;
  --habitat-top: 80.1%;

  --live-text-left: 10.75%;

  /* timeline classification */
  --timeline-top: 93.3%;
}

/* OVERTHINKER */
.overlay-overthinker {
  --diagnosis-top: 44.1%;
  --ability-top: 56.9%;
  --weakness-top: 69.6%;
  --habitat-top: 81.9%;

  --live-text-left: 10.55%;
}

/* REPLY GUY */
.overlay-reply_guy {
  --diagnosis-top: 41.9%;
  --ability-top: 54.0%;
  --weakness-top: 66.9%;
  --habitat-top: 79.9%;

  --live-text-left: 11.0%;
  --timeline-left: 24.7%;
}

/* SERIAL RUGGER */
.overlay-serial_rugger {
  --diagnosis-top: 46.5%;
  --ability-top: 58.1%;
  --weakness-top: 70.6%;
  --habitat-top: 83.1%;

  --live-text-left: 10.2%;
  --timeline-top: 94.25%;
}

/* SHILLER */
.overlay-shiller {
  --diagnosis-top: 42.8%;
  --ability-top: 55.8%;
  --weakness-top: 68.8%;
  --habitat-top: 81.7%;

  --live-text-left: 11.0%;
}

/* SPACE DWELLER */
.overlay-space_dweller {
  --diagnosis-top: 42.7%;
  --ability-top: 55.3%;
  --weakness-top: 67.5%;
  --habitat-top: 79.7%;

  --live-text-left: 10.85%;
  --timeline-top: 93.3%;
}

/* TOUCH GRASS SURVIVOR */
.overlay-touch_grass_survivor {
  --diagnosis-top: 45.4%;
  --ability-top: 56.6%;
  --weakness-top: 68.8%;
  --habitat-top: 81.1%;

  --live-text-left: 10.75%;
}

/* WHALE */
.overlay-whale {
  --diagnosis-top: 39.0%;
  --ability-top: 52.3%;
  --weakness-top: 64.9%;
  --habitat-top: 78.3%;

  --live-text-left: 11.15%;
  --timeline-top: 93.25%;
}
/* ========================================
   XRATED RESULT PANEL — PERSONALITY ACCENT
======================================== */

.quiz-result {
  --result-accent: #d9ff00;
}

/* MAIN PERSONALITY HEADING */
#result-name {
  color: var(--result-accent);
}

/* CODE + TIER */
.result-meta span {
  border-color: var(--result-accent);
  color: #fff;
}

/* SMALL SECTION HEADINGS */
.result-diagnosis > span,
.result-detail > span {
  color: var(--result-accent);
  font-weight: 800;
}

/* RESULT SECTIONS */
.result-diagnosis,
.result-detail {
  position: relative;
  padding: 24px 0 24px 22px;
  border-top: 1px solid #292929;
}

/* SMALL ACCENT LINE BESIDE EACH SECTION */
.result-diagnosis::before,
.result-detail::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: var(--result-accent);
}

/* DIAGNOSIS — MORE IMPACT */
.result-diagnosis p {
  font-weight: 700;
  line-height: 1.08;
}

/* ABILITY TITLE */
.result-detail strong {
  color: var(--result-accent);
  font-size: 1.3rem;
  letter-spacing: 0.02em;
}

/* BODY COPY */
.result-detail p {
  color: #d0d0d0;
  font-size: 1.05rem;
  line-height: 1.5;
}

/* FINAL PERSONALITY LINE */
.result-secondary {
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid #292929;
  border-left: 3px solid var(--result-accent);
  background: #0c0c0c;
}

.result-secondary p {
  margin: 0;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
}

/* STATUS COLOUR */
.result-status {
  color: var(--result-accent);
}

.result-status-dot {
  background: var(--result-accent);
  box-shadow: 0 0 18px var(--result-accent);
}

/* SHARE BUTTON MATCHES PERSONALITY */
#share-result {
  background: var(--result-accent);
  border-color: var(--result-accent);
  color: #090909;
}
/* ========================================
   XRATED FINAL RESULT ACCENT COLOURS
   Matches finished personality cards
======================================== */

.theme-alpha_caller          { --card-accent: #e6323b; }
.theme-bag_holder            { --card-accent: #b69b88; }
.theme-builder               { --card-accent: #f2c230; }
.theme-chart_addict          { --card-accent: #39ff14; }
.theme-community_maxi        { --card-accent: #42e8d4; }
.theme-degen                 { --card-accent: #a8ff00; }
.theme-diamond_hands         { --card-accent: #dceeff; }
.theme-dyor_detective        { --card-accent: #d99a28; }
.theme-exit_liquidity        { --card-accent: #ffd400; }
.theme-farmer                { --card-accent: #c5c5c5; }
.theme-flipper               { --card-accent: #ff7900; }
.theme-fomo                  { --card-accent: #ff5a1f; }
.theme-founder               { --card-accent: #3478ff; }
.theme-hodler                { --card-accent: #cfff00; }
.theme-low_battery           { --card-accent: #d93b4b; }
.theme-lurker                { --card-accent: #a4a4a4; }
.theme-main_character        { --card-accent: #e79a83; }
.theme-notification_addict   { --card-accent: #ff6f61; }
.theme-overthinker           { --card-accent: #a76cff; }
.theme-reply_guy             { --card-accent: #22dfff; }
.theme-serial_rugger         { --card-accent: #d52832; }
.theme-shiller               { --card-accent: #8fe7e2; }
.theme-space_dweller         { --card-accent: #a96cff; }
.theme-touch_grass_survivor  { --card-accent: #71c936; }
.theme-whale                 { --card-accent: #4776e6; }

/* ========================================
   XRATED CONTINUOUS SPIN-IN
======================================== */

.result-card-stage.card-pre-reveal {
  visibility: hidden;
}

.result-card-stage.card-flip-in {
  visibility: visible;

  animation: xratedCardFlipIn
    1.65s
    cubic-bezier(0.14, 0.72, 0.25, 1)
    forwards;

  transform-origin: center center;
  transform-style: preserve-3d;
  will-change: transform;
}

@keyframes xratedCardFlipIn {

  0% {
    transform:
      perspective(1400px)
      translateX(-140px)
      scale(0.68)
      rotateY(-1260deg);
  }

  100% {
    transform:
      perspective(1400px)
      translateX(0)
      scale(1)
      rotateY(0deg);
  }
}

/* ========================================
   XRATED RESULT — TOP TO BOTTOM REVEAL
======================================== */

.result-information.result-info-reveal > * {
  opacity: 0;
  transform: translateY(-12px);
  animation: xratedInfoReveal 0.45s ease forwards;
}

/* XRATED PERSONALITY FILE */
.result-information.result-info-reveal > :nth-child(1) {
  animation-delay: 1.45s;
}

/* PERSONALITY NAME */
.result-information.result-info-reveal > :nth-child(2) {
  animation-delay: 1.58s;
}

/* CODE + RARITY */
.result-information.result-info-reveal > :nth-child(3) {
  animation-delay: 1.71s;
}

/* DIAGNOSIS */
.result-information.result-info-reveal > :nth-child(4) {
  animation-delay: 1.84s;
}

/* ABILITY */
.result-information.result-info-reveal > :nth-child(5) {
  animation-delay: 1.97s;
}

/* WEAKNESS */
.result-information.result-info-reveal > :nth-child(6) {
  animation-delay: 2.10s;
}

/* HABITAT */
.result-information.result-info-reveal > :nth-child(7) {
  animation-delay: 2.23s;
}

/* FINAL LINE */
.result-information.result-info-reveal > :nth-child(8) {
  animation-delay: 2.36s;
}

/* BUTTONS */
.result-information.result-info-reveal > :nth-child(9) {
  animation-delay: 2.49s;
}

@keyframes xratedInfoReveal {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   XRATED RESULT CONFETTI
======================================== */

.xrated-confetti-piece {
  position: fixed;
  width: 7px;
  height: 14px;
  pointer-events: none;
  z-index: 9999;
  border-radius: 2px;

  animation: xratedConfettiFall 1.6s ease-out forwards;
}

@keyframes xratedConfettiFall {
  0% {
    opacity: 1;
    transform:
      translate(0, 0)
      rotate(0deg)
      scale(1);
  }

  100% {
    opacity: 0;
    transform:
      translate(var(--x), var(--y))
      rotate(var(--r))
      scale(0.6);
  }
}
/* ==================================================
   XRATED RESPONSIVE PASS
   HERO + ABOUT
================================================== */


/* =========================
   HERO
========================= */

.hero {
  min-height: clamp(720px, 86vh, 980px);
  padding-left: clamp(24px, 3vw, 56px);
  padding-right: clamp(24px, 3vw, 56px);
}

.hero-content {
  position: relative;

  width: 100%;
  max-width: 1600px;
  margin: 0 auto;

  padding: clamp(48px, 6vw, 90px) 0;

  display: grid;

  grid-template-columns:
    minmax(0, 1.1fr)
    minmax(320px, 0.8fr);

  grid-template-areas:
    "eyebrow image"
    "title   image"
    "intro   image"
    "actions image";

  column-gap: clamp(40px, 5vw, 90px);
  align-items: center;
}


.hero-content .eyebrow {
  grid-area: eyebrow;
}


.hero-content h1 {
  grid-area: title;

  font-size: clamp(72px, 8.2vw, 152px);
  max-width: 100%;
}


.hero-content .intro {
  grid-area: intro;
}


.hero-content .hero-actions {
  grid-area: actions;
}


/* Character is now part of the layout,
   NOT floating over the heading */

.hero-character {
  grid-area: image;

  position: relative;
  right: auto;
  bottom: auto;

  width: min(100%, 560px);
  max-height: 620px;

  object-fit: contain;

  justify-self: center;
  align-self: center;

  transform: rotate(2deg);
}


/* =========================
   ABOUT
========================= */

.about {
  min-height: auto;

  padding-top: clamp(75px, 7vw, 120px);
  padding-bottom: clamp(75px, 7vw, 120px);

  padding-left:
    max(32px, calc((100vw - 1600px) / 2));

  padding-right:
    max(32px, calc((100vw - 1600px) / 2));

  grid-template-columns:
    minmax(0, 1fr)
    minmax(340px, 520px);

  column-gap: clamp(60px, 8vw, 150px);

  align-items: center;
}


.about-heading {
  align-self: center;
}


.about h2 {
  font-size: clamp(70px, 7.5vw, 132px);
}


.about-copy {
  max-width: 520px;

  align-self: center;

  padding-bottom: 0;
}


.about-number {
  font-size: clamp(220px, 22vw, 420px);
}


/* =========================
   MEDIUM DESKTOP / LAPTOP
========================= */

@media (max-width: 1200px) {

  .hero-content {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(280px, 0.65fr);

    column-gap: 36px;
  }

  .hero-content h1 {
    font-size: clamp(68px, 9vw, 118px);
  }

  .hero-character {
    width: min(100%, 460px);
  }


  .about {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(300px, 0.75fr);

    column-gap: 50px;
  }

}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

  .hero {
    min-height: auto;
  }

  .hero-content {
    display: grid;

    grid-template-columns: 1fr;

    grid-template-areas:
      "eyebrow"
      "title"
      "intro"
      "actions"
      "image";

    row-gap: 0;
  }

  .hero-character {
    width: min(72vw, 520px);

    margin: 40px auto 0;

    justify-self: center;
  }


  .about {
    grid-template-columns: 1fr;

    gap: 40px;

    padding-left: 28px;
    padding-right: 28px;
  }

  .about-copy {
    max-width: 680px;
  }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {

  .hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-content {
    padding: 48px 0;
  }

  .hero-content h1 {
    font-size: clamp(52px, 15vw, 82px);
    line-height: 0.86;
  }

  .hero-character {
    width: min(88vw, 430px);
    margin-top: 35px;
  }


  .about {
    padding:
      65px 18px
      60px;

    gap: 34px;
  }

  .about h2 {
    font-size: clamp(58px, 16vw, 88px);
  }

  .about-lead {
    font-size: clamp(23px, 7vw, 30px);
  }

}
/* ========================================
   HERO — FINAL RESPONSIVE SPACING TUNE
======================================== */

.hero {
  min-height: auto;
  justify-content: flex-start;
  gap: 0;
}

.hero-content {
  padding-top: clamp(32px, 4vw, 64px);
  padding-bottom: clamp(42px, 5vw, 72px);
}

.hero-footer {
  margin-top: 0;
}

@media (min-width: 1200px) {
  .hero-character {
    width: min(34vw, 540px);
  }
}

@media (min-width: 1600px) {
  .hero-content {
    max-width: 1500px;
  }

  .hero-character {
    width: min(31vw, 520px);
  }
}
/* ========================================
   1/1 SECTION — RESPONSIVE HEADING PASS
======================================== */

.oneofone {
  padding-left: clamp(20px, 3vw, 56px);
  padding-right: clamp(20px, 3vw, 56px);
}


/* Keep heading content from spreading
   too far apart on very wide screens */

.oneofone-top,
.oneofone-heading,
.oneofone-statement {
  width: 100%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}


.oneofone-heading {
  grid-template-columns:
    minmax(0, 1fr)
    minmax(320px, 480px);

  gap: clamp(50px, 7vw, 130px);

  align-items: center;

  padding:
    clamp(55px, 6vw, 90px)
    0;
}


.oneofone-heading h2 {
  font-size: clamp(82px, 8vw, 150px);
  line-height: 0.8;
}


.oneofone-heading p {
  max-width: 480px;

  font-size: clamp(18px, 1.35vw, 23px);
  line-height: 1.4;
}


/* Medium screens */

@media (max-width: 1100px) {

  .oneofone-heading {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(280px, 0.7fr);

    gap: 45px;
  }

  .oneofone-heading h2 {
    font-size: clamp(76px, 10vw, 120px);
  }

}


/* Tablet / mobile */

@media (max-width: 800px) {

  .oneofone-heading {
    grid-template-columns: 1fr;

    gap: 28px;

    padding:
      50px 0
      45px;
  }

  .oneofone-heading h2 {
    font-size: clamp(68px, 17vw, 100px);
  }

  .oneofone-heading p {
    max-width: 620px;
  }

}
/* ========================================
   1/1 FEATURE IMAGE — MOBILE FIX
======================================== */

@media (max-width: 600px) {

  .oneofone-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    gap: 0 !important;
  }

  .classified-feature-image {
    grid-column: 1 / -1;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    display: block;
  }

}
/* ========================================
   XRATED DEEP-DIVE RESULT
======================================== */

.deep-dive-result .result-diagnosis p {
  color: #d6d6d6;
  font-size: clamp(17px, 1.15vw, 21px);
  font-weight: 500;
  line-height: 1.55;
  max-width: 760px;
}

.deep-dive-result .result-detail p {
  color: #d0d0d0;
  font-size: clamp(16px, 1.05vw, 20px);
  line-height: 1.55;
  max-width: 760px;
}

.deep-dive-result #result-ability-name:empty {
  display: none;
}

.deep-dive-result .result-diagnosis,
.deep-dive-result .result-detail {
  padding-top: 25px;
  padding-bottom: 25px;
}
/* ========================================
   XRATED SCORE
======================================== */

.xrated-score-panel {
  margin-top: 34px;
  margin-bottom: 22px;
  padding: 22px 24px;

  border-top: 3px solid var(--result-accent);
  border-bottom: 1px solid #292929;

  background: #0a0a0a;
}

.xrated-score-panel > span {
  display: block;
  margin-bottom: 8px;

  color: var(--result-accent);

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.xrated-score-main {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.xrated-score-main strong {
  color: #fff;

  font-size: clamp(42px, 4vw, 66px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.xrated-score-main em {
  color: #777;

  font-size: 18px;
  font-style: normal;
  font-weight: 700;
}

#xrated-score-rating {
  margin: 9px 0 0;

color: var(--result-accent);

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
/* ========================================
   PERSONALITY CARD — STAT DISPLAY
======================================== */

.card-stat-label {
  display: block;

  color: #ffffff;

  font-size: clamp(9px, 0.7vw, 12px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;

  text-transform: uppercase;
}

.card-stat-score {
  display: block;

  margin-top: 6px;

  color: #f3c32b;

  font-size: clamp(20px, 1.45vw, 26px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
}
/* =========================================
   PERSONALITY RESULT COLOUR MATCHING
========================================= */

.deep-dive-result #result-name {
  color: var(--result-accent);
}

.deep-dive-result .result-diagnosis > span,
.deep-dive-result .result-detail > span {
  color: var(--result-accent);
}

.deep-dive-result .result-diagnosis,
.deep-dive-result .result-detail {
  border-left-color: var(--result-accent);
}

.deep-dive-result .result-status {
  color: var(--result-accent);
}

.deep-dive-result .result-status-dot {
  background: var(--result-accent);
  box-shadow: 0 0 18px var(--result-accent);
}

.deep-dive-result .result-meta span {
  border-color: var(--result-accent);
}

.deep-dive-result .result-secondary {
  border-left-color: var(--result-accent) !important;
}

.deep-dive-result .xrated-score-panel {
  border-top-color: var(--result-accent);
}

.deep-dive-result .xrated-score-panel > span,
.deep-dive-result .xrated-score-main strong {
  color: var(--result-accent);
}