@charset "UTF-8";
/* ============================= */
/*  WICKED ART DETAIL PAGE CSS  */
/* ============================= */


/* ================================= */
/* AGGRESSIVE COLLECTOR DOMINANCE   */
/* ================================= */

.page-art {
  background:
    radial-gradient(circle at 50% -20%, rgba(120,190,255,.08), transparent 60%),
    #040507 !important;
  position: relative;
  overflow-x: hidden;
}

/* Remove any inherited world textures */
.page-art::before,
.page-art::after {
  display: none !important;
}


/* ------------------------------ */
/* ART STAGE = VAULT CHAMBER     */
/* ------------------------------ */

.art-stage {
  position: relative;
  padding: 10vh 0 12vh;
  text-align: center;
  overflow: hidden;
}

/* Cinematic floating light layer */
.art-stage::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at 30% 40%, rgba(255,120,0,.09), transparent 60%),
    radial-gradient(circle at 70% 60%, rgba(120,190,255,.09), transparent 60%);

  background-repeat: no-repeat;
  background-size: cover;
  animation: vaultDrift 16s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes vaultDrift {
  from { transform: translateY(-15px); }
  to   { transform: translateY(15px); }
}

.art-stage-inner {
  max-width: 95vw;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Hero image dominance */
.art-stage-img {
  width: 100%;
  max-width: 1700px;
  height: auto;
  display: block;
  margin: 0 auto;

  box-shadow:
    0 80px 200px rgba(0,0,0,.9),
    0 0 80px rgba(120,190,255,.22);

  animation: stageReveal 1.2s ease forwards;
  transform: scale(1.05);
  opacity: 0;
}

@keyframes stageReveal {
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ---------------------------------- */
/* SIGNATURE WATERMARK               */
/* ---------------------------------- */

.art-signature {
  position: absolute;
  bottom: 6%;
  right: 6%;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  animation: signatureReveal 2.5s ease forwards;
  animation-delay: 2s;
}

.art-signature img {
  animation: markPulse 6s ease-in-out infinite alternate;
}

@keyframes markPulse {
  from { opacity: .45; }
  to   { opacity: .65; }
}

@keyframes signatureReveal {
  to {
    opacity: .9;
    transform: translateY(0);
  }
}

/* ---------------------------------- */
/* META SECTION                      */
/* ---------------------------------- */

.art-meta {
  background: linear-gradient(180deg, #0a0d12 0%, #05070b 100%);
  padding-top: 4rem;
}

.art-title {
  font-family: 'Cinzel', serif;
  font-weight: 800;
  font-size: 3.4rem;
  letter-spacing: .12em;
  text-transform: uppercase;

  background: linear-gradient(
    110deg,
    #8e8e8e 0%,
    #cfcfcf 20%,
    #ffffff 40%,
    #cfcfcf 60%,
    #8e8e8e 80%
  );

  background-size: 200% 100%;
  background-position: -200% 0;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: metalShimmer 12s ease-in-out infinite;

  text-shadow:
    0 2px 0 rgba(0,0,0,.6),
    0 8px 24px rgba(0,0,0,.8);
}

@keyframes metalShimmer {
  0%   { background-position: -200% 0; }
  15%  { background-position: 200% 0; }
  100% { background-position: 200% 0; }
}



/* Metal underline bar */
.art-title::after {
  content: "";
  display: block;
  width: 140px;
  height: 2px;
  margin-top: 12px;
  background: linear-gradient(90deg, transparent, #cfa15c, transparent);
}


/* ---------------------------------- */
/* PRICE BLOCK                       */
/* ---------------------------------- */

.art-price {
  display: inline-block;
  margin-top: 1.5rem;
  padding: .7rem 1.4rem;

  font-family: monospace;
  font-size: 1.1rem;
  letter-spacing: .18em;
  text-transform: uppercase;

  background:
    linear-gradient(145deg, #1c1f25, #0e1015);

  border: 1px solid rgba(255,170,70,.35);
  box-shadow:
    inset 0 0 20px rgba(255,150,50,.08),
    0 10px 30px rgba(0,0,0,.6);

  color: #e7c28b;
}



/* ---------------------------------- */
/* STATUS BADGE                      */
/* ---------------------------------- */

.art-status {
  font-weight: 700;
  letter-spacing: .15em;
  margin-top: 1rem;
}

.art-status.sold {
  color: #ff4c4c;
}

.art-status.reserved {
  color: #ffc107;
}


/* ---------------------------------- */
/* BACKSTORY                         */
/* ---------------------------------- */

.art-backstory p {
  line-height: 1.9;
  opacity: .9;
  max-width: 900px;
}


/* ---------------------------------- */
/* CREDENTIALS                       */
/* ---------------------------------- */

.art-credentials ul {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.art-credentials li {
  opacity: .85;
  margin-bottom: .6rem;
}


/* ---------------------------------- */
/* RESERVE FORM                      */
/* ---------------------------------- */

.wicked-reserve-form .form-control {
  background: rgba(8,10,14,.45);
  border: 1px solid var(--line);
  color: rgba(207,230,255,.9);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.wicked-reserve-form .form-control:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--accent, #78beff) 55%, var(--line));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent, #78beff) 18%, transparent);
}

.wicked-reserve-form textarea.form-control {
  resize: vertical;
}
.btn-primary {
  background: linear-gradient(145deg, #c67b32, #a05a22);
  border: 1px solid #ffb05a;
  color: #fff;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;

  box-shadow:
    0 15px 40px rgba(0,0,0,.6),
    0 0 25px rgba(255,160,60,.25);

  transition: all .25s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 25px 60px rgba(0,0,0,.7),
    0 0 35px rgba(255,160,60,.4);
}


/* ---------------------------------- */
/* HONEYPOT                          */
/* ---------------------------------- */

.hp-field {
  position:absolute !important;
  left:-9999px !important;
  width:1px !important;
  height:1px !important;
  opacity:0 !important;
  pointer-events:none !important;
}

.art-status.sold {
  color: #ff4c4c;
  font-size: 1.4rem;
  letter-spacing: .2em;
  text-shadow: 0 0 20px rgba(255,0,0,.4);
}

.art-status.reserved {
  color: #ffc107;
  font-size: 1.3rem;
  text-shadow: 0 0 18px rgba(255,193,7,.4);
}
