/* css/wicked-site.css */

/* =========================
   ROOT + BASE
========================= */
:root{
  --bg0:#070a0f;
  --bg1:#0b0f14;
  --steel:#8aa0b5;
  --ice:#cfe6ff;
  --line:rgba(207,230,255,.14);
  --glow:rgba(120,190,255,.25);
}

html, body { height: 100%; }

html {
  scroll-behavior: smooth;
}

body{
  background:
    radial-gradient(2000px 1200px at 20% 10%, var(--glow), transparent 65%),
    radial-gradient(1800px 1100px at 80% 25%, rgba(0,0,0,.12), transparent 70%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;

  color: rgba(207,230,255,.88);
  letter-spacing: .2px;
}
/* ===== Wicked Heading Font System ===== */

h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
  font-family: 'Cinzel', serif;
  letter-spacing: .04em;
  font-weight: 700;
}

/* Hero titles slightly stronger */
.hero h1,
.hero .display-4 {
  font-weight: 800;
  letter-spacing: .06em;
}

/* Optional: subtle cinematic treatment */
h1, .display-4 {
  text-transform: uppercase;
}
h1, h2 {
  text-shadow:
    0 1px 0 rgba(255,255,255,.05),
    0 6px 18px rgba(0,0,0,.55);
}
/* =========================
   WORLD THEMES (per category)
========================= */

/* WASTELAND: tans / browns / blacks */
.world-wasteland{
  --bg0:#0a0705;
  --bg1:#120c08;
  --line:rgba(243,231,215,.14);

  --accent:#d2a26b;
  --accent2:#a86a3a;
  --glow: rgba(210,162,107,.25);

  color: rgba(243,231,215,.92);
}

.world-wasteland .opacity-75{
  opacity: .78 !important;
}

.world-wasteland .fx-fog{
  background:
    radial-gradient(900px 600px at 20% 30%, rgba(210,162,107,.10), transparent 60%),
    radial-gradient(1000px 700px at 80% 40%, rgba(168,106,58,.07), transparent 65%),
    radial-gradient(700px 500px at 55% 75%, rgba(0,0,0,.10), transparent 70%);
  filter: blur(12px);
  opacity:.9;
}

.page { display:flex; flex-direction:column; min-height:100vh; }

/* =========================
   NAV / HERO / FOOTER BASE
========================= */
.wicked-nav{
  backdrop-filter: blur(10px);
  background: rgba(8,10,14,.55);
  border-bottom: 1px solid var(--line);
}
.wicked-nav .nav-link{ color: rgba(207,230,255,.75); }
.wicked-nav .nav-link:hover{ color: rgba(207,230,255,.98); }

.hero{
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow:hidden;
}
.hero:before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(700px 300px at 30% 20%, rgba(120,190,255,.18), transparent 60%);
  pointer-events:none;
}

.btn-primary{
  background: color-mix(in srgb, var(--accent, #78beff) 22%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent, #78beff) 40%, transparent);
  box-shadow: 0 0 30px color-mix(in srgb, var(--accent, #78beff) 18%, transparent);
}
.btn-primary:hover{
  background: color-mix(in srgb, var(--accent, #78beff) 30%, transparent);
  border-color: color-mix(in srgb, var(--accent, #78beff) 60%, transparent);
}
/* NAV SHELL */
.wicked-nav{
  background: rgba(6,8,10,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(170,190,205,.10);
}

/* WEATHERED STEEL BUTTONS (no bubble look) */
.wicked-navbtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:.54rem .88rem !important;
  border-radius: 8px; /* hard edge */
  border: 1px solid rgba(175,195,210,.18);

  color: rgba(235,245,255,.90) !important;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .82rem;

  position: relative;
  overflow: hidden;

  /* steel base + wear */
  background:
    /* faint top sheen (NOT glossy) */
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,0) 35%),
    /* subtle worn edges */
    radial-gradient(120% 140% at 10% 15%, rgba(200,240,255,.06), rgba(0,0,0,0) 45%),
    radial-gradient(120% 140% at 90% 85%, rgba(255,190,110,.05), rgba(0,0,0,0) 50%),
    /* steel body */
    linear-gradient(180deg, rgba(40,52,62,.78), rgba(10,12,16,.92));

  box-shadow:
    0 10px 26px rgba(0,0,0,.42),
    inset 0 1px 0 rgba(255,255,255,.05),
    inset 0 -1px 0 rgba(0,0,0,.65);

  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease, filter .14s ease;
}

/* scratches / brushed texture overlay */
.wicked-navbtn::before{
  content:"";
  position:absolute;
  inset:-40% -30%;
  background:
    repeating-linear-gradient(
      120deg,
      rgba(255,255,255,0) 0px,
      rgba(255,255,255,0) 9px,
      rgba(255,255,255,.035) 10px,
      rgba(255,255,255,0) 16px
    );
  opacity: .55;
  transform: translateX(-18%);
  pointer-events:none;
}

/* micro wear flecks */
.wicked-navbtn::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 18% 30%, rgba(255,255,255,.06), rgba(255,255,255,0) 22%),
    radial-gradient(circle at 72% 62%, rgba(0,0,0,.22), rgba(0,0,0,0) 28%);
  opacity: .40;
  pointer-events:none;
}

.wicked-navbtn:hover{
  transform: translateY(-1px);
  border-color: rgba(210,235,255,.30);
  box-shadow:
    0 16px 40px rgba(0,0,0,.62),
    inset 0 1px 0 rgba(255,255,255,.06),
    inset 0 -1px 0 rgba(0,0,0,.72);
  filter: brightness(1.06) contrast(1.05);
}

/* active = “heated edge” but still subtle */
.wicked-navbtn.is-active{
  border-color: rgba(255,190,110,.26);
  box-shadow:
    0 18px 52px rgba(0,0,0,.70),
    inset 0 1px 0 rgba(255,255,255,.06),
    inset 0 -1px 0 rgba(0,0,0,.75);
}

/* DROPDOWN PANEL — smoked steel (brighter) */
.wicked-dropdown{
  background:
    linear-gradient(180deg, rgba(52,64,74,.96), rgba(20,24,30,.96));
  border: 1px solid rgba(210,235,255,.18);
  box-shadow: 0 22px 60px rgba(0,0,0,.55);
  border-radius: 14px;
  overflow: hidden;
  padding: .4rem;
  min-width: 240px;
}

/* FORCE it to sit under the Gallery button nicely */
.nav-item.dropdown.position-relative > .wicked-dropdown{
  left: 0;          /* align to left edge of Gallery button */
  right: auto;
  top: calc(100% + 10px);
}

/* Menu items brighter */
.wicked-dropitem{
  color: rgba(245,250,255,.92);
  border-radius: 10px;
  padding: .65rem .85rem;
  display:flex;
  gap:.6rem;
  align-items:center;
}

.wicked-dropitem:hover{
  background: rgba(210,235,255,.10);
  color:#fff;
}

/* Divider lighter */
.wicked-dropdiv{
  border-top: 1px solid rgba(210,235,255,.16);
  margin: .35rem 0;
}

/* Dot slightly brighter */
.drop-dot{
  width:7px;
  height:7px;
  border-radius: 2px;
  background: rgba(220,245,255,.40);
  box-shadow: 0 0 0 2px rgba(220,245,255,.12);
}
/* =========================
   Scroll reveal
========================= */
.wicked-reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}
.wicked-reveal.is-in{
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   WICKED AAA FX LAYERS
========================= */
.wicked-fx{
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9990;
  overflow: hidden;
}

/* ✅ FIX: stop tiling look (noise was default-repeat) */
.fx-noise{
  position:absolute; inset:-20%;
  opacity:.08;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
  background-size: 140% 140%;
  background-repeat: no-repeat;
  background-position: center;

  mix-blend-mode: overlay;
  transform: translateZ(0);
}

.fx-vignette{
  position:absolute; inset:0;
  background: radial-gradient(120% 90% at 50% 40%,
    rgba(0,0,0,0) 45%,
    rgba(0,0,0,.35) 85%,
    rgba(0,0,0,.55) 110%);
  opacity:.8;
}

.fx-fog{
  position:absolute; inset:-30%;
  background:
    radial-gradient(800px 500px at 20% 30%, rgba(120,190,255,.10), transparent 60%),
    radial-gradient(900px 700px at 80% 40%, rgba(120,190,255,.07), transparent 65%),
    radial-gradient(700px 500px at 55% 75%, rgba(120,190,255,.05), transparent 70%);
  filter: blur(10px);
  opacity:.85;
  animation: wickedFog 14s ease-in-out infinite alternate;
}

@keyframes wickedFog{
  from { transform: translate3d(-1.5%, -1%, 0) scale(1.02); }
  to   { transform: translate3d( 1.5%,  1%, 0) scale(1.05); }
}

.fx-sweep{
  position:absolute; inset:-20%;
  background: linear-gradient(120deg,
    transparent 35%,
    rgba(207,230,255,.08) 46%,
    rgba(120,190,255,.16) 50%,
    rgba(207,230,255,.08) 54%,
    transparent 65%);
  transform: translateX(-60%) rotate(2deg);
  opacity: 0;
}

/* Page transition: light sweep + fade */
html.wicked-enter .fx-sweep{
  opacity: 1;
  animation: wickedSweep 900ms ease forwards;
}

@keyframes wickedSweep{
  0%   { transform: translateX(-70%) rotate(2deg); opacity: 0; }
  15%  { opacity: 1; }
  70%  { opacity: .9; }
  100% { transform: translateX(70%) rotate(2deg); opacity: 0; }
}

/* Cursor glow */
.wicked-cursor{
  position: fixed;
  width: 220px; height: 220px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9995;
  left: -9999px; top: -9999px;
  background: radial-gradient(circle at 50% 50%,
    rgba(120,190,255,.22),
    rgba(120,190,255,.10) 35%,
    rgba(120,190,255,0) 70%);
  filter: blur(2px);
  mix-blend-mode: screen;
  opacity: .85;
  transform: translate(-50%, -50%);
}

/* Buttons/cards get “energy edge” */
.wicked-edge{
  position: relative;
  border: 1px solid rgba(207,230,255,.14);
  background: rgba(8,10,14,.45);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  border-radius: 18px;
  overflow:hidden;

  margin: 1.25rem 0;
  max-width: none;
}
.wicked-edge:before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(400px 160px at var(--mx,50%) var(--my,50%),
    rgba(120,190,255,.22), transparent 55%);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events:none;
}
.wicked-edge:hover:before{ opacity: 1; }

/* Reduce motion safety */
@media (prefers-reduced-motion: reduce){
  .fx-fog{ animation:none; }
  .wicked-reveal{ transition:none; }
  html.wicked-enter .fx-sweep{ animation:none; opacity:0; }
  .wicked-cursor{ display:none; }
}

/* =========================
   HERO TEXT DEPTH
========================= */
.hero h1,
.hero .lead{
  text-shadow:
    0 4px 11px rgba(0,0,0,.65),
    0 8px 22px rgba(0,0,0,.65);
}

/* =========================
   HERO LOGO BRANDING
========================= */
.hero-logo{ margin-bottom: 1.2rem; }

.hero-logo img{
  width: 450px;
  max-width: 85%;
  opacity: .98;
  animation: logoPulse 4s ease-in-out infinite;
  filter:
    drop-shadow(0 6px 16px rgba(0,0,0,.75))
    drop-shadow(0 0 22px rgba(120,190,255,.35));
  transition: transform .4s ease, filter .4s ease;
}

@keyframes logoPulse{
  0%,100%{
    transform: scale(1);
    filter:
      drop-shadow(0 6px 16px rgba(0,0,0,.75))
      drop-shadow(0 0 22px rgba(120,190,255,.35));
  }
  50%{
    transform: scale(1.03);
    filter:
      drop-shadow(0 8px 22px rgba(0,0,0,.85))
      drop-shadow(0 0 35px rgba(120,190,255,.55));
  }
}

/* =========================
   HERO ROTATION SYSTEM
========================= */
.hero-bg{
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero.hero-bg{
  min-height: 75vh;
  display: flex;
  align-items: center;
}
.hero-bg .container{ position: relative; z-index: 2; }

.hero-overlay{
  position:absolute; inset:0; z-index:1;
  background:
    linear-gradient(to top,
      rgba(5,8,12,.65) 0%,
      rgba(5,8,12,.35) 25%,
      rgba(5,8,12,0) 60%);
}

.hero-slides{ position: absolute; inset: 0; z-index: 0; }

.hero-slide{
  position:absolute; inset:0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.6s ease, transform 6s ease;
}
.hero-slide.active{ opacity: 1; transform: scale(1); }

/* =========================
   WORLD PORTAL CARDS
========================= */
.world-card{
  position: relative;
  display: block;
  height: 360px;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
}
.world-bg{
  position:absolute; inset:0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 1.2s ease;
}
.world-card:hover .world-bg{ transform: scale(1.08); }

.world-card::after{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(to top,
      rgba(5,8,12,.85),
      rgba(5,8,12,.3),
      rgba(5,8,12,.2));
}

.world-content { position:absolute; bottom:10%; left:50%; transform:translateX(-50%); text-align:center; width:100%; }

.world-content h3{
  font-family: 'Cinzel', serif;
  font-weight: 800;
  font-size: 1.9rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  display: inline-block;
  padding: .4rem 1rem;

  color: #f5f8ff;
  background: none;

  text-shadow:
    0 2px 0 rgba(0,0,0,.9),
    0 8px 24px rgba(0,0,0,.85),
    0 0 8px rgba(0,0,0,.8);

  filter:
    drop-shadow(0 0 2px rgba(2,11,20,.95))
    drop-shadow(0 0 4px rgba(120,190,255,.25))
    drop-shadow(0 2px 7px rgba(0,0,0,.6));

  transition: all .25s ease;
}

.world-content h3::after{
  content:"";
  display:block;
  width:60%;
  height:2px;
  margin:10px auto 0;
  background: linear-gradient(90deg, transparent, rgba(255,170,80,.8), transparent);
}

.world-card:hover .world-content h3{
  color:#ffffff;
  filter:
    drop-shadow(0 0 14px rgba(200,235,255,.9))
    drop-shadow(0 0 28px rgba(120,190,255,.65))
    drop-shadow(0 8px 22px rgba(0,0,0,.7));
}

@media (max-width: 767px){ .world-card{ height: 260px; } }

/* =========================
   GALLERY WIDTH WRAP
========================= */
.gallery-wrap{
  width: min(95vw, 1900px);
  margin: 0 auto;
  padding-left: 12px;
  padding-right: 12px;
}

/* =========================
   GALLERY MOSAIC
========================= */
.gallery-mosaic{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 270px;
  gap: 20px;
  grid-auto-flow: dense;
}

.gallery-item{
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  background: rgba(8,10,14,.35);

  border: 1px solid color-mix(in srgb, var(--accent, #78beff) 18%, rgba(255,255,255,.06));
  box-shadow:
    0 14px 34px rgba(0,0,0,.45),
    0 0 0 1px rgba(0,0,0,.35) inset;

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

.gallery-img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.1s ease;
}

.gallery-glow{
  position:absolute; inset:-2px;
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events:none;
  background:
    radial-gradient(520px 220px at var(--mx,50%) var(--my,50%),
      color-mix(in srgb, var(--accent, #78beff) 28%, transparent),
      transparent 60%);
  mix-blend-mode: screen;
}

.gallery-item:hover .gallery-img{ transform: scale(1.08); }
.gallery-item:hover .gallery-glow{ opacity: 1; }

.gallery-item.square{ grid-column: span 1; grid-row: span 1; }
.gallery-item.tall  { grid-column: span 1; grid-row: span 2; }
.gallery-item.wide  { grid-column: span 2; grid-row: span 2; }
.gallery-item.hero  { grid-column: span 3; grid-row: span 4; border-radius: 22px; }

@media (max-width: 1200px){
  .gallery-mosaic{ grid-template-columns: repeat(3, 1fr); grid-auto-rows: 240px; }
  .gallery-item.hero{ grid-column: span 3; grid-row: span 3; }
  .gallery-item.wide{ grid-column: span 2; grid-row: span 2; }
}
@media (max-width: 768px){
  .gallery-mosaic{ grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; gap: 16px; }
  .gallery-item.hero{ grid-column: span 2; grid-row: span 3; }
  .gallery-item.wide{ grid-column: span 2; grid-row: span 2; }
}
@media (max-width: 480px){
  .gallery-mosaic{ grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-item.hero{ grid-column: span 1; grid-row: span 2; }
}
@media (prefers-reduced-motion: reduce){
  .gallery-item{ transform:none !important; }
  .gallery-img{ transition:none !important; }
  .gallery-glow{ transition:none !important; }
}

/* =========================
   WORLD BANNER
========================= */
.world-banner{
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.world-banner-bg{
  position:absolute; inset:0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  filter: saturate(1.05) contrast(1.05);
  z-index: 0;
}
.world-banner::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,.55),
    rgba(0,0,0,.35) 45%,
    rgba(0,0,0,.65));
  z-index: 1;
}
.world-banner .container{ position: relative; z-index: 2; }

.world-banner-plate{
  position: relative;
  backdrop-filter: blur(10px);
  background: rgba(8,10,14,.55);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow:hidden;
}
.world-banner-plate::after{
  content:"";
  position:absolute; inset:-40%;
  background: linear-gradient(120deg,
    transparent 40%,
    color-mix(in srgb, var(--accent, #78beff) 18%, transparent) 50%,
    transparent 60%);
  transform: translateX(-60%);
  opacity: .85;
  animation: bannerSweep 1.1s ease forwards;
  pointer-events:none;
}
@keyframes bannerSweep{ to { transform: translateX(60%); opacity: 0; } }

/* =========================
   WORLD TITLE GRAPHIC
========================= */
.world-title{ display:inline-block; line-height:0; }

.world-title-img{
  display:block;
  width: min(680px, 92%);
  height:auto;

  filter:
    drop-shadow(0 8px 18px rgba(0,0,0,.75))
    drop-shadow(0 0 22px color-mix(in srgb, var(--accent, #78beff) 28%, transparent));

  animation: worldTitlePulse 4.2s ease-in-out infinite;
  transform-origin: center;
}

@keyframes worldTitlePulse{
  0%, 100%{
    transform: scale(1);
    filter:
      drop-shadow(0 8px 18px rgba(0,0,0,.75))
      drop-shadow(0 0 22px color-mix(in srgb, var(--accent, #78beff) 24%, transparent));
  }
  50%{
    transform: scale(1.02);
    filter:
      drop-shadow(0 10px 22px rgba(0,0,0,.85))
      drop-shadow(0 0 34px color-mix(in srgb, var(--accent, #78beff) 40%, transparent));
  }
}
@media (prefers-reduced-motion: reduce){ .world-title-img{ animation:none; } }

/* =========================
   WORLD TABS
========================= */
.world-tabs{
  display:flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: flex-start;
}

.world-tab{
  display:inline-flex;
  align-items:center;
  padding: .55rem .75rem;
  border-radius: 999px;
  text-decoration:none;
  font-size: .95rem;
  background: rgba(8,10,14,.45);
  border: 1px solid var(--line);
  color: rgba(207,230,255,.78);
  transition: transform .2s ease, background .25s ease, border-color .25s ease, color .2s ease;
  position: relative;
  overflow:hidden;
}
.world-tab:hover{
  transform: translateY(-1px);
  color: rgba(207,230,255,.98);
  background: color-mix(in srgb, var(--accent, #78beff) 10%, rgba(8,10,14,.45));
  border-color: color-mix(in srgb, var(--accent, #78beff) 35%, var(--line));
}
.world-tab.is-active{
  color: rgba(255,255,255,.98);
  background: color-mix(in srgb, var(--accent, #78beff) 22%, rgba(8,10,14,.45));
  border-color: color-mix(in srgb, var(--accent, #78beff) 55%, var(--line));
  box-shadow: 0 0 22px color-mix(in srgb, var(--accent, #78beff) 20%, transparent);
}
@media (max-width: 575px){
  .world-tabs{ justify-content:center; }
  .world-tab{ font-size:.9rem; padding:.5rem .7rem; }
}

/* =========================
   LIGHTBOX
========================= */
.wicked-lightbox{
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(10px);
}
.wicked-lightbox.is-open{ display:flex; }

.lb-stage{
  width: min(1400px, 96vw);
  height: min(86vh, 900px);
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid color-mix(in srgb, var(--accent, #78beff) 22%, rgba(255,255,255,.08));
  box-shadow: 0 30px 80px rgba(0,0,0,.65);
  position: relative;
  background: rgba(8,10,14,.45);
}

.lb-img{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transform: translateZ(0);
  opacity: 1;
  transition: opacity .26s ease, transform .38s ease;
}
.lb-img.is-swapping{ opacity:0; transform: scale(1.02); }

.lb-caption{
  position:absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 1rem 1.2rem;

  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  border-radius: 16px;
}
.lb-title{
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.lb-desc{
  margin-top: .4rem;
  font-size: .9rem;
  color: rgba(255,255,255,.75);
}

.lb-close, .lb-prev, .lb-next{
  position: fixed;
  background: rgba(8,10,14,.55);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.90);
  cursor: pointer;
  transition: transform .2s ease, background .25s ease, border-color .25s ease;
  display:flex;
  align-items:center;
  justify-content:center;
}

.lb-close{
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  font-size: 26px;
}
.lb-prev, .lb-next{
  top: 50%;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  font-size: 42px;
  transform: translateY(-50%);
}
.lb-prev{ left: 18px; }
.lb-next{ right: 18px; }

.lb-close:hover{
  transform: scale(1.03);
  background: color-mix(in srgb, var(--accent, #78beff) 12%, rgba(8,10,14,.55));
  border-color: color-mix(in srgb, var(--accent, #78beff) 35%, rgba(255,255,255,.10));
}
.lb-prev:hover, .lb-next:hover{
  transform: translateY(-50%) scale(1.03);
  background: color-mix(in srgb, var(--accent, #78beff) 12%, rgba(8,10,14,.55));
  border-color: color-mix(in srgb, var(--accent, #78beff) 35%, rgba(255,255,255,.10));
}

@media (max-width: 720px){
  .lb-prev, .lb-next{ display:none; }
}

/* =========================
   LIGHTBOX COLLECT BUTTON
========================= */
.wicked-lightbox .lb-actions{
  display:flex;
  justify-content:center;
  margin-top: 1rem;
}

.wicked-lightbox .lb-collect{
  position: relative;
  padding: 1.1rem 2.8rem;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;

  border-radius: 60px;
  border: 1px solid rgba(255,180,80,.5);

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

  box-shadow:
    inset 0 0 25px rgba(255,150,50,.08),
    inset 0 2px 4px rgba(255,255,255,.05),
    0 20px 60px rgba(0,0,0,.8),
    0 0 30px rgba(255,160,60,.25);

  overflow: hidden;
  transition: all .25s ease;
  text-shadow:
    0 1px 0 rgba(0,0,0,.9),
    0 -1px 0 rgba(255,255,255,.05);
}

.wicked-lightbox .lb-collect::after{
  content:"";
  position:absolute;
  top:0;
  left:-150%;
  width:120%;
  height:100%;
  background: linear-gradient(120deg,
    transparent 0%,
    rgba(255,220,160,.4) 45%,
    rgba(255,255,255,.8) 50%,
    rgba(255,220,160,.4) 55%,
    transparent 100%);
  transform: skewX(-25deg);
  animation: collectSweep 10s ease-in-out infinite;
}

@keyframes collectSweep{
  0%   { left: -150%; }
  15%  { left: 150%; }
  100% { left: 150%; }
}

.wicked-lightbox .lb-collect:hover{
  transform: translateY(-4px) scale(1.04);
  box-shadow:
    inset 0 0 30px rgba(255,180,80,.15),
    0 30px 80px rgba(0,0,0,.9),
    0 0 45px rgba(255,160,60,.5);
}

/* =========================
   GALLERY TITLE OVERLAY
========================= */
.gallery-label{
  position:absolute;
  left:0; right:0; bottom:0;
  z-index:3;
  padding: 1rem;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;

  background: linear-gradient(to top,
    rgba(0,0,0,.75),
    rgba(0,0,0,.35),
    transparent);

  color: rgba(255,255,255,.95);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events:none;
}

.gallery-item:hover .gallery-label{
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   FOOTER (dominant)
========================= */
.wicked-footer{
  position: relative;
  background:
    radial-gradient(circle at 50% -20%, rgba(120,190,255,.08), transparent 60%),
    linear-gradient(180deg, #05070b 0%, #020305 100%);
  border-top: 1px solid rgba(255,255,255,.05);
  overflow: hidden;
}

.footer-logo img{
  width: 140px;
  opacity: .65;
  transition: all .4s ease;
  filter:
    drop-shadow(0 0 12px rgba(120,190,255,.25))
    drop-shadow(0 10px 40px rgba(0,0,0,.8));
}

.footer-logo img:hover{
  opacity: .9;
  transform: scale(1.05);
  filter:
    drop-shadow(0 0 25px rgba(120,190,255,.45))
    drop-shadow(0 14px 60px rgba(0,0,0,.9));
}

.footer-tagline{
  font-family: 'Cinzel', serif;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-size: .85rem;
  color: #e9eef7;
  opacity: .7;
}

.footer-meta{
  letter-spacing: .08em;
  color: rgba(200,210,230,.7);
}
.footer-social {
  padding: 20px 0;
}

.social-icon {
  display: inline-block;
  margin: 0 12px;
  font-size: 20px;
  color: #8ea1b8;
  transition: all 0.3s ease;
}

.social-icon:hover {
  color: #ffffff;
  transform: translateY(-4px);
  text-shadow: 0 0 12px rgba(160, 190, 255, 0.4);
}
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #2a3442;
  background: linear-gradient(145deg, #0f1620, #1a2430);
  color: #d7e2f1;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

#backToTop:hover {
  background: #ffffff;
  color: #0b0f14;
  transform: translateY(-4px);
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
}
.about-logo {
  max-width: 420px;
  width: 100%;
  height: auto;
  filter: brightness(1.4) contrast(1.2);
  opacity: 0.95;
  transition: all 0.4s ease;
}

.about-logo:hover {
  filter: brightness(1.6) contrast(1.3);
  transform: scale(1.03);
}

/* Optional subtle glow */
.about-logo {
  filter:
    brightness(1.4)
    contrast(1.2)
    drop-shadow(0 0 18px rgba(160, 190, 255, 0.25));
}