/* ═══════════════════════════════════════════
   style.css — Goddess Kalinda
   ═══════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --bg:        #111013;
  --bg2:       #18151a;
  --bg3:       #201c23;
  --rose:      #c4956a;
  --rose-lt:   #dbb48a;
  --rose-dk:   #8a6245;
  --burgundy:  #6b2d3e;
  --cream:     #f0e4d4;
  --cream-dim: #a09080;
  --border:    rgba(196,149,106,.18);
  --border-h:  rgba(196,149,106,.5);
  --text:      #ede5d8;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* ── GRAIN ── */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 9000;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .32;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--rose-dk); border-radius: 2px; }

/* ═══════════════════════════════
   AGE GATE
   ═══════════════════════════════ */
#age-gate {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
}
#age-gate.out { animation: fadeOut .6s forwards; }
#age-gate.hidden { display: none; }

.ag-box {
  max-width: 460px; width: 90%;
  text-align: center;
  border: 1px solid var(--border-h);
  padding: 56px 44px;
  background: linear-gradient(160deg, var(--bg2) 0%, var(--bg3) 100%);
  position: relative;
}
.ag-box::before {
  content: ''; position: absolute; inset: -1px;
  background: linear-gradient(135deg, var(--rose) 0%, transparent 40%, transparent 60%, var(--rose) 100%);
  z-index: -1; opacity: .22;
}
.ag-name {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem; letter-spacing: .22em;
  color: var(--rose); margin-bottom: 4px;
}
.ag-line { width: 36px; height: 1px; background: var(--rose-dk); margin: 12px auto 28px; }
.ag-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 400;
  margin-bottom: 10px;
}
.ag-txt { font-size: .78rem; color: var(--cream-dim); line-height: 1.9; margin-bottom: 32px; }
.ag-btns { display: flex; gap: 12px; justify-content: center; }
.ag-legal { margin-top: 20px; font-size: .6rem; color: var(--cream-dim); opacity: .5; }

/* ═══════════════════════════════
   BUTTONS
   ═══════════════════════════════ */
.btn-primary {
  background: var(--rose); color: #0e0b10; border: none;
  padding: 13px 36px;
  font-family: 'DM Sans', sans-serif; font-size: .72rem;
  font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--rose-lt); transform: translateY(-1px); }

.btn-ghost {
  background: transparent; color: var(--cream);
  border: 1px solid var(--border-h);
  padding: 13px 36px;
  font-family: 'DM Sans', sans-serif; font-size: .72rem;
  letter-spacing: .18em; text-transform: uppercase;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: all .2s;
}
.btn-ghost:hover { border-color: var(--rose); color: var(--rose); }

.btn-leave {
  background: transparent; color: var(--cream-dim);
  border: 1px solid rgba(196,149,106,.25);
  padding: 13px 28px;
  font-family: 'DM Sans', sans-serif; font-size: .72rem;
  letter-spacing: .18em; text-transform: uppercase;
  cursor: pointer; transition: all .2s;
}
.btn-leave:hover { border-color: var(--rose); color: var(--rose); }

/* ═══════════════════════════════
   HEADER
   ═══════════════════════════════ */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: 72px; padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(17,16,19,.88); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.logo {
  font-family: 'Cinzel', serif;
  font-size: 1rem; letter-spacing: .22em;
  color: var(--rose); text-decoration: none;
}
.logo span { color: var(--cream-dim); font-size: .65rem; letter-spacing: .1em; display: block; margin-top: -2px; }
nav { display: flex; gap: 36px; align-items: center; }
nav a {
  font-size: .65rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--cream-dim); text-decoration: none; transition: color .2s;
}
nav a:hover { color: var(--rose); }
.nav-cta {
  font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--rose); border: 1px solid var(--rose-dk);
  padding: 9px 22px; text-decoration: none; transition: all .2s;
}
.nav-cta:hover { background: var(--rose); color: #0e0b10; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 1px; background: var(--cream-dim); transition: all .3s; }

/* ═══════════════════════════════
   HERO
   ═══════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; text-align: center;
  padding: 140px 24px 80px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 30%, rgba(107,45,62,.22) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 80%, rgba(196,149,106,.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 70%, rgba(196,149,106,.04) 0%, transparent 50%);
}
.hero-ring {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(680px, 90vw); height: min(680px, 90vw);
  border: 1px solid rgba(196,149,106,.06); border-radius: 50%;
  pointer-events: none;
}
.hero-ring::before {
  content: ''; position: absolute; inset: 32px;
  border: 1px solid rgba(196,149,106,.04); border-radius: 50%;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.4rem, 10vw, 8.5rem);
  font-weight: 400; line-height: .92;
  color: var(--cream); margin-bottom: 48px;
  opacity: 0; animation: rise 1s .25s forwards;
}
.hero h1 em { font-style: italic; color: var(--rose); }
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
  opacity: 0; animation: rise .9s .45s forwards;
}
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: rise .9s .7s forwards;
}
.hero-scroll span { font-size: .56rem; letter-spacing: .3em; text-transform: uppercase; color: var(--cream-dim); }
.scroll-line { width: 1px; height: 38px; background: linear-gradient(to bottom, var(--rose-dk), transparent); }

/* ═══════════════════════════════
   SECTION COMMONS
   ═══════════════════════════════ */
.section { padding: 100px 48px; }
.sec-eyebrow { font-size: .6rem; letter-spacing: .4em; text-transform: uppercase; color: var(--rose); margin-bottom: 14px; }
.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400;
  color: var(--cream); line-height: 1.1;
}
.sec-title em { font-style: italic; color: var(--rose); }
.sec-line { width: 44px; height: 1px; background: var(--rose-dk); margin-top: 20px; }

/* ═══════════════════════════════
   ABOUT
   ═══════════════════════════════ */
.about { background: var(--bg2); }
.about-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-img-wrap { position: relative; }
.about-img {
  width: 100%; aspect-ratio: 3/4;
  background: var(--bg3); border: 1px solid var(--border);
  overflow: hidden;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s; }
.about-img:hover img { transform: scale(1.03); }
.about-img-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px;
  color: var(--cream-dim);
}
.about-img-ph svg { opacity: .15; width: 48px; height: 48px; }
.about-img-ph p { font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; opacity: .35; }
.about-frame {
  position: absolute; top: -14px; left: -14px; right: 14px; bottom: 14px;
  border: 1px solid var(--border); pointer-events: none; z-index: -1;
}
.about-tag {
  position: absolute; bottom: 24px; right: -18px;
  background: var(--rose); color: #0e0b10;
  font-size: .58rem; letter-spacing: .25em; text-transform: uppercase;
  padding: 9px 18px; font-weight: 500;
}
.about-text .sec-title { margin-bottom: 28px; }
#about-bio p { font-size: .88rem; line-height: 2; color: var(--cream-dim); margin-bottom: 14px; }
#about-bio p strong { color: var(--cream); font-weight: 500; }

/* ═══════════════════════════════
   GALLERY
   ═══════════════════════════════ */
.gallery { background: var(--bg); }
.gallery-header { text-align: center; margin-bottom: 52px; }
.gallery-header .sec-line { margin: 18px auto 0; }

/* Nueva Cuadrícula Uniforme */
.gallery-grid { 
  max-width: 1260px; 
  margin: 0 auto; 
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px; 
}

/* Tarjeta de imagen */
.gallery-item {
  position: relative; 
  overflow: hidden; 
  cursor: pointer;
  border: 1px solid var(--border);
  aspect-ratio: 3/4; /* Todas las fotos tendrán la misma proporción */
  background: var(--bg3);
}

.gallery-item img {
  width: 100%; 
  height: 100%; 
  object-fit: cover; /* Recorta la imagen sin deformarla para llenar la caja */
  display: block;
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1), filter 0.5s ease;
  filter: brightness(0.85) grayscale(0.2); /* Tono ligeramente apagado y oscuro por defecto */
}

/* Efecto Hover en la imagen */
.gallery-item:hover img { 
  transform: scale(1.06); 
  filter: brightness(1.1) grayscale(0); /* Recupera color y luz */
}

/* Capa oscura superpuesta */
.gallery-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(0,0,0,0.1) 0%, rgba(17,16,19,0.85) 100%);
  opacity: 0; 
  transition: opacity 0.5s ease;
  display: flex; 
  align-items: center; 
  justify-content: center;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Botón flotante "Ampliar" */
.gallery-btn {
  border: 1px solid var(--rose);
  padding: 12px 28px;
  background: rgba(17,16,19,0.7);
  backdrop-filter: blur(6px);
  transform: translateY(20px);
  transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}
.gallery-item:hover .gallery-btn { transform: translateY(0); }

.gallery-btn span { 
  font-size: 0.65rem; 
  letter-spacing: 0.3em; 
  text-transform: uppercase; 
  color: var(--rose); 
}

/* Lightbox */
#lightbox {
  position: fixed; inset: 0; z-index: 8000;
  background: rgba(0,0,0,.95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
#lightbox.open { opacity: 1; pointer-events: all; }
#lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border: 1px solid var(--border); }
.lb-close {
  position: absolute; top: 24px; right: 24px;
  background: var(--rose); color: #0e0b10; border: none;
  width: 38px; height: 38px; font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.lb-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(196,149,106,.12); border: 1px solid var(--border-h);
  color: var(--rose); width: 46px; height: 60px; font-size: 1.2rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lb-arrow:hover { background: rgba(196,149,106,.28); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

/* ═══════════════════════════════
   STORE
   ═══════════════════════════════ */
.store { background: var(--bg2); }
.store-header { text-align: center; margin-bottom: 44px; }
.store-header .sec-line { margin: 18px auto 0; }

/* Tabs */
.store-tabs {
  display: flex; justify-content: center;
  border-bottom: 1px solid var(--border);
  margin-bottom: 44px;
}
.tab-btn {
  background: none; border: none;
  padding: 13px 36px;
  font-family: 'DM Sans', sans-serif; font-size: .66rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--cream-dim); cursor: pointer;
  position: relative; transition: color .2s;
}
.tab-btn::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 2px;
  background: var(--rose); transform: scaleX(0); transition: transform .25s;
}
.tab-btn.active { color: var(--rose); }
.tab-btn.active::after { transform: scaleX(1); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* Filters */
.filters { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }
.filter-btn {
  background: transparent; border: 1px solid var(--border);
  color: var(--cream-dim); padding: 7px 18px;
  font-family: 'DM Sans', sans-serif; font-size: .62rem;
  letter-spacing: .18em; text-transform: uppercase;
  cursor: pointer; transition: all .2s;
}
.filter-btn:hover, .filter-btn.active { border-color: var(--rose); color: var(--rose); background: rgba(196,149,106,.05); }

/* Video grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 26px; max-width: 1260px; margin: 0 auto;
}

/* Video card */
.vcard {
  background: var(--bg3); border: 1px solid var(--border);
  position: relative; overflow: hidden; cursor: pointer;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.vcard:hover {
  border-color: var(--border-h); transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,.4);
}
.vcard-badge {
  position: absolute; top: 13px; left: 13px; z-index: 3;
  font-size: .55rem; letter-spacing: .2em; text-transform: uppercase;
  padding: 4px 9px; font-weight: 500;
}
.badge-new { background: var(--rose); color: #0e0b10; }
.badge-exclusive { background: rgba(0,0,0,.72); color: var(--rose); border: 1px solid var(--rose-dk); }
.badge-popular { background: rgba(107,45,62,.9); color: var(--cream); }
.vcard-source {
  position: absolute; top: 13px; right: 13px; z-index: 3;
  font-size: .5rem; letter-spacing: .14em; text-transform: uppercase; padding: 3px 7px;
}
.src-c4s { background: rgba(0,0,0,.65); color: var(--cream-dim); border: 1px solid rgba(255,255,255,.1); }
.vcard-duration {
  position: absolute; bottom: 116px; right: 10px; z-index: 3;
  font-size: .58rem; background: rgba(0,0,0,.75); color: var(--cream); padding: 3px 7px;
}
.vcard-thumb {
  width: 100%; aspect-ratio: 16/9;
  background: var(--bg); overflow: hidden; position: relative;
}
.vcard-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: opacity .35s;
}
.thumb-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--bg2), var(--bg3));
}
.vcard-play {
  position: absolute; inset: 0; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .3s;
}
.vcard-play-circle {
  width: 50px; height: 50px; border-radius: 50%;
  border: 2px solid rgba(196,149,106,.65);
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.3); transition: transform .2s, border-color .2s;
}
.vcard:hover .vcard-play-circle { transform: scale(1.1); border-color: var(--rose); }
.vcard-preview {
  position: absolute; inset: 0; z-index: 2;
  opacity: 0; transition: opacity .4s; pointer-events: none;
}
.vcard-preview iframe { width: 100%; height: 100%; border: none; display: block; }
.vcard:hover .vcard-preview { opacity: 1; pointer-events: all; }
.vcard:hover .vcard-thumb img { opacity: 0; }
.vcard:hover .vcard-play { opacity: 0; }
.preview-bar {
  position: absolute; bottom: 0; left: 0; height: 2px;
  background: var(--rose); width: 0%; z-index: 4;
}
.vcard-body { padding: 16px 18px 20px; }
.vcard-cat { font-size: .55rem; letter-spacing: .25em; text-transform: uppercase; color: var(--rose-dk); margin-bottom: 5px; }
.vcard-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--cream); margin-bottom: 12px; line-height: 1.3; }
.vcard-footer { display: flex; align-items: center; justify-content: space-between; }
.vcard-price { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--rose); }
.vcard-price sup { font-size: .7rem; vertical-align: super; }
.vcard-cta {
  font-size: .56rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--cream-dim); border: 1px solid var(--border);
  padding: 7px 13px; transition: all .2s; background: transparent; cursor: pointer;
}
.vcard:hover .vcard-cta { border-color: var(--rose); color: var(--rose); }

/* ═══════════════════════════════
   CLIPS4SALE INFO
   ═══════════════════════════════ */
.c4s-info { background: var(--bg); border-top: 1px solid var(--border); }
.c4s-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.c4s-inner p { font-size: .85rem; color: var(--cream-dim); line-height: 2; margin-bottom: 32px; }
.c4s-badges { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.c4s-badge { border: 1px solid var(--border); padding: 16px 22px; min-width: 120px; text-align: center; }
.c4s-badge-ico { font-size: 1.3rem; margin-bottom: 7px; }
.c4s-badge-lbl { font-size: .56rem; letter-spacing: .2em; text-transform: uppercase; color: var(--cream-dim); }

/* ═══════════════════════════════
   CUSTOM VIDEOS FORM
   ═══════════════════════════════ */
.custom-videos { background: var(--bg2); }
.custom-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.custom-desc { font-size: .85rem; color: var(--cream-dim); line-height: 1.8; margin: 24px 0 36px; }

.custom-form { 
  text-align: left; 
  background: var(--bg3); 
  padding: 36px; 
  border: 1px solid var(--border); 
}
.form-group { margin-bottom: 22px; }
.form-group label { 
  display: block; 
  font-size: .6rem; 
  letter-spacing: .2em; 
  text-transform: uppercase; 
  color: var(--cream-dim); 
  margin-bottom: 10px; 
}

/* Campos de texto generales */
.form-group input:not([type="checkbox"]), 
.form-group select, 
.form-group textarea {
  width: 100%; 
  background: var(--bg); 
  border: 1px solid var(--border);
  color: var(--text); 
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif; 
  font-size: .85rem;
  outline: none; 
  transition: border-color .2s;
}

/* Ajuste específico para la caja de descripción (fija y con scroll) */
.form-group textarea {
  height: 160px; 
  resize: none; 
  overflow-y: auto; 
}

/* Ajustes para el grupo del Checkbox de verificación de edad */
.form-group.checkbox-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.form-group.checkbox-group label {
  margin-bottom: 0;
  text-transform: none;
  letter-spacing: normal;
  font-size: .8rem;
  cursor: pointer;
}
.form-group.checkbox-group input[type="checkbox"] {
  width: auto;
  cursor: pointer;
  accent-color: var(--rose); 
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23c4956a%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem top 50%;
  background-size: .65rem auto;
}
.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus { 
  border-color: var(--rose); 
}
.custom-form .btn-primary { 
  width: 100%; 
  text-align: center; 
  margin-top: 10px;
}

/* ═══════════════════════════════
   PAYMENT MODAL
   ═══════════════════════════════ */
.modal-bg {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.92);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.modal-bg.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--bg2); border: 1px solid var(--border-h);
  max-width: 500px; width: 100%; position: relative;
}
.modal-close {
  position: absolute; top: -13px; right: -13px;
  width: 32px; height: 32px; background: var(--rose); color: #0e0b10;
  border: none; font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; z-index: 10;
}
.modal-head { padding: 26px 30px 18px; border-bottom: 1px solid var(--border); }
.modal-vtitle { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 400; margin-bottom: 5px; }
.modal-price { font-family: 'Playfair Display', serif; font-size: 1.9rem; color: var(--rose); }
.modal-body { padding: 22px 30px 30px; }
.field-label { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--cream-dim); margin-bottom: 10px; }
.crypto-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 20px; }
.crypto-opt {
  background: var(--bg3); border: 1px solid var(--border);
  padding: 10px 6px; text-align: center; cursor: pointer; transition: all .2s;
}
.crypto-opt:hover, .crypto-opt.sel { border-color: var(--rose); background: rgba(196,149,106,.07); }
.crypto-opt.sel .co-name { color: var(--rose); }
.co-ico { font-size: 1.1rem; margin-bottom: 4px; }
.co-name { font-size: .56rem; letter-spacing: .1em; color: var(--cream-dim); }
.email-field { margin-bottom: 18px; }
.email-field label { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--cream-dim); display: block; margin-bottom: 7px; }
.email-field input {
  width: 100%; background: var(--bg3); border: 1px solid var(--border);
  color: var(--text); padding: 11px 15px;
  font-family: 'DM Sans', sans-serif; font-size: .85rem;
  outline: none; transition: border-color .2s;
}
.email-field input:focus { border-color: var(--rose); }
.email-field small { font-size: .58rem; color: var(--cream-dim); margin-top: 5px; display: block; }
.btn-pay {
  width: 100%; background: var(--rose); color: #0e0b10; border: none;
  padding: 15px; font-family: 'DM Sans', sans-serif; font-size: .74rem;
  font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  cursor: pointer; transition: background .2s;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-pay:hover { background: var(--rose-lt); }
.btn-pay:disabled { opacity: .5; cursor: not-allowed; }
.spin {
  width: 14px; height: 14px;
  border: 2px solid rgba(0,0,0,.25); border-top-color: #0e0b10;
  border-radius: 50%; animation: spin .7s linear infinite; display: none;
}
.btn-pay.loading .spin { display: block; }
.btn-pay.loading .btxt { opacity: .6; }
.pay-note { font-size: .58rem; color: var(--cream-dim); margin-top: 11px; line-height: 1.8; text-align: center; }
.pay-step2 { display: none; padding: 30px; }
.pay-step2 h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--rose); margin-bottom: 12px; }
.pay-step2 p { font-size: .78rem; color: var(--cream-dim); line-height: 1.8; margin-bottom: 20px; }
.steps-list { display: flex; flex-direction: column; }
.step-row { display: flex; gap: 13px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.step-row:last-child { border-bottom: none; }
.step-ico { width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: .7rem; }
.s-done { background: var(--rose); color: #0e0b10; }
.s-active { border: 2px solid var(--rose); color: var(--rose); animation: pulse 1.5s infinite; }
.s-wait { background: var(--bg3); color: var(--cream-dim); border: 1px solid var(--border); }
.step-txt { font-size: .74rem; color: var(--cream-dim); }
.step-txt strong { display: block; color: var(--cream); margin-bottom: 1px; font-size: .78rem; }

/* ═══════════════════════════════
   SUCCESS PAGE
   ═══════════════════════════════ */
#success-page { display: none; min-height: 100vh; align-items: center; justify-content: center; padding: 40px 24px; text-align: center; flex-direction: column; }
#success-page.visible { display: flex; }
.suc-icon { font-size: 2.8rem; color: var(--rose); margin-bottom: 24px; }
.suc-title { font-family: 'Playfair Display', serif; font-size: 2.3rem; color: var(--rose); margin-bottom: 10px; }
.suc-sub { color: var(--cream-dim); font-size: .83rem; line-height: 1.9; margin-bottom: 32px; }
.dl-box { background: var(--bg2); border: 1px solid var(--border-h); padding: 28px; max-width: 440px; width: 100%; margin: 0 auto 20px; }
.dl-lbl { font-size: .58rem; letter-spacing: .25em; text-transform: uppercase; color: var(--rose-dk); margin-bottom: 7px; }
.dl-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-bottom: 18px; }

/* ═══════════════════════════════
   FOOTER
   ═══════════════════════════════ */
footer {
  background: var(--bg); border-top: 1px solid var(--border);
  padding: 56px 48px 36px; text-align: center;
}
.ft-logo { font-family: 'Cinzel', serif; font-size: 1.1rem; letter-spacing: .22em; color: var(--rose); margin-bottom: 22px; }
.ft-links { display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; margin-bottom: 26px; }
.ft-links a { font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: var(--cream-dim); text-decoration: none; transition: color .2s; }
.ft-links a:hover { color: var(--rose); }
.ft-legal { font-size: .58rem; color: var(--cream-dim); opacity: .42; line-height: 1.9; max-width: 560px; margin: 0 auto; }
.ft-legal a { color: var(--rose-dk); text-decoration: none; }

/* ═══════════════════════════════
   MISC
   ═══════════════════════════════ */
.loading-state { display: flex; align-items: center; justify-content: center; padding: 80px; gap: 12px; color: var(--cream-dim); font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; }
.spinner { width: 17px; height: 17px; border: 1px solid var(--border); border-top-color: var(--rose); border-radius: 50%; animation: spin .8s linear infinite; }
.fallback-link { color: var(--rose); font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; text-decoration: none; }
.fallback-link:hover { text-decoration: underline; }

/* ═══════════════════════════════
   ANIMATIONS
   ═══════════════════════════════ */
@keyframes rise    { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeOut { to   { opacity: 0; pointer-events: none; } }
@keyframes spin    { to   { transform: rotate(360deg); } }
@keyframes pulse   { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

/* ═══════════════════════════════
   THRONE INTEGRATION
   ═══════════════════════════════ */
.throne-section { background: var(--bg2); }
.throne-desc {
  color: var(--cream-dim); 
  max-width: 600px; 
  margin: 20px auto 40px; 
  font-size: 0.85rem; 
  line-height: 1.8;
  text-align: center;
}
.throne-container {
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid var(--border);
  background: var(--bg3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.throne-container iframe {
  width: 100%;
  height: 850px;
  display: block;
}
.throne-fallback {
  padding: 30px;
  text-align: center;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

/* ═══════════════════════════════
   RESPONSIVE
   ═══════════════════════════════ */
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-img-wrap { max-width: 340px; margin: 0 auto; }
  .about-tag { right: -12px; }
}
@media (max-width: 768px) {
  header { padding: 0 20px; }
  nav { display: none; }
  nav.open {
    display: flex; flex-direction: column; gap: 24px;
    position: fixed; inset: 0; background: var(--bg2); z-index: 400;
    align-items: center; justify-content: center;
  }
  nav.open a { font-size: .85rem; }
  .hamburger { display: flex; }
  .section { padding: 72px 22px; }
  footer { padding: 48px 22px 28px; }
  .crypto-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .custom-form { padding: 24px 20px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: clamp(2.8rem, 14vw, 4rem); }
}