/* ============================================
   METIN2 — PRESENTATION STYLESHEET
   ============================================ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:      #c8922a;
  --gold-light:#f0b94a;
  --gold-glow: #e8a83060;
  --crimson:   #8b1a1a;
  --dark:      #080604;
  --dark-2:    #0f0b08;
  --dark-3:    #1a1209;
  --text:      #d4c5a5;
  --text-dim:  #8a7a60;
  --border:    rgba(200,146,42,0.18);
  --ff-title:  'Cinzel', serif;
  --ff-body:   'Crimson Text', serif;
  --radius:    6px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── Utilities ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-tag {
  display: inline-block;
  font-family: var(--ff-title);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 4px 16px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.section-tag.center { display: block; text-align: center; }
.section-title {
  font-family: var(--ff-title);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 28px;
}
.section-title.center { text-align: center; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-title);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, #c8922a 0%, #f0b94a 50%, #c8922a 100%);
  color: #1a0d00;
  font-weight: 700;
  box-shadow: 0 0 20px var(--gold-glow);
}
.btn-primary:hover {
  box-shadow: 0 0 40px var(--gold-glow), 0 0 80px rgba(200,146,42,0.3);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid var(--gold);
}
.btn-ghost:hover {
  background: rgba(200,146,42,0.1);
  border-color: var(--gold-light);
}
.btn-lg { padding: 18px 48px; font-size: 15px; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 72px;
  background: linear-gradient(180deg, rgba(8,6,4,0.95) 0%, rgba(8,6,4,0) 100%);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(8,6,4,0.97);
  border-bottom-color: var(--gold);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-glyph {
  font-size: 22px;
  color: var(--gold);
  filter: drop-shadow(0 0 6px var(--gold));
}
.logo-text {
  font-family: var(--ff-title);
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 3px;
}
.logo-2 { color: var(--gold); }
.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}
.nav-links a {
  font-family: var(--ff-title);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  font-family: var(--ff-title);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  padding: 9px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  transition: var(--transition);
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.nav-burger { display: none; cursor: pointer; font-size: 22px; color: var(--gold); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 80% at 50% 30%, rgba(139,26,26,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 70%, rgba(200,146,42,0.08) 0%, transparent 50%),
    linear-gradient(180deg, #120a04 0%, #080604 40%, #0a0808 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8922a' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  0%   { opacity: 0; transform: translateY(100vh) scale(0); }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-20vh) scale(1); }
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 100px 24px 60px;
}
.hero-pre {
  font-family: var(--ff-title);
  font-size: 11px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero-title {
  font-family: var(--ff-title);
  font-size: clamp(80px, 16vw, 180px);
  font-weight: 900;
  color: #fff;
  letter-spacing: 8px;
  line-height: 0.9;
  text-shadow:
    0 0 40px rgba(200,146,42,0.4),
    0 0 80px rgba(200,146,42,0.15),
    0 4px 20px rgba(0,0,0,0.8);
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}
.hero-2 { color: var(--gold); }
.hero-sub {
  font-family: var(--ff-title);
  font-size: clamp(14px, 2vw, 20px);
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 8px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}
.hero-desc {
  font-size: 18px;
  color: var(--text-dim);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
  opacity: 0;
  animation: fadeUp 0.8s 1s forwards;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  animation: fadeUp 0.8s 1.2s forwards;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--ff-title);
  font-size: 32px;
  font-weight: 900;
  color: var(--gold-light);
}
.stat-label {
  display: block;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--text-dim);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: fadeUp 1s 1.6s both;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  margin: 8px auto 0;
  animation: bounce 1.5s infinite;
}
@keyframes bounce {
  0%,100% { transform: rotate(45deg) translateY(0); }
  50%      { transform: rotate(45deg) translateY(6px); }
}

/* ============================================
   ABOUT
   ============================================ */
.about { background: var(--dark-2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}
.stone-card {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, rgba(26,18,9,0.9) 0%, rgba(15,11,8,0.95) 100%);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 48px 40px;
  text-align: center;
  box-shadow: 0 0 60px rgba(139,26,26,0.2), inset 0 1px 0 rgba(200,146,42,0.1);
  max-width: 320px;
}
.stone-glow {
  position: absolute;
  inset: -2px;
  border-radius: 14px;
  background: radial-gradient(ellipse, rgba(139,26,26,0.3), transparent 70%);
  animation: pulseGlow 3s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%,100% { opacity: 0.5; }
  50%      { opacity: 1; }
}
.stone-icon { font-size: 64px; margin-bottom: 16px; }
.stone-label {
  font-family: var(--ff-title);
  font-size: 20px;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.stone-desc { color: var(--text-dim); font-size: 16px; }
.orbs { position: absolute; inset: 0; pointer-events: none; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  animation: orbitOrb 8s linear infinite;
}
.orb-1 { width:120px; height:120px; background:rgba(139,26,26,0.3); top:10%; left:5%; animation-delay:0s; }
.orb-2 { width:80px;  height:80px;  background:rgba(200,146,42,0.2); bottom:15%; right:10%; animation-delay:-3s; }
.orb-3 { width:60px;  height:60px;  background:rgba(50,10,80
,0.3); top:50%; right:0; animation-delay:-5s; } @keyframes orbitOrb { 0% { transform: translate(0,0); } 25% { transform: translate(20px,-20px); } 50% { transform: translate(0,-40px); } 75% { transform: translate(-20px,-20px); } 100% { transform: translate(0,0); } } .about-text p { color: var(--text-dim); margin-bottom: 20px; } .about-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; } .pill { font-family: var(--ff-title); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; padding: 7px 16px; border: 1px solid var(--border); border-radius: 20px; color: var(--gold); background: rgba(200,146,42,0.06); transition: var(--transition); } .pill:hover { background: rgba(200,146,42,0.14); border-color: var(--gold); }

/* ============================================ KINGDOMS BANNER ============================================ */ .kingdoms-banner { display: flex; align-items: stretch; background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark-3) 100%); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); } .kingdom { flex: 1; text-align: center; padding: 48px 24px; transition: var(--transition); position: relative; overflow: hidden; } .kingdom::before { content: ''; position: absolute; inset: 0; opacity: 0; transition: var(--transition); } .k-shinsoo::before { background: radial-gradient(ellipse, rgba(26,60,139,0.2), transparent 70%); } .k-chunjo::before { background: radial-gradient(ellipse, rgba(26,100,26,0.2), transparent 70%); } .k-jinno::before { background: radial-gradient(ellipse, rgba(139,26,26,0.2), transparent 70%); } .kingdom:hover::before { opacity: 1; } .kingdom:hover { transform: translateY(-4px); } .k-emblem { font-size: 40px; margin-bottom: 12px; } .kingdom h3 { font-family: var(--ff-title); font-size: 22px; color: #fff; margin-bottom: 6px; } .kingdom p { font-size: 14px; color: var(--text-dim); } .kingdom-sep { display: flex; align-items: center; color: var(--gold); opacity: 0.4; font-size: 20px; padding: 0 16px; }

/* ============================================ CLASSES ============================================ */ .classes { background: var(--dark); } .classes-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; } .class-card { position: relative; border: 1px solid var(--border); border-radius: 10px; padding: 36px 24px 28px; overflow: hidden; transition: var(--transition); cursor: default; } .class-card:hover { border-color: var(--gold); transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 30px var(--gold-glow); } .class-bg { position: absolute; inset: 0; opacity: 0.5; transition: var(--transition); } [data-class="warrior"] .class-bg { background: radial-gradient(ellipse at 50% 0%, rgba(139,26,26,0.4) 0%, transparent 60%); } [data-class="assassin"] .class-bg { background: radial-gradient(ellipse at 50% 0%, rgba(20,20,60,0.4) 0%, transparent 60%); } [data-class="sura"] .class-bg { background: radial-gradient(ellipse at 50% 0%, rgba(80,10,120,0.4) 0%, transparent 60%); } [data-class="shaman"] .class-bg { background: radial-gradient(ellipse at 50% 0%, rgba(26,80,26,0.4) 0%, transparent 60%); } .class-card:hover .class-bg { opacity: 1; } .class-icon { font-size: 40px; display: block; margin-bottom: 14px; position: relative; z-index: 1; filter: drop-shadow(0 0 8px rgba(200,146,42,0.5)); } .class-card h3 { font-family: var(--ff-title); font-size: 20px; color: #fff; margin-bottom: 4px; position: relative; z-index: 1; } .class-role { font-size: 12px; letter-spacing: 1px; color: var(--gold); text-transform: uppercase; margin-bottom: 14px; position: relative; z-index: 1; } .class-desc { font-size: 15px; color: var(--text-dim); margin-bottom: 20px; position: relative; z-index: 1; } .class-stats { position: relative; z-index: 1; margin-bottom: 24px; } .cs-bar { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; font-size: 12px; font-family: var(--ff-title); color: var(--text-dim); letter-spacing: 1px; text-transform: uppercase; } .cs-bar span { width: 32px; flex-shrink: 0; } .bar { flex: 1; height: 4px; background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden; } .fill { height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 2px; transition: width 1s ease; } .class-btn { display: block; text-align: center; font-family: var(--ff-title); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; padding: 10px; border: 1px solid var(--border); border-radius: var(--radius); color: var(--gold); position: relative; z-index: 1; transition: var(--transition); } .class-btn:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

/* ============================================ WORLD ============================================ */ .world { background: var(--dark-2); } .world-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 20px; margin-top: 56px; } .world-card { position: relative; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); min-height: 300px; transition: var(--transition); } .world-card:hover { transform: translateY(-4px); border-color: var(--gold); } .world-card:hover .wc-bg { opacity: 1; } .wc-bg { position: absolute; inset: 0; opacity: 0.7; transition: var(--transition); } .world-card::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 0 L100 50 L50 100 L0 50 Z' fill='none' stroke='rgba(200,146,42,0.04)' stroke-width='1'/%3E%3C/svg%3E"); z-index: 1; } .wc-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px 28px; background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, transparent 100%); z-index: 2; } .wc-tag { font-family: var(--ff-title); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); border: 1px solid var(--border); padding: 3px 10px; border-radius: 2px; margin-bottom: 10px; display: inline-block; } .wc-content h3 { font-family: var(--ff-title); font-size: 22px; color: #fff; margin-bottom: 8px; } .wc-content p { font-size: 15px; color: var(--text-dim); }

/* ============================================ FEATURES ============================================ */ .features { background: var(--dark); } .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; } .feat-card { background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: 10px; padding: 36px 28px; transition: var(--transition); position: relative; overflow: hidden; } .feat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); transform: scaleX(0); transition: var(--transition); } .feat-card:hover { border-color: rgba(200,146,42,0.35); transform: translateY(-4px); } .feat-card:hover::before { transform: scaleX(1); } .feat-icon { font-size: 36px; margin-bottom: 16px; filter: drop-shadow(0 0 6px rgba(200,146,42,0.4)); } .feat-card h4 { font-family: var(--ff-title); font-size: 18px; color: #fff; margin-bottom: 10px; } .feat-card p { font-size: 15px; color: var(--text-dim); }

/* ============================================ GALLERY ============================================ */ .gallery { background: var(--dark-2); } .gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-template-rows: 220px 220px; gap: 12px; margin-top: 56px; } .gal-item { border-radius: 8px; overflow: hidden; position: relative; cursor: pointer; transition: var(--transition); } .gal-item:hover { transform: scale(1.02); z-index: 2; } .gal-item:hover .gal-overlay { opacity: 1; } .gi-1 { grid-column: 1 / 6; grid-row: 1; background: linear-gradient(135deg, #1a0f08 0%, #2a1505 50%, #0f0a06 100%); } .gi-2 { grid-column: 6 / 10; grid-row: 1; background: linear-gradient(135deg, #0f0808 0%, #200a0a 50%, #100505 100%); } .gi-3 { grid-column: 10 / 13; grid-row: 1 / 3; background: linear-gradient(135deg, #0a0a18 0%, #141430 50%, #080810 100%); } .gi-4 { grid-column: 1 / 5; grid-row: 2; background: linear-gradient(135deg, #0a1808 0%, #142a10 50%, #060f06 100%); } .gi-5 { grid-column: 5 / 10; grid-row: 2; background: linear-gradient(135deg, #180a0a 0%, #2a1010 50%, #0f0606 100%); } .gi-1::after { content:'🌄'; position:absolute; inset:0; display:flex; align-items:center; justify-content:center; font-size:80px; opacity:0.12; } .gi-2::after { content:'🐉'; position:absolute; inset:0; display:flex; align-items:center; justify-content:center; font-size:80px; opacity:0.12; } .gi-3::after { content:'⚔️'; position:absolute; inset:0; display:flex; align-items:center; justify-content:center; font-size:120px; opacity:0.1; } .gi-4::after { content:'🌿'; position:absolute; inset:0; display:flex; align-items:center; justify-content:center; font-size:80px; opacity:0.12; } .gi-5::after { content:'🏰'; position:absolute; inset:0; display:flex; align-items:center; justify-content:center; font-size:80px; opacity:0.12; } .gal-overlay { position: absolute; inset: 0; background: rgba(200,146,42,0.12); border: 2px solid var(--gold); border-radius: 8px; display: flex; align-items: flex-end; padding: 20px; opacity: 0; transition: var(--transition); } .gal-overlay span { font-family: var(--ff-title); font-size: 14px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-light); }

/* ============================================ CTA SECTION ============================================ */ .cta-section { position: relative; padding: 120px 24px; text-align: center; overflow: hidden; } .cta-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(139,26,26,0.25) 0%, transparent 65%), linear-gradient(180deg, var(--dark) 0%, #110808 50%, var(--dark) 100%); } .cta-bg::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c8922a' fill-opacity='0.025'%3E%3Cpath d='M40 0 L80 40 L40 80 L0 40 Z'/%3E%3C/g%3E%3C/svg%3E"); } .cta-content { position: relative; z-index: 1; } .cta-pre { font-family: var(--ff-title); font-size: 11px; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; } .cta-title { font-family: var(--ff-title); font-size: clamp(40px, 6vw, 72px); font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 20px; text-shadow: 0 0 40px rgba(200,146,42,0.3); } .cta-desc { font-size: 20px; color: var(--text-dim); margin-bottom: 48px; } .cta-actions { margin-bottom: 32px; } .cta-platforms { display: flex; gap: 32px; justify-content: center; font-family: var(--ff-title); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-dim); }

/* ============================================ FOOTER ============================================ */ .footer { background: var(--dark-2); border-top: 1px solid var(--border); padding: 72px 0 32px; } .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; } .footer-brand p { font-size: 15px; color: var(--text-dim); margin-top: 16px; max-width: 280px; } .footer-links { display: flex; flex-direction: column; gap: 10px; } .footer-links h5 { font-family: var(--ff-title); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; } .footer-links a { font-size: 15px; color: var(--text-dim); transition: var(--transition); } .footer-links a:hover { color: var(--gold-light); } .footer-bottom { border-top: 1px solid var(--border); padding-top: 28px; text-align: center; font-size: 13px; color: var(--text-dim); }

/* ============================================ ANIMATIONS ============================================ */ @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } } .reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; } .reveal.visible { opacity: 1; transform: none; }

/* ============================================ RESPONSIVE ============================================ */ @media (max-width: 1024px) { .classes-grid { grid-template-columns: repeat(2, 1fr); } .world-grid { grid-template-columns: 1fr 1fr; } .wc-large { grid-column: 1 / -1; } .footer-grid { grid-template-columns: 1fr 1fr; } } @media (max-width: 768px) { .nav-links, .nav-cta { display: none; } .nav-burger { display: block; } .about-grid { grid-template-columns: 1fr; gap: 40px; } .about-visual { min-height: 280px; } .classes-grid { grid-template-columns: 1fr; } .world-grid { grid-template-columns: 1fr; } .features-grid { grid-template-columns: 1fr 1fr; } .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 200px); } .gi-1 { grid-column: 1 / -1; grid-row: 1; } .gi-2 { grid-column: 1; grid-row: 2; } .gi-3 { grid-column: 2; grid-row: 2 / 4; } .gi-4 { grid-column: 1; grid-row: 3; } .gi-5 { display: none; } .kingdoms-banner { flex-direction: column; } .kingdom-sep { padding: 8px 0; transform: rotate(90deg); } .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } .hero-stats { gap: 16px; } } @media (max-width: 480px) { .section { padding: 64px 0; } .features-grid { grid-template-columns: 1fr; } .hero-actions { flex-direction: column; align-items: center; } .footer-grid { grid-template-columns: 1fr; } }
/* ============================================
   NPC SECTION
   ============================================ */
.npcs { background: var(--dark); }

.npcs-intro {
  text-align: center;
  color: var(--text-dim);
  font-size: 18px;
  max-width: 680px;
  margin: 0 auto 56px;
}

.npcs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ── Card ── */
.npc-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.npc-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 25px var(--gold-glow);
}

/* ── Image ── */
.npc-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1209, #0f0b08);
}
.npc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
  display: block;
}
.npc-card:hover .npc-img {
  transform: scale(1.06);
}

/* Fallback dacă poza lipsește */
.npc-image-wrap:not(:has(img[src])) {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}

/* ── Badge ── */
.npc-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--ff-title);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(200,146,42,0.85);
  color: #1a0d00;
  font-weight: 700;
  backdrop-filter: blur(4px);
}
.npc-badge--red    { background: rgba(139,26,26,0.9); color: #ffcccc; }
.npc-badge--green  { background: rgba(26,100,26,0.9); color: #ccffcc; }
.npc-badge--blue   { background: rgba(26,60,139,0.9); color: #cce0ff; }
.npc-badge--purple { background: rgba(80,10,120,0.9); color: #e8ccff; }

/* ── Body ── */
.npc-body {
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.npc-name {
  font-family: var(--ff-title);
  font-size: 17px;
  color: #fff;
  margin-bottom: 4px;
}
.npc-location {
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.npc-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.npc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.npc-tags span {
  font-family: var(--ff-title);
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-dim);
  background: rgba(255,255,255,0.03);
}

/* ── Responsive ── */
@media (max-width: 1200px) {
  .npcs-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .npcs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .npcs-grid { grid-template-columns: 1fr; }
}

/* ============================================
   DUNGEONS SECTION — CINEMATIC PANELS
   ============================================ */
.dungeons { background: var(--dark-2); }

.dungeons-intro {
  text-align: center;
  color: var(--text-dim);
  font-size: 18px;
  max-width: 660px;
  margin: 0 auto 80px;
}

/* ── Panel ── */
.dg-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  border-top: 1px solid var(--border);
}
.dg-panel--reverse { direction: rtl; }
.dg-panel--reverse > * { direction: ltr; }

/* ── Image side ── */
.dg-panel-img {
  position: relative;
  overflow: hidden;
}
.dg-panel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s ease;
  filter: brightness(0.75) saturate(0.9);
}
.dg-panel:hover .dg-panel-img img {
  transform: scale(1.05);
  filter: brightness(0.9) saturate(1.1);
}

/* fade din text spre imagine */
.dg-panel-img-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.dg-panel:not(.dg-panel--reverse) .dg-panel-img-overlay {
  background: linear-gradient(to left, var(--dark-2) 0%, transparent 40%);
}
.dg-panel--reverse .dg-panel-img-overlay {
  background: linear-gradient(to right, var(--dark-2) 0%, transparent 40%);
}

/* ── Content side ── */
.dg-panel-content {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--dark-2);
}

/* ── Meta row ── */
.dg-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.dg-diff {
  font-family: var(--ff-title);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  font-weight: 700;
}
.diff--easy    { background: rgba(26,100,26,0.25); color: #88dd88; border: 1px solid rgba(26,100,26,0.5); }
.diff--medium  { background: rgba(180,120,0,0.25);  color: #ddaa44; border: 1px solid rgba(180,120,0,0.5); }
.diff--hard    { background: rgba(139,26,26,0.25);  color: #dd6666; border: 1px solid rgba(139,26,26,0.5); }
.diff--extreme { background: rgba(80,0,120,0.3);    color: #cc88ff; border: 1px solid rgba(80,0,120,0.6); }

.dg-lvl {
  font-family: var(--ff-title);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Title & location ── */
.dg-title {
  font-family: var(--ff-title);
  font-size: clamp(26px, 3vw, 38px);
  color: #fff;
  font-weight: 900;
  margin-bottom: 6px;
  line-height: 1.15;
}
.dg-loc {
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.dg-desc {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 480px;
}

/* ── Details row ── */
.dg-details {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.dg-detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.dg-detail-icon { font-size: 20px; margin-top: 2px; }
.dg-detail strong {
  display: block;
  font-family: var(--ff-title);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 2px;
}
.dg-detail p {
  font-size: 15px;
  color: #fff;
}

/* ── Rewards ── */
.dg-rewards {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.dg-rewards-label {
  font-family: var(--ff-title);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-right: 4px;
}
.dg-rewards span:not(.dg-rewards-label) {
  font-size: 12px;
  color: var(--text-dim);
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  font-family: var(--ff-title);
  letter-spacing: 0.5px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .dg-panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .dg-panel--reverse { direction: ltr; }
  .dg-panel-img { aspect-ratio: 16 / 7; }
  .dg-panel-img-overlay { display: none; }
  .dg-panel-content { padding: 40px 28px; }
  .dg-details { gap: 20px; }
}
@media (max-width: 500px) {
  .dg-details { flex-direction: column; gap: 14px; }
  .dg-panel-content { padding: 32px 20px; }
}

/* ============================================
   EVOLUTII SECTION
   ============================================ */
.evolutii { background: var(--dark); }

.evolutii-intro {
  text-align: center;
  color: var(--text-dim);
  font-size: 18px;
  max-width: 660px;
  margin: 0 auto 48px;
}

/* ── Filtre ── */
.ev-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 64px;
}
.ev-filter {
  font-family: var(--ff-title);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-dim);
  cursor: pointer;
  transition: var(--transition);
}
.ev-filter:hover,
.ev-filter.active {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  font-weight: 700;
}

/* ── Category block ── */
.ev-category {
  margin-bottom: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border);
}
.ev-category:last-of-type { border-bottom: none; }

.ev-cat-title {
  font-family: var(--ff-title);
  font-size: 22px;
  color: var(--gold-light);
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.ev-cat-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--border), transparent);
}

/* ── Chain row ── */
.ev-chain { margin-bottom: 32px; }
.ev-chain:last-child { margin-bottom: 0; }

.ev-chain-label {
  font-family: var(--ff-title);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
  padding-left: 4px;
}

.ev-chain-items {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
.ev-chain-items::-webkit-scrollbar { height: 3px; }
.ev-chain-items::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ── Arrow ── */
.ev-arrow {
  font-size: 22px;
  color: var(--text-dim);
  padding: 0 12px;
  flex-shrink: 0;
  opacity: 0.5;
  margin-bottom: 24px;
}
.ev-arrow--gold {
  color: var(--gold);
  opacity: 1;
  font-size: 26px;
  text-shadow: 0 0 12px var(--gold);
  animation: pulseArrow 2s ease-in-out infinite;
}
@keyframes pulseArrow {
  0%,100% { opacity: 0.7; transform: translateX(0); }
  50%      { opacity: 1;   transform: translateX(4px); }
}

/* ── Item ── */
.ev-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  width: 100px;
  transition: var(--transition);
  cursor: default;
}
.ev-item:hover { transform: translateY(-6px); }

.ev-item-img {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  position: relative;
  border: 2px solid transparent;
  transition: var(--transition);
  overflow: hidden;
}
.ev-item-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}
.ev-item-img span {
  position: relative;
  z-index: 1;
}

/* Grade colors per item */
.ev-item--common  .ev-item-img { background: rgba(160,160,160,0.1); border-color: rgba(160,160,160,0.25); }
.ev-item--magic   .ev-item-img { background: rgba(60,120,220,0.12); border-color: rgba(60,120,220,0.35); }
.ev-item--rare    .ev-item-img { background: rgba(200,146,42,0.1);  border-color: rgba(200,146,42,0.3); }
.ev-item--epic    .ev-item-img { background: rgba(140,50,200,0.15); border-color: rgba(140,50,200,0.4); }
.ev-item--legendary .ev-item-img {
  background: rgba(200,146,42,0.18);
  border-color: var(--gold);
  box-shadow: 0 0 18px var(--gold-glow), 0 0 40px rgba(200,146,42,0.15);
  animation: glowLegendary 2.5s ease-in-out infinite;
}
@keyframes glowLegendary {
  0%,100% { box-shadow: 0 0 14px var(--gold-glow); }
  50%      { box-shadow: 0 0 30px var(--gold-glow), 0 0 60px rgba(200,146,42,0.2); }
}

.ev-item:hover .ev-item-img { transform: scale(1.1); }

.ev-item-name {
  font-family: var(--ff-title);
  font-size: 11px;
  color: #fff;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.3px;
}

/* ── Grade labels ── */
.ev-item-grade {
  font-family: var(--ff-title);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
}
.grade--common    { color: #aaaaaa; }
.grade--magic     { color: #6699ff; }
.grade--rare      { color: var(--gold); }
.grade--epic      { color: #cc88ff; }
.grade--legendary { color: var(--gold-light); font-weight: 700; }

/* ── Legend ── */
.ev-legend {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.ev-legend-title {
  font-family: var(--ff-title);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
}
.ev-legend-item {
  font-family: var(--ff-title);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── Hidden categories ── */
.ev-category.hidden { display: none; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .ev-item { width: 80px; }
  .ev-item-img { width: 58px; height: 58px; font-size: 26px; }
  .ev-item-name { font-size: 10px; }
  .ev-arrow { padding: 0 6px; font-size: 18px; }
}