:root{
  --bg:#0b1220;
  --card:#0f1a2e;
  --text:#eaf0ff;
  --muted:#a6b1c8;
  --line:rgba(255,255,255,.10);
  --accent:#22c55e;
  --accent2:#60a5fa;
  --gold:#fbbf24;
  --r:18px;
  --shadow:0 18px 40px rgba(0,0,0,.45);
}

*{ box-sizing:border-box; -webkit-tap-highlight-color:transparent }
body{
  margin:0;
  font-family:system-ui,-apple-system,"Segoe UI",Roboto,"Noto Sans KR",sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 520px at 10% -10%, rgba(96,165,250,.18), transparent 60%),
    radial-gradient(900px 520px at 95% 0%, rgba(34,197,94,.14), transparent 60%),
    var(--bg);
}

a{ color:inherit }
.container{ max-width:1020px; margin:0 auto; padding:0 14px }

header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,18,32,.72);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.top{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; padding:14px 0; flex-wrap:wrap;
}

.brand{ display:flex; align-items:center; gap:10px; text-decoration:none }
.logo{
  width:40px;height:40px;border-radius:14px;
  border:1px solid var(--line);
  display:grid;place-items:center;
  background:rgba(255,255,255,.06);
  font-weight:950;
  box-shadow:0 10px 20px rgba(0,0,0,.25);
}
.title{ font-weight:950; letter-spacing:.2px }
.subtitle{ color:var(--muted); font-size:12.5px; margin-top:2px }

.lang{
  display:flex; gap:8px; flex-wrap:wrap; justify-content:flex-end;
}
.lang a{
  padding:7px 10px; border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.05);
  text-decoration:none;
  font-weight:900;
  font-size:12.5px;
}
.lang a.active{ background:rgba(96,165,250,.18); border-color:rgba(96,165,250,.35) }

nav{
  display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end;
}
.chip{
  padding:9px 12px; border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.05);
  text-decoration:none;
  font-weight:900;
  font-size:13px;
}
.chip:hover{ background:rgba(255,255,255,.09) }

main{ padding:14px 0 92px } /* bottom bar space */

.hero{
  border:1px solid var(--line);
  border-radius:var(--r);
  box-shadow:var(--shadow);
  overflow:hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
}
.hero-in{ padding:18px }
h1{ margin:0; font-size:26px; line-height:1.2 }
.lead{ margin:10px 0 0; color:var(--muted); font-size:14px; line-height:1.65 }

.badges{ margin-top:12px; display:flex; gap:10px; flex-wrap:wrap }
.pill{
  display:inline-flex; align-items:center; gap:6px;
  padding:6px 10px; border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.04);
  font-size:12.5px; color:var(--muted); font-weight:900;
}

.actions{
  display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-top:14px;
}
@media (max-width:780px){ .actions{ grid-template-columns:1fr } }

.btn{
  display:flex; align-items:center; justify-content:center;
  padding:14px 12px;
  border-radius:16px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
  text-decoration:none;
  font-weight:950;
  font-size:15px;
  cursor:pointer;
  user-select:none;
}
.btn:hover{ background:rgba(255,255,255,.10) }
.btn.accent{ background:rgba(34,197,94,.18); border-color:rgba(34,197,94,.35) }
.btn.accent2{ background:rgba(96,165,250,.18); border-color:rgba(96,165,250,.35) }

.grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:14px;
  margin-top:14px;
}
@media (max-width:900px){ .grid{ grid-template-columns:1fr } }

.card{
  border:1px solid var(--line);
  border-radius:var(--r);
  background:rgba(255,255,255,.03);
  overflow:hidden;
}
.hd{
  padding:12px 14px;
  border-bottom:1px solid rgba(255,255,255,.06);
  display:flex; align-items:center; justify-content:space-between;
  gap:10px;
}
.hd h2{ margin:0; font-size:15px; font-weight:950 }
.bd{ padding:14px }
.muted{ color:var(--muted); line-height:1.7; font-size:13.5px; white-space:pre-line }

table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.10);
}
th,td{ padding:12px; border-bottom:1px solid rgba(255,255,255,.06); font-size:13.5px }
th{ text-align:left; background:rgba(255,255,255,.04); font-weight:950 }
tr:last-child td{ border-bottom:0 }
.price{ color:var(--gold); font-weight:950 }

.copyrow{ display:flex; gap:8px; flex-wrap:wrap; margin-top:10px }
.copybox{
  flex:1; min-width:240px;
  padding:12px;
  border:1px solid var(--line);
  border-radius:14px;
  background:rgba(255,255,255,.04);
  color:var(--text);
  font-size:14px;
  outline:none;
}
.mini{
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
  color:var(--text);
  font-weight:950;
  cursor:pointer;
  white-space:nowrap;
}
.mini:hover{ background:rgba(255,255,255,.10) }
.toast{ display:none; margin-top:8px; color:var(--muted); font-size:12.5px }

.map-wrap{
  width:100%;
  border-radius:14px;
  overflow:hidden;
  border:1px solid var(--line);
  background:#000;
  margin-top:12px;
}
.map-wrap iframe{ width:100%; height:320px; border:0; display:block }

.gallery{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
@media (max-width:720px){ .gallery{ grid-template-columns:1fr } }
.gitem{
  background:rgba(0,0,0,.14);
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  overflow:hidden;
}
.gitem img{ width:100%; height:auto; display:block }
.gcap{ padding:10px 12px; color:var(--muted); font-size:13px; line-height:1.4 }

details{
  border:1px solid rgba(255,255,255,.10);
  border-radius:14px;
  background:rgba(255,255,255,.03);
  padding:12px 14px;
  margin:10px 0;
}
summary{ cursor:pointer; font-weight:950 }
details p{ margin:8px 0 0; color:var(--muted); line-height:1.65; font-size:13.5px }

.video{
  width:100%;
  aspect-ratio:16/9;
  border:0;
  border-radius:14px;
  background:#000;
}

.site-footer{
  margin-top:22px;
  padding:18px 0 22px;
  border-top:1px solid rgba(255,255,255,.08);
}
.ft-title{ font-weight:950; margin-bottom:10px }
.ft-links{
  list-style:none;
  padding:0; margin:0;
  display:flex; gap:10px; flex-wrap:wrap;
}
.ft-links a{
  display:inline-block;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  text-decoration:none;
}
.ft-links a:hover{ background:rgba(255,255,255,.05) }

/* 하단 고정 CTA */
.bar{
  position:fixed; left:0; right:0; bottom:0;
  background:rgba(11,18,32,.78);
  backdrop-filter: blur(10px);
  border-top:1px solid rgba(255,255,255,.06);
  padding:10px 12px;
  z-index:60;
}
.bar-in{
  max-width:1020px; margin:0 auto;
  display:flex; gap:10px;
}
.bar a{
  flex:1;
  display:flex; align-items:center; justify-content:center;
  padding:13px 12px;
  border-radius:14px;
  text-decoration:none;
  font-weight:950;
  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
}
.bar a.primary{ background:rgba(34,197,94,.20); border-color:rgba(34,197,94,.35) }
