:root {
  --gold: #c9a84c;
  --gold-light: #f0d080;
  --gold-dark: #8b6914;
  --deep: #06040a;
  --purple-dark: #0f0820;
  --purple-mid: #1a0f35;
  --crimson: #8b1a1a;
  --ivory: #f5f0e8;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
body {
  background: var(--deep);
  color: var(--ivory);
  font-family: 'Crimson Text', serif;
  overflow-x: hidden;
  cursor: pointer;
  width: 100%;
  max-width: 100vw;
}
/* Tous les éléments interactifs : cursor none aussi mais pointer-events actifs */
a, button, input, textarea, select, [onclick], label {
  cursor: pointer;
  pointer-events: auto !important;
}
/* Tous les overlays fixes non-interactifs */
#stars-canvas, #magic-canvas, .smoke-container,
.cursor, .cursor-ring, .cursor-ring2, .cursor-trail,
.magic-flash, .thunder-line, .rune, .orbit-particle {
  pointer-events: none !important;
}

/* ══════════════════════════════
   CURSOR MAGIQUE
══════════════════════════════ */
body { cursor: none; }
a, button, input, textarea, select { cursor: none; }

.cursor {
  position: fixed; width: 14px; height: 14px;
  background: radial-gradient(circle, #fff, var(--gold));
  border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width 0.3s, height 0.3s;
  mix-blend-mode: screen;
  box-shadow: 0 0 10px var(--gold), 0 0 20px rgba(201,168,76,0.4);
}
.cursor-trail {
  position: fixed; border-radius: 50%;
  pointer-events: none; z-index: 9997;
  transform: translate(-50%,-50%);
  background: var(--gold-light);
  mix-blend-mode: screen; opacity: 0;
}
.cursor-ring {
  position: fixed; width: 44px; height: 44px;
  border: 1px solid rgba(201,168,76,0.6); border-radius: 50%;
  pointer-events: none; z-index: 9996;
  transform: translate(-50%,-50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}
.cursor-ring2 {
  position: fixed; width: 70px; height: 70px;
  border: 1px solid rgba(201,168,76,0.2); border-radius: 50%;
  pointer-events: none; z-index: 9995;
  transform: translate(-50%,-50%);
  animation: ring2-spin 4s linear infinite;
}
@keyframes ring2-spin {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg); }
}

/* ══════════════════════════════
   CANVASES
══════════════════════════════ */
#stars-canvas, #magic-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none;
  max-width: 100vw;
  overflow: hidden;
}
#stars-canvas { z-index: 0; pointer-events: none !important; }
#magic-canvas { z-index: 3; pointer-events: none !important; }

/* ══════════════════════════════
   SMOKE AMBIENT
══════════════════════════════ */
.smoke-container {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  max-width: 100vw;
}

/* ══════════════════════════════
   NAV
══════════════════════════════ */
nav {
  position: fixed;
  top: 0; width: 100%;
  z-index: 200;
  padding: 22px 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(6,4,10,0.95), transparent);
  backdrop-filter: blur(8px);
}
.nav-logo {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.5rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 4px;
  text-shadow: 0 0 20px rgba(201,168,76,0.5);
}
.nav-links { display: flex; gap: 44px; list-style: none; }
.nav-links a {
  color: var(--ivory);
  text-decoration: none;
  font-family: 'IM Fell English', serif;
  font-size: 1rem;
  letter-spacing: 2px;
  opacity: 0.75;
  transition: all 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 50%;
  width: 0; height: 1px;
  background: var(--gold);
  transition: all 0.3s;
  transform: translateX(-50%);
}
.nav-links a:hover { opacity: 1; color: var(--gold); text-shadow: 0 0 12px rgba(201,168,76,0.6); }
.nav-links a:hover::after { width: 100%; }

/* ── NAV ADMIN BUTTON ── */
.nav-admin-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.3);
  color: rgba(201,168,76,0.75);
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.72rem;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.nav-admin-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(201,168,76,0.1);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s;
}
.nav-admin-btn:hover::before { transform: scaleX(1); }
.nav-admin-btn:hover { border-color: rgba(201,168,76,0.7); color: var(--gold); box-shadow: 0 0 20px rgba(201,168,76,0.15); }
.nav-admin-btn.active { background: rgba(201,168,76,0.18); border-color: var(--gold); color: var(--gold); box-shadow: 0 0 25px rgba(201,168,76,0.2); }
.nav-admin-icon { font-size: 0.9rem; transition: transform 0.4s; }
.nav-admin-btn:hover .nav-admin-icon,
.nav-admin-btn.active .nav-admin-icon { transform: rotate(60deg); }

/* ── LOGIN MODAL ── */
.login-modal {
  position: fixed; inset: 0;
  z-index: 600;
  display: none;
  align-items: center; justify-content: center;
  background: rgba(6,4,10,0.88);
  backdrop-filter: blur(16px);
}
.login-modal.open { display: flex; }
.login-box {
  width: 420px;
  background: linear-gradient(135deg, rgba(26,15,53,0.98), rgba(6,4,10,0.99));
  border: 1px solid rgba(201,168,76,0.35);
  padding: 56px 50px 48px;
  position: relative;
  animation: fade-up 0.4s ease both;
  text-align: center;
}
.login-box::before, .login-box::after {
  content: ''; position: absolute; width: 36px; height: 36px;
}
.login-box::before { top:-1px; left:-1px; border-top:2px solid var(--gold); border-left:2px solid var(--gold); }
.login-box::after  { bottom:-1px; right:-1px; border-bottom:2px solid var(--gold); border-right:2px solid var(--gold); }
.login-corner-tr, .login-corner-bl { position:absolute; width:36px; height:36px; }
.login-corner-tr { top:-1px; right:-1px; border-top:2px solid var(--gold); border-right:2px solid var(--gold); }
.login-corner-bl { bottom:-1px; left:-1px; border-bottom:2px solid var(--gold); border-left:2px solid var(--gold); }

.login-icon { font-size:2.8rem; margin-bottom:20px; display:block; filter:drop-shadow(0 0 12px rgba(201,168,76,0.5)); }
.login-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.1rem; color: var(--gold);
  letter-spacing: 3px; margin-bottom: 8px;
}
.login-sub {
  font-family: 'IM Fell English', serif; font-style:italic;
  font-size: 0.9rem; opacity:0.45; margin-bottom:36px; letter-spacing:1px;
}
.login-divider {
  width:100%; height:1px;
  background:linear-gradient(to right,transparent,rgba(201,168,76,0.25),transparent);
  margin-bottom:32px;
}
.login-field { margin-bottom:18px; text-align:left; }
.login-field label {
  display:block;
  font-family:'IM Fell English',serif; font-style:italic;
  font-size:0.85rem; color:rgba(201,168,76,0.65);
  letter-spacing:2px; margin-bottom:8px;
}
.login-field input {
  width:100%;
  background: rgba(6,4,10,0.9);
  border: 1px solid rgba(201,168,76,0.22);
  color: var(--ivory);
  font-family:'Crimson Text',serif; font-size:1.05rem;
  padding:12px 16px; outline:none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.login-field input:focus {
  border-color: rgba(201,168,76,0.6);
  box-shadow: 0 0 16px rgba(201,168,76,0.08);
}
.login-error {
  color: #cc4444; font-size:0.85rem; letter-spacing:1px;
  margin-bottom:16px; min-height:1.2em;
  font-family:'IM Fell English',serif; font-style:italic;
  opacity:0; transition:opacity 0.3s;
}
.login-error.show { opacity:1; }
.login-submit {
  width:100%; padding:15px;
  font-family:'Cinzel Decorative',serif; font-size:0.8rem; letter-spacing:3px;
  color:var(--deep);
  background:linear-gradient(135deg,var(--gold-dark),var(--gold-light));
  border:none; cursor:pointer; transition:all 0.4s; margin-top:8px;
}
.login-submit:hover { filter:brightness(1.2); box-shadow:0 0 30px rgba(201,168,76,0.35); }
.login-close {
  position:absolute; top:16px; right:20px;
  background:none; border:none; color:rgba(201,168,76,0.4);
  font-size:1.2rem; cursor:pointer; transition:all 0.3s;
}
.login-close:hover { color:var(--gold); }
.login-logout {
  margin-top:20px; font-size:0.78rem; letter-spacing:2px;
  color:rgba(200,80,80,0.6); background:none; border:none;
  font-family:'Cinzel Decorative',serif; cursor:pointer;
  transition:color 0.3s; display:none;
}
.login-logout:hover { color:#cc4444; }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  z-index: 10;
  overflow: hidden;
  padding: 100px 20px 160px;
  box-sizing: border-box;
}

/* --- HAT ANIMATED --- */
.hat-scene {
  position: relative;
  width: 180px; height: 200px;
  margin-bottom: 28px;
  flex-shrink: 0;
}
.hat-scene svg { width: 100%; height: 100%; }
.rabbit { animation: rabbit-pop 5s ease-in-out infinite; transform-origin: bottom center; }
@keyframes rabbit-pop {
  0%,55%  { transform: translateY(70px) scaleY(0); opacity: 0; }
  65%     { transform: translateY(-5px) scaleY(1.08); opacity: 1; }
  72%,95% { transform: translateY(0) scaleY(1); opacity: 1; }
  100%    { transform: translateY(70px) scaleY(0); opacity: 0; }
}
/* Stars from hat */
.hat-star {
  position: absolute;
  font-size: 1rem;
  animation: hat-star-fly 3.5s ease-out infinite;
  pointer-events: none;
}
.hat-star:nth-child(1)  { top:30%; left:35%; animation-delay:0s;    --sdx:-55px; --sdy:-100px; }
.hat-star:nth-child(2)  { top:25%; left:50%; animation-delay:0.4s;  --sdx:10px;  --sdy:-120px; }
.hat-star:nth-child(3)  { top:28%; left:62%; animation-delay:0.8s;  --sdx:65px;  --sdy:-90px; }
.hat-star:nth-child(4)  { top:20%; left:44%; animation-delay:1.2s;  --sdx:-25px; --sdy:-130px; }
.hat-star:nth-child(5)  { top:15%; left:55%; animation-delay:1.6s;  --sdx:40px;  --sdy:-140px; }
.hat-star:nth-child(6)  { top:22%; left:30%; animation-delay:2s;    --sdx:-70px; --sdy:-110px; }
.hat-star:nth-child(7)  { top:18%; left:68%; animation-delay:2.4s;  --sdx:80px;  --sdy:-120px; }
.hat-star:nth-child(8)  { top:25%; left:42%; animation-delay:2.8s;  --sdx:0px;   --sdy:-150px; }
@keyframes hat-star-fly {
  0%   { transform: translate(0,0) scale(1.2) rotate(0deg); opacity: 1; }
  100% { transform: translate(var(--sdx), var(--sdy)) scale(0) rotate(360deg); opacity: 0; }
}

/* Orbiting particles around hat */
.orbit-particle {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  top: 50%; left: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 8px var(--gold);
  animation: orbit-around 3s linear infinite;
  transform-origin: 0 0;
}
.orbit-particle:nth-child(9)  { animation-duration: 2.5s; width: 5px; height: 5px; --orbit-r: 90px; }
.orbit-particle:nth-child(10) { animation-duration: 3.5s; animation-direction: reverse; width: 6px; height: 6px; --orbit-r: 110px; background: #ff99ff; }
.orbit-particle:nth-child(11) { animation-duration: 4s;   width: 4px; height: 4px;  --orbit-r: 80px; background: #88ccff; }
@keyframes orbit-around {
  from { transform: rotate(0deg) translateX(var(--orbit-r, 100px)); }
  to   { transform: rotate(360deg) translateX(var(--orbit-r, 100px)); }
}

.hero-eyebrow {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 7px;
  text-transform: uppercase;
  margin-bottom: 16px;
  animation: fade-up 1s ease 0.3s both;
}
.hero-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(2.2rem, 5.5vw, 5.5rem);
  line-height: 1.15;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light), var(--gold), var(--gold-dark));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gold-shimmer 4s ease infinite, fade-up 1s ease 0.5s both;
  filter: drop-shadow(0 0 40px rgba(201,168,76,0.5));
}
@keyframes gold-shimmer {
  0%,100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
.hero-subtitle {
  font-family: 'IM Fell English', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--ivory);
  opacity: 0.85;
  margin-top: 10px;
  letter-spacing: 3px;
  animation: fade-up 1s ease 0.7s both;
}
.hero-divider {
  width: 200px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 20px auto;
  animation: fade-up 1s ease 0.9s both;
  position: relative;
  flex-shrink: 0;
}
.hero-divider::before, .hero-divider::after {
  content: '✦';
  position: absolute;
  top: 50%;
  color: var(--gold);
  font-size: 0.7rem;
  transform: translateY(-50%);
}
.hero-divider::before { left: -16px; }
.hero-divider::after  { right: -16px; }

.hero-cta {
  display: inline-block;
  padding: 18px 58px;
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.9rem;
  letter-spacing: 3px;
  color: var(--deep);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  animation: fade-up 1s ease 1.1s both;
}
.hero-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  opacity: 0; transition: opacity 0.4s;
}
.hero-cta:hover::before { opacity: 1; }
.hero-cta:hover { transform: translateY(-4px); box-shadow: 0 0 40px rgba(201,168,76,0.6), 0 20px 60px rgba(0,0,0,0.4); }
.hero-cta span { position: relative; z-index: 1; }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 0; right: 0;
  margin: 0 auto;
  width: fit-content;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  opacity: 0.4;
  animation: fade-up 1s ease 1.5s both;
  pointer-events: none;
}
.scroll-hint span { font-size: 0.6rem; letter-spacing: 5px; text-transform: uppercase; }
.scroll-line {
  width: 1px; height: 55px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 2s ease infinite;
}
@keyframes scroll-pulse {
  0%   { transform: scaleY(0); transform-origin: top; }
  49%  { transform: scaleY(1); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ══════════════════════════════
   MAGIC REVEAL OVERLAY
   (effet "rideau" au chargement)
══════════════════════════════ */
#magic-curtain {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none !important;
  display: flex;
  overflow: hidden;
}
.curtain-half {
  flex: 0 0 50%;
  width: 50%;
  background: var(--purple-dark);
  pointer-events: none !important;
  animation: curtain-open 1.6s cubic-bezier(0.77,0,0.18,1) 0.3s forwards;
}
.curtain-half:first-child {
  transform-origin: left center;
  animation-name: curtain-open-l;
}
.curtain-half:last-child {
  transform-origin: right center;
  animation-name: curtain-open-r;
}
@keyframes curtain-open-l { from { transform: scaleX(1); } to { transform: scaleX(0); } }
@keyframes curtain-open-r { from { transform: scaleX(1); } to { transform: scaleX(0); } }

/* ══════════════════════════════
   FLOATING MAGIC RUNES (ambient)
══════════════════════════════ */
.rune {
  position: fixed;
  font-size: 1.4rem;
  color: rgba(201,168,76,0.12);
  pointer-events: none;
  z-index: 2;
  animation: rune-float linear infinite;
  user-select: none;
  max-width: 2rem;
  overflow: hidden;
}
@keyframes rune-float {
  0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  5%   { opacity: 1; }
  95%  { opacity: 0.8; }
  100% { transform: translateY(-120px) rotate(360deg); opacity: 0; }
}

/* ══════════════════════════════
   SECTIONS
══════════════════════════════ */
section {
  position: relative;
  z-index: 10;
  padding: 130px 70px;
}
.section-label {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 7px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center; gap: 20px;
}
.section-label::before, .section-label::after {
  content: ''; flex: 1; max-width: 90px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.section-label::after { background: linear-gradient(to left, transparent, var(--gold)); }
.section-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  text-align: center;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 70px;
  filter: drop-shadow(0 0 25px rgba(201,168,76,0.35));
}

/* ══════════════════════════════
   ABOUT
══════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.magician-figure { position: relative; display: flex; justify-content: center; }
.magician-silhouette { width: 300px; height: 450px; position: relative; }

/* Aura rings */
.aura-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: aura-pulse 3s ease-in-out infinite;
}
.aura-ring:nth-child(1) { width: 320px; height: 320px; border: 1px solid rgba(201,168,76,0.25); }
.aura-ring:nth-child(2) { width: 390px; height: 390px; border: 1px solid rgba(201,168,76,0.14); animation-delay: 0.5s; }
.aura-ring:nth-child(3) { width: 460px; height: 460px; border: 1px solid rgba(201,168,76,0.07); animation-delay: 1s; }
@keyframes aura-pulse {
  0%,100% { transform: translate(-50%,-50%) scale(1); opacity: 1; }
  50%      { transform: translate(-50%,-50%) scale(1.06); opacity: 0.55; }
}

/* Floating cards */
.floating-card {
  position: absolute;
  width: 52px; height: 72px;
  background: linear-gradient(135deg, #f5f0e8, #e0d4b8);
  border-radius: 6px;
  border: 1px solid rgba(201,168,76,0.6);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6), 0 0 15px rgba(201,168,76,0.2);
  animation: card-float 4s ease-in-out infinite;
}
.floating-card:nth-child(4)  { top:8%;   left:-35px; --rot:-15deg; animation-delay:0s; }
.floating-card:nth-child(5)  { top:18%;  right:-25px; --rot:20deg; animation-delay:1s; }
.floating-card:nth-child(6)  { bottom:18%; left:-45px; --rot:10deg; animation-delay:2s; }
.floating-card:nth-child(7)  { bottom:28%; right:-35px; --rot:-12deg; animation-delay:0.5s; }
@keyframes card-float {
  0%,100% { transform: rotate(var(--rot)) translateY(0); }
  50%      { transform: rotate(var(--rot)) translateY(-18px); }
}

.about-text h3 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.9rem;
  color: var(--gold);
  margin-bottom: 26px;
}
.about-text p { font-size: 1.15rem; line-height: 1.95; opacity: 0.85; margin-bottom: 20px; }
.stats-row { display: flex; gap: 44px; margin-top: 44px; }
.stat { text-align: center; }
.stat-number {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2.5rem; color: var(--gold); display: block; line-height: 1;
  text-shadow: 0 0 20px rgba(201,168,76,0.4);
}
.stat-label { font-size: 0.82rem; letter-spacing: 2px; text-transform: uppercase; opacity: 0.55; margin-top: 6px; }

/* ══════════════════════════════
   MAGIC TRICK INTERACTIVE
══════════════════════════════ */
.trick-zone {
  max-width: 900px;
  margin: 0 auto 80px;
  background: linear-gradient(135deg, rgba(26,15,53,0.7), rgba(6,4,10,0.8));
  border: 1px solid rgba(201,168,76,0.2);
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.trick-zone::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(201,168,76,0.08), transparent 60%);
  pointer-events: none;
  transition: none;
}
.trick-zone-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.4rem; color: var(--gold); margin-bottom: 20px;
}
.trick-zone p { font-size: 1.15rem; line-height: 1.9; opacity: 0.8; margin-bottom: 32px; }
.card-reveal-btn {
  background: none; border: 1px solid rgba(201,168,76,0.5);
  color: var(--gold);
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.85rem; letter-spacing: 3px;
  padding: 14px 40px;
  cursor: pointer;
  transition: all 0.4s;
  position: relative; overflow: hidden;
}
.card-reveal-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(201,168,76,0.1);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s;
}
.card-reveal-btn:hover::before { transform: scaleX(1); }
.card-reveal-btn:hover { border-color: var(--gold); box-shadow: 0 0 25px rgba(201,168,76,0.3); }

/* The magic card flip */
.card-flip-container {
  perspective: 800px;
  width: 140px; height: 200px;
  margin: 40px auto 0;
}
.card-flip-inner {
  width: 100%; height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.4,0,0.2,1);
  position: relative;
}
.card-flip-inner.flipped { transform: rotateY(180deg); }
.card-face, .card-back {
  position: absolute; inset: 0;
  backface-visibility: hidden;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
}
.card-face {
  background: linear-gradient(135deg, #1a0f35, #0f0820);
  border: 2px solid rgba(201,168,76,0.4);
  background-image: repeating-linear-gradient(
    45deg,
    rgba(201,168,76,0.04) 0px, rgba(201,168,76,0.04) 2px,
    transparent 2px, transparent 10px
  );
}
.card-back {
  background: linear-gradient(135deg, #f5f0e8, #ede5d0);
  border: 2px solid var(--gold);
  transform: rotateY(180deg);
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.5rem;
  color: var(--crimson);
  flex-direction: column; gap: 8px;
}
.card-back .suit-top { position: absolute; top: 10px; left: 14px; font-size: 1rem; }
.card-back .suit-bot { position: absolute; bottom: 10px; right: 14px; font-size: 1rem; transform: rotate(180deg); }

/* ══════════════════════════════
   SHOWS GRID
══════════════════════════════ */
.shows-section {
  background: linear-gradient(to bottom, transparent, rgba(26,15,53,0.7), transparent);
}
.shows-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.show-card {
  background: linear-gradient(135deg, rgba(26,15,53,0.8), rgba(6,4,10,0.9));
  border: 1px solid rgba(201,168,76,0.2);
  padding: 50px 34px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
}
.show-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.05), rgba(201,168,76,0.12));
  opacity: 0; transition: opacity 0.5s;
}
.show-card::after {
  content: '';
  position: absolute;
  bottom: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(201,168,76,0.06), transparent 60%);
  opacity: 0; transition: opacity 0.5s;
  animation: card-shimmer 3s linear infinite;
}
@keyframes card-shimmer {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.show-card:hover::before { opacity: 1; }
.show-card:hover::after  { opacity: 1; }
.show-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201,168,76,0.6);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 40px rgba(201,168,76,0.12), inset 0 1px 0 rgba(201,168,76,0.2);
}
.show-icon {
  font-size: 3rem; margin-bottom: 24px; display: block;
  animation: icon-glow 3s ease-in-out infinite;
}
@keyframes icon-glow {
  0%,100% { filter: drop-shadow(0 0 8px rgba(201,168,76,0.5)); }
  50%      { filter: drop-shadow(0 0 22px rgba(201,168,76,1)) drop-shadow(0 0 40px rgba(201,168,76,0.4)); }
}
.show-title { font-family: 'Cinzel Decorative', serif; font-size: 1.2rem; color: var(--gold); margin-bottom: 16px; }
.show-desc  { line-height: 1.8; opacity: 0.8; font-size: 1.05rem; }
.corner-ornament {
  position: absolute; top: 8px; right: 8px;
  width: 28px; height: 28px;
  border-top: 1px solid var(--gold); border-right: 1px solid var(--gold); opacity: 0.5;
}

/* ══════════════════════════════
   CRYSTAL BALL SECTION
══════════════════════════════ */
.crystal-section {
  text-align: center;
  background: radial-gradient(ellipse at center, rgba(26,15,53,0.5) 0%, transparent 70%);
}
.crystal-wrapper {
  position: relative;
  display: inline-block;
  margin: 0 auto 50px;
}
.crystal-ball {
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(200,180,255,0.9), rgba(80,40,160,0.7) 40%, rgba(20,10,40,0.95) 70%);
  box-shadow:
    0 0 40px rgba(160,120,255,0.5),
    0 0 80px rgba(120,80,220,0.3),
    inset -20px -20px 40px rgba(0,0,0,0.4),
    inset 10px 10px 20px rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
  animation: crystal-pulse 4s ease-in-out infinite;
  cursor: pointer;
}
@keyframes crystal-pulse {
  0%,100% { box-shadow: 0 0 40px rgba(160,120,255,0.5), 0 0 80px rgba(120,80,220,0.3), inset -20px -20px 40px rgba(0,0,0,0.4), inset 10px 10px 20px rgba(255,255,255,0.15); }
  50%      { box-shadow: 0 0 70px rgba(200,150,255,0.8), 0 0 140px rgba(160,100,255,0.5), inset -20px -20px 40px rgba(0,0,0,0.4), inset 10px 10px 20px rgba(255,255,255,0.2); }
}
.crystal-inner {
  position: absolute; inset: 15px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 30%, rgba(255,255,255,0.1), transparent 60%);
  animation: crystal-swirl 8s linear infinite;
  overflow: hidden;
}
.crystal-inner::before {
  content: '🌟';
  position: absolute;
  font-size: 2rem;
  top: 30%; left: 30%;
  animation: crystal-float 4s ease-in-out infinite;
  filter: blur(1px);
}
@keyframes crystal-swirl {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes crystal-float {
  0%,100% { transform: translate(0,0) scale(0.8); opacity: 0.6; }
  50%      { transform: translate(10px,-10px) scale(1.1); opacity: 1; }
}
.crystal-reflection {
  position: absolute;
  top: 20%; left: 25%;
  width: 30%; height: 20%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.4), transparent);
  border-radius: 50%;
  transform: rotate(-30deg);
}
.crystal-stand {
  width: 80px; height: 30px;
  background: linear-gradient(to bottom, var(--gold-dark), #5a3f08);
  border-radius: 0 0 40px 40px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.crystal-stand::before {
  content: '';
  position: absolute;
  top: -8px; left: -20px; right: -20px; height: 14px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-dark));
  border-radius: 5px;
}
.crystal-text {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.85;
}
#prophecy-text {
  color: var(--gold-light);
  font-size: 1.5rem;
  display: block;
  margin-top: 20px;
  min-height: 2.5rem;
  font-family: 'Cinzel Decorative', serif;
  font-size: 1rem;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(201,168,76,0.6);
  animation: prophecy-fade 3s ease-in-out infinite;
}
@keyframes prophecy-fade {
  0%,100% { opacity: 0.6; }
  50%      { opacity: 1; }
}
.crystal-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 40px;
  background: none;
  border: 1px solid rgba(160,120,255,0.5);
  color: rgba(200,170,255,0.9);
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.8rem;
  letter-spacing: 3px;
  cursor: pointer;
  transition: all 0.4s;
}
.crystal-btn:hover {
  background: rgba(160,120,255,0.1);
  border-color: rgba(200,170,255,0.8);
  box-shadow: 0 0 30px rgba(160,120,255,0.3);
  color: #d4b0ff;
}

/* Floating symbols around crystal */
.crystal-symbol {
  position: absolute;
  font-size: 1.2rem;
  color: rgba(160,120,255,0.5);
  animation: sym-orbit 6s linear infinite;
  transform-origin: 0 0;
}
.crystal-symbol:nth-child(1) { animation-duration: 5s;   --sr: 130px; }
.crystal-symbol:nth-child(2) { animation-duration: 7s;   --sr: 150px; animation-direction: reverse; animation-delay: -2s; }
.crystal-symbol:nth-child(3) { animation-duration: 4.5s; --sr: 120px; animation-delay: -1s; }
.crystal-symbol:nth-child(4) { animation-duration: 8s;   --sr: 160px; animation-delay: -3s; animation-direction: reverse; }
@keyframes sym-orbit {
  from { transform: rotate(0deg) translateX(var(--sr, 130px)); }
  to   { transform: rotate(360deg) translateX(var(--sr, 130px)); }
}

/* ══════════════════════════════
   MARQUEE TRICKS
══════════════════════════════ */
.tricks-marquee {
  overflow: hidden; position: relative; padding: 40px 0;
}
.tricks-marquee::before, .tricks-marquee::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
}
.tricks-marquee::before { left: 0;  background: linear-gradient(to right, var(--deep), transparent); }
.tricks-marquee::after  { right: 0; background: linear-gradient(to left, var(--deep), transparent); }
.tricks-track {
  display: flex; gap: 28px;
  animation: marquee 22s linear infinite;
  width: max-content;
}
.tricks-track2 {
  display: flex; gap: 28px;
  animation: marquee-r 25s linear infinite;
  width: max-content;
  margin-top: 16px;
}
@keyframes marquee   { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marquee-r { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.trick-pill {
  padding: 13px 26px;
  border: 1px solid rgba(201,168,76,0.3);
  font-family: 'IM Fell English', serif;
  font-style: italic; font-size: 1.05rem;
  color: var(--ivory); white-space: nowrap;
  background: rgba(201,168,76,0.04);
  transition: all 0.3s;
}
.trick-pill:hover { background: rgba(201,168,76,0.15); color: var(--gold); }

/* ══════════════════════════════
   TESTIMONIALS
══════════════════════════════ */
.testimonials-section { background: linear-gradient(to bottom, transparent, rgba(15,8,32,0.8), transparent); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px; margin: 0 auto;
}
.testimonial {
  padding: 42px;
  background: rgba(26,15,53,0.4);
  border-left: 2px solid rgba(201,168,76,0.3);
  position: relative; transition: all 0.4s;
}
.testimonial::before {
  content: '"';
  position: absolute; top: -10px; left: 30px;
  font-family: 'Cinzel Decorative', serif;
  font-size: 5rem; color: var(--gold); opacity: 0.13; line-height: 1;
}
.testimonial:hover { border-left-color: var(--gold); background: rgba(26,15,53,0.7); box-shadow: -4px 0 30px rgba(201,168,76,0.1); }
.testimonial-text   { font-size: 1.1rem; line-height: 1.9; font-style: italic; opacity: 0.85; margin-bottom: 24px; }
.testimonial-author { font-family: 'Cinzel Decorative', serif; font-size: 0.8rem; color: var(--gold); letter-spacing: 2px; }
.testimonial-stars  { color: var(--gold); font-size: 0.9rem; margin-bottom: 16px; }

/* ══════════════════════════════
   BOOKING
══════════════════════════════ */
.booking-section { text-align: center; padding: 140px 70px; }
.booking-frame {
  max-width: 720px; margin: 0 auto;
  position: relative; padding: 90px 70px;
  background: linear-gradient(135deg, rgba(26,15,53,0.92), rgba(6,4,10,0.97));
  border: 1px solid rgba(201,168,76,0.3);
}
.booking-frame::before, .booking-frame::after {
  content: ''; position: absolute; width: 44px; height: 44px;
}
.booking-frame::before { top: -1px; left: -1px; border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.booking-frame::after  { bottom: -1px; right: -1px; border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); }
.booking-corner-tr, .booking-corner-bl { position: absolute; width: 44px; height: 44px; }
.booking-corner-tr { top: -1px; right: -1px; border-top: 2px solid var(--gold); border-right: 2px solid var(--gold); }
.booking-corner-bl { bottom: -1px; left: -1px; border-bottom: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.booking-magic-line {
  width: 1px; height: 65px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  margin: 0 auto 44px;
  animation: line-pulse 2s ease-in-out infinite;
}
@keyframes line-pulse { 0%,100% { opacity: 0.35; } 50% { opacity: 1; } }
.booking-frame p { font-size: 1.2rem; line-height: 1.9; opacity: 0.8; margin-bottom: 44px; }
.booking-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  display: inline-block; padding: 18px 52px;
  font-family: 'Cinzel Decorative', serif; font-size: 0.85rem; letter-spacing: 3px;
  color: var(--deep);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  text-decoration: none; position: relative; overflow: hidden;
  transition: all 0.4s;
  border-radius: 2px;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 60px rgba(201,168,76,0.4); filter: brightness(1.2); }
.btn-secondary {
  display: inline-block; padding: 18px 52px;
  font-family: 'Cinzel Decorative', serif; font-size: 0.85rem; letter-spacing: 3px;
  color: var(--gold); background: transparent;
  border: 1px solid rgba(201,168,76,0.5); text-decoration: none; transition: all 0.4s;
  border-radius: 2px;
}
.btn-secondary:hover { background: rgba(201,168,76,0.1); border-color: var(--gold); transform: translateY(-3px); }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
  position: relative; z-index: 10;
  text-align: center; padding: 55px;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.footer-logo {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.9rem; color: var(--gold);
  margin-bottom: 20px; display: block; letter-spacing: 6px;
  text-shadow: 0 0 25px rgba(201,168,76,0.4);
}
footer p { opacity: 0.38; font-size: 0.88rem; letter-spacing: 2px; }

/* ══════════════════════════════
   MAGIC FLASH
══════════════════════════════ */
.magic-flash {
  position: fixed; inset: 0;
  background: radial-gradient(circle at var(--fx,50%) var(--fy,50%), rgba(240,208,128,0.25), transparent 50%);
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  animation: flash-in 0.4s ease-out forwards;
}
@keyframes flash-in {
  0%   { opacity: 1; }
  100% { opacity: 0; }
}

/* ══════════════════════════════
   THUNDER LINES
══════════════════════════════ */
.thunder-line {
  position: fixed;
  top: 0; width: 1px;
  background: linear-gradient(to bottom, transparent 0%, rgba(201,168,76,0.9) 20%, rgba(201,168,76,0.4) 80%, transparent 100%);
  pointer-events: none;
  z-index: 4;
  animation: thunder-fall 0.5s ease-in forwards;
  filter: blur(0.5px) drop-shadow(0 0 3px var(--gold));
}
@keyframes thunder-fall {
  from { height: 0; opacity: 1; }
  to   { height: 100vh; opacity: 0; }
}

/* ══════════════════════════════
   MAGIC POTION COUNTER
══════════════════════════════ */
.potion-bar {
  display: flex;
  justify-content: center;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto 80px;
  padding: 50px;
  background: linear-gradient(135deg, rgba(26,15,53,0.5), rgba(6,4,10,0.6));
  border: 1px solid rgba(201,168,76,0.15);
}
.potion {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.potion-svg { animation: potion-bubble 3s ease-in-out infinite; }
.potion-svg:nth-child(1) { animation-delay: 0s; }
.potion:nth-child(2) .potion-svg { animation-delay: 1s; }
.potion:nth-child(3) .potion-svg { animation-delay: 2s; }
@keyframes potion-bubble {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.potion-label {
  font-family: 'IM Fell English', serif;
  font-style: italic; font-size: 0.9rem;
  color: var(--gold); letter-spacing: 2px;
  text-align: center;
}

/* ══════════════════════════════
   PARALLAX STARS
══════════════════════════════ */
.parallax-stars {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ══════════════════════════════
   SCROLL REVEAL
══════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(44px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.35s; }

/* ══════════════════════════════
   SPARKLE BURST (on hover)
══════════════════════════════ */
@keyframes sparkle-pop {
  0%   { transform: translate(-50%,-50%) scale(0) rotate(0deg); opacity: 1; }
  100% { transform: translate(calc(-50% + var(--spx)), calc(-50% + var(--spy))) scale(1) rotate(var(--spr)); opacity: 0; }
}

/* ══════════════════════════════
   BLOG / ARTICLES
══════════════════════════════ */
.blog-section { background: linear-gradient(to bottom, transparent, rgba(26,15,53,0.5), transparent); }

/* Admin toggle button */
.blog-admin-toggle {
  display: flex; justify-content: center; margin-bottom: 50px;
}
.admin-btn {
  background: none;
  border: 1px solid rgba(201,168,76,0.3);
  color: rgba(201,168,76,0.6);
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.7rem;
  letter-spacing: 3px;
  padding: 10px 28px;
  cursor: pointer;
  transition: all 0.3s;
}
.admin-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.05); }

/* Article editor panel */
.article-editor {
  max-width: 800px; margin: 0 auto 60px;
  background: linear-gradient(135deg, rgba(26,15,53,0.95), rgba(6,4,10,0.98));
  border: 1px solid rgba(201,168,76,0.35);
  padding: 50px;
  display: none;
  position: relative;
}
.article-editor.open { display: block; animation: fade-up 0.4s ease both; }
.article-editor::before, .article-editor::after {
  content: ''; position: absolute; width: 36px; height: 36px;
}
.article-editor::before { top: -1px; left: -1px; border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.article-editor::after  { bottom: -1px; right: -1px; border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); }

.editor-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.1rem; color: var(--gold);
  margin-bottom: 30px; letter-spacing: 2px;
}
.editor-field {
  width: 100%; margin-bottom: 18px;
}
.editor-field label {
  display: block;
  font-family: 'IM Fell English', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(201,168,76,0.7);
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.editor-field input,
.editor-field textarea,
.editor-field select {
  width: 100%;
  background: rgba(6,4,10,0.8);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--ivory);
  font-family: 'Crimson Text', serif;
  font-size: 1.05rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.3s;
  resize: vertical;
}
.editor-field input:focus,
.editor-field textarea:focus,
.editor-field select:focus { border-color: rgba(201,168,76,0.7); }
.editor-field textarea { min-height: 180px; }
.editor-field select option { background: #0f0820; }

.editor-actions { display: flex; gap: 14px; margin-top: 24px; justify-content: flex-end; }
.btn-publish {
  padding: 14px 36px;
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.8rem; letter-spacing: 3px;
  color: var(--deep);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  border: none; cursor: pointer; transition: all 0.3s;
}
.btn-publish:hover { filter: brightness(1.2); box-shadow: 0 0 30px rgba(201,168,76,0.4); }
.btn-cancel {
  padding: 14px 28px;
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.8rem; letter-spacing: 3px;
  color: rgba(201,168,76,0.6);
  background: none; border: 1px solid rgba(201,168,76,0.3); cursor: pointer; transition: all 0.3s;
}
.btn-cancel:hover { border-color: rgba(201,168,76,0.6); color: var(--gold); }

/* Articles grid */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px; margin: 0 auto;
}
.article-card {
  background: linear-gradient(135deg, rgba(26,15,53,0.7), rgba(6,4,10,0.85));
  border: 1px solid rgba(201,168,76,0.18);
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  cursor: pointer;
  border-radius: 2px;
}
.article-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.04), rgba(201,168,76,0.1));
  opacity: 0; transition: opacity 0.4s;
}
.article-card:hover::before { opacity: 1; }
.article-card:hover { transform: translateY(-8px); border-color: rgba(201,168,76,0.45); box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(201,168,76,0.08); }

.article-badge {
  display: inline-block;
  padding: 4px 14px;
  font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase;
  font-family: 'Cinzel Decorative', serif;
  background: rgba(201,168,76,0.12);
  color: var(--gold);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  margin-bottom: 0;
}
.article-img-zone {
  height: 180px;
  background: linear-gradient(135deg, rgba(26,15,53,0.9), rgba(15,8,32,0.95));
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  border-bottom: 1px solid rgba(201,168,76,0.12);
  position: relative;
  overflow: hidden;
}
.article-img-zone img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.article-card:hover .article-img-zone img { transform: scale(1.05); }
.article-img-zone .img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(6,4,10,0.5));
}
.article-body { padding: 28px 28px 20px; }
.article-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
}
.article-date {
  font-size: 0.8rem; opacity: 0.45; letter-spacing: 1px;
  font-family: 'IM Fell English', serif; font-style: italic;
}
.article-cat {
  font-size: 0.7rem; letter-spacing: 2px;
  color: var(--gold); opacity: 0.7;
  font-family: 'Cinzel Decorative', serif;
}
.article-h {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1rem; color: var(--gold);
  margin-bottom: 12px; line-height: 1.4;
}
.article-excerpt {
  font-size: 1rem; line-height: 1.8; opacity: 0.72;
  display: -webkit-box; -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden;
}
.article-footer {
  padding: 16px 28px 22px;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(201,168,76,0.08);
}
.article-read-btn {
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.7rem; letter-spacing: 2px;
  color: var(--gold); background: none; border: none; cursor: pointer;
  transition: all 0.3s; padding: 0;
  display: flex; align-items: center; gap: 8px;
}
.article-read-btn::after { content: '→'; transition: transform 0.3s; }
.article-read-btn:hover { opacity: 0.8; }
.article-read-btn:hover::after { transform: translateX(4px); }
.article-delete-btn {
  background: none; border: none;
  color: rgba(139,26,26,0.5); font-size: 0.8rem; cursor: pointer;
  transition: all 0.3s; padding: 4px 8px;
  display: none;
}
.article-delete-btn:hover { color: #cc3333; }
.admin-mode .article-delete-btn { display: block; }

/* Article reader modal */
.article-modal {
  position: fixed; inset: 0;
  z-index: 500;
  display: none;
  align-items: flex-start; justify-content: center;
  padding: 80px 20px 40px;
  background: rgba(6,4,10,0.92);
  backdrop-filter: blur(12px);
  overflow-y: auto;
}
.article-modal.open { display: flex; }
.article-modal-inner {
  max-width: 780px; width: 100%;
  background: linear-gradient(135deg, rgba(26,15,53,0.98), rgba(6,4,10,0.99));
  border: 1px solid rgba(201,168,76,0.3);
  padding: 60px;
  position: relative;
  animation: fade-up 0.4s ease both;
}
.article-modal-inner::before, .article-modal-inner::after {
  content: ''; position: absolute; width: 40px; height: 40px;
}
.article-modal-inner::before { top: -1px; left: -1px; border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.article-modal-inner::after  { bottom: -1px; right: -1px; border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); }
.modal-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; color: var(--gold);
  font-size: 1.5rem; cursor: pointer; opacity: 0.6; transition: opacity 0.3s;
}
.modal-close:hover { opacity: 1; }
.modal-cat { font-family:'Cinzel Decorative',serif; font-size:0.75rem; color:var(--gold); letter-spacing:3px; margin-bottom:16px; opacity:0.7; }
.modal-title { font-family:'Cinzel Decorative',serif; font-size:1.8rem; color:var(--gold); margin-bottom:20px; line-height:1.3; filter:drop-shadow(0 0 20px rgba(201,168,76,0.3)); }
.modal-date { font-family:'IM Fell English',serif; font-style:italic; font-size:0.9rem; opacity:0.4; margin-bottom:40px; letter-spacing:2px; }
.modal-divider { width:100%; height:1px; background:linear-gradient(to right,transparent,rgba(201,168,76,0.3),transparent); margin-bottom:36px; }
.modal-content { font-size:1.15rem; line-height:2; opacity:0.85; white-space:pre-wrap; }
.modal-emoji { font-size:5rem; text-align:center; margin-bottom:30px; display:block; }

/* Empty state */
.blog-empty {
  text-align: center; padding: 80px 20px;
  max-width: 500px; margin: 0 auto;
  display: none;
}
.blog-empty.show { display: block; }
.blog-empty-icon { font-size:4rem; margin-bottom:24px; display:block; opacity:0.5; }
.blog-empty p { opacity:0.5; font-style:italic; font-size:1.1rem; line-height:1.8; }

@media (max-width: 900px) {
  .articles-grid { grid-template-columns: 1fr; }
  .article-editor { padding: 30px 20px; }
  .article-modal-inner { padding: 40px 24px; }
}
@media (max-width: 900px) {
  nav { padding: 20px 24px; }
  .nav-links { display: none; }
  section { padding: 80px 24px; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .shows-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 3rem; }
  .booking-frame { padding: 50px 30px; }
  .potion-bar { flex-wrap: wrap; gap: 30px; }
  .stats-row { flex-wrap: wrap; gap: 24px; }
  .trick-zone { padding: 40px 24px; }
}
.gal-filter {
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.58rem; letter-spacing: 2px;
  padding: 9px 18px; background: none;
  border: 1px solid rgba(201,168,76,0.22);
  color: rgba(245,240,232,0.45); cursor: pointer; transition: all 0.3s;
}
.gal-filter:hover, .gal-filter.active {
  border-color: var(--gold); color: var(--gold);
  background: rgba(201,168,76,0.08);
}
.real-card {
  background: linear-gradient(135deg, rgba(26,15,53,0.7), rgba(6,4,10,0.9));
  border: 1px solid rgba(201,168,76,0.15);
  cursor: pointer; transition: border-color 0.3s, transform 0.3s;
  overflow: hidden;
}
.real-card:hover { border-color: rgba(201,168,76,0.45); transform: translateY(-4px); }
.real-card-img {
  width: 100%; height: 200px; object-fit: cover;
  display: block; transition: transform 0.5s;
  filter: brightness(0.85);
}
.real-card:hover .real-card-img { transform: scale(1.04); filter: brightness(1); }
.real-card-img-placeholder {
  width: 100%; height: 200px;
  background: linear-gradient(135deg, rgba(26,15,53,0.9), rgba(6,4,10,0.95));
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
}
.real-card-body { padding: 20px 22px 16px; }
.real-card-tags { display: flex; gap: 8px; margin-bottom: 10px; flex-wrap: wrap; }
.real-card-tag {
  font-family: 'Cinzel Decorative', serif; font-size: 0.5rem;
  letter-spacing: 2px; padding: 4px 10px;
  border: 1px solid rgba(201,168,76,0.25); color: rgba(201,168,76,0.7);
}
.real-card-title {
  font-family: 'Cinzel Decorative', serif; font-size: 0.85rem;
  color: var(--gold); margin: 0 0 8px; line-height: 1.4;
}
.real-card-desc {
  font-family: 'IM Fell English', serif; font-style: italic;
  font-size: 0.9rem; opacity: 0.55; margin: 0 0 14px; line-height: 1.6;
}
.real-card-count {
  font-family: 'Cinzel Decorative', serif; font-size: 0.55rem;
  letter-spacing: 2px; color: rgba(201,168,76,0.5);
}
.popup-thumb {
  width: 96px; height: 72px; object-fit: cover; cursor: pointer; flex-shrink: 0;
  border: 2px solid transparent; border-radius: 4px;
  transition: border-color 0.2s, opacity 0.2s, box-shadow 0.2s, transform 0.2s;
  opacity: 0.5;
}
.popup-thumb:hover { opacity: 0.85; transform: translateY(-2px); }
.popup-thumb.active {
  border-color: var(--gold); opacity: 1;
  box-shadow: 0 0 10px rgba(201,168,76,0.35);
  transform: translateY(-2px);
}
.popup-nav-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(6,4,10,0.6); border: 1px solid rgba(201,168,76,0.2);
  color: var(--gold); font-size: 2.2rem; width: 48px; height: 64px;
  cursor: pointer; z-index: 10; transition: background 0.2s, border-color 0.2s;
  display: flex; align-items: center; justify-content: center; padding: 0;
}
.popup-nav-btn:hover { background: rgba(201,168,76,0.12); border-color: rgba(201,168,76,0.5); }
