/* TNG Global CSS - Mobile First */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
:root{
  --bg:#000;--bg2:#0a0a0a;--bg-card:#111;--bg-hover:#1a1a1a;
  --text:#f3f3f3;--text2:#a8a8a8;--text3:#666;
  --accent:#e987e4;--accent2:#de84d7;
  --link:#fefefe;--border:#222;--border2:#333;
  --footer-bg:#191919;
}
html{font-size:16px;scroll-behavior:smooth}
body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen-Sans,Ubuntu,Cantarell,'Helvetica Neue',sans-serif;background:var(--bg);color:var(--text);line-height:1.65;-webkit-font-smoothing:antialiased;overflow-x:hidden;width:100%;min-height:100vh}
@media(min-width:768px){body{max-width:480px;margin:0 auto}}
a{color:var(--link);text-decoration:none;transition:color .2s}a:hover{color:var(--accent)}
strong{color:#fff}

/* Header */
.site-header{background:#000;padding:12px 16px;display:flex;align-items:center;justify-content:space-between;position:sticky;top:0;z-index:100}
.header-logo{width:54px;height:54px;flex-shrink:0}
.logo-circle{width:54px;height:54px;border:2px solid var(--accent);border-radius:50%;display:flex;align-items:center;justify-content:center;flex-direction:column;font-size:7px;font-weight:700;letter-spacing:.5px;line-height:1.3;text-align:center;color:#fff}
.header-title{flex:1;text-align:center;line-height:1.2}
.ht-main{display:block;font-size:11px;font-weight:800;letter-spacing:2px;color:#fff}
.ht-sub{display:block;font-size:9px;color:#e987e4;letter-spacing:1px;margin-top:2px}
.header-nav{display:flex;align-items:center;gap:8px}
.nav-link{font-size:13px;font-weight:500;color:#aaa;padding:6px 12px;border-radius:6px;transition:all .2s}
.nav-link:hover{color:#fff;background:rgba(255,255,255,.06)}
.nav-btn{font-size:12px;font-weight:600;color:#000;background:#e987e4;padding:6px 14px;border-radius:20px;transition:all .2s}
.nav-btn:hover{background:#de84d7;color:#000}

/* Menu toggle */
.menu-toggle{background:none;border:none;color:#fff;font-size:22px;cursor:pointer;padding:4px 2px;line-height:1}

/* Side overlay */
.side-overlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,.6);z-index:200}
.side-overlay.open{display:block}

/* Side menu */
.side-menu{position:fixed;top:0;right:-280px;width:270px;height:100%;background:#0a0a0a;z-index:300;transition:right .3s;overflow-y:auto;border-left:1px solid #1a1a1a}
.side-menu.open{right:0}
.side-header{display:flex;align-items:center;gap:8px;padding:16px;border-bottom:1px solid #1a1a1a}
.side-close{background:none;border:none;color:#666;font-size:18px;cursor:pointer;margin-left:auto;padding:4px}
.side-user{display:flex;align-items:center;gap:10px;padding:14px 16px;border-bottom:1px solid #1a1a1a;background:#111}
.side-section{padding:8px 0;border-bottom:1px solid #111}
.side-label{font-size:9px;font-weight:700;color:#555;text-transform:uppercase;letter-spacing:1.5px;padding:8px 16px 4px}
.side-link{display:block;padding:10px 16px;font-size:13px;color:#aaa;transition:all .15s}
.side-link:hover{color:#fff;background:rgba(233,135,228,.06)}

/* Hero */
.hero-banner{position:relative;width:100%;overflow:hidden;margin-bottom:4px;display:block}
.hero-banner img{width:100%;aspect-ratio:16/10;object-fit:cover;opacity:.7;display:block}
.hero-overlay{position:absolute;bottom:0;left:0;right:0;padding:24px 20px;background:linear-gradient(transparent,rgba(0,0,0,.85))}
.hero-overlay h1{font-size:1.5rem;font-weight:700;line-height:1.4;margin-bottom:4px}
.hero-overlay p{font-size:.9rem;color:#ccc}

/* City Grid */
.city-grid{display:grid;grid-template-columns:1fr 1fr;gap:4px;padding:0 0 4px}
.city-card{position:relative;aspect-ratio:4/3;overflow:hidden;background:#111;display:block}
.city-card img{width:100%;height:100%;object-fit:cover;opacity:.65}
.city-overlay{position:absolute;bottom:0;left:0;right:0;padding:12px;background:linear-gradient(transparent,rgba(0,0,0,.8));text-align:center}
.city-overlay h3{font-size:.85rem;font-weight:700;margin-bottom:2px}
.city-overlay p{font-size:.65rem;color:#bbb;line-height:1.4}

/* Section Header */
.section-header{display:flex;justify-content:space-between;align-items:center;padding:20px 16px 12px;border-top:1px solid var(--border)}
.section-header h2{font-size:1rem;font-weight:700;color:var(--accent)}
.section-header a,.section-header span{font-size:.82rem;color:#999}

/* Featured Post */
.featured-post{padding:0 0 16px;display:block}
.featured-img{width:100%;background:#111;overflow:hidden;position:relative}
.featured-img img{width:100%;aspect-ratio:2/1;object-fit:cover;display:block}
.featured-badge{position:absolute;bottom:12px;left:12px;background:var(--accent);color:#000;font-size:.72rem;font-weight:700;padding:3px 10px;border-radius:4px}
.featured-post h3{font-size:1rem;font-weight:600;line-height:1.5;padding:12px 16px 0}

/* Post List Item */
.post-list-item{display:flex;gap:12px;padding:12px 16px;border-top:1px solid #1a1a1a;align-items:flex-start}
.post-list-item .thumb{width:100px;min-width:100px;height:68px;background:#111;border-radius:4px;overflow:hidden;flex-shrink:0}
.post-list-item .thumb img{width:100%;height:100%;object-fit:cover}
.post-list-item .info h4{font-size:.88rem;font-weight:600;line-height:1.45;margin-bottom:4px;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
.post-list-item .info .meta{font-size:.72rem;color:var(--text3)}

/* Post Page */
.post-cat-label{display:inline-block;font-size:.78rem;color:var(--accent);font-weight:600;padding:16px 16px 4px}
.post-header{padding:4px 16px 16px}
.post-header h1{font-size:1.35rem;font-weight:600;line-height:1.45}
.post-meta-bar{display:flex;gap:12px;font-size:.75rem;color:var(--text3);padding:0 16px 16px;border-bottom:1px solid #1a1a1a;margin-bottom:16px}

/* Post Body - Magazine Style */
.post-body{padding:0 16px 40px;font-size:14px;line-height:1.85;color:#ddd;word-break:keep-all}
.post-body h2{font-size:1.1rem;font-weight:700;color:#fff;margin:28px 0 0;padding:14px 16px 12px;background:linear-gradient(135deg,#1a1a1a,#111);border-left:3px solid #e987e4;border-radius:0 8px 0 0;letter-spacing:-.02em}
.post-body h2 a{color:#fff;border:none}
.post-body h2 a:hover{color:#e987e4}
.post-body h3{font-size:.95rem;font-weight:600;color:#fff;margin:20px 0 8px;padding-left:10px;border-left:3px solid #e987e4}
.post-body h4{font-size:.88rem;font-weight:600;color:#eee;margin:16px 0 6px}
.post-body p{margin:0 0 14px;color:#ccc}
.post-body strong{color:#fff;font-weight:600}
.post-body a{color:#e987e4;text-decoration:none;border-bottom:1px solid rgba(233,135,228,.3);transition:border-color .2s}
.post-body a:hover{border-bottom-color:#e987e4}

/* Venue Info List (ul right after h2) → Card style */
.post-body h2 + ul,
.post-body h2 + p + ul{
  list-style:none;padding:0;margin:0;background:#111;border:1px solid #1a1a1a;border-top:none;border-radius:0 0 8px 8px;overflow:hidden
}
.post-body h2 + ul li,
.post-body h2 + p + ul li{
  padding:10px 16px;border-bottom:1px solid #1a1a1a;font-size:13px;line-height:1.7;color:#bbb;display:flex;gap:4px;flex-wrap:wrap
}
.post-body h2 + ul li:last-child,
.post-body h2 + p + ul li:last-child{border-bottom:none}
.post-body h2 + ul li strong,
.post-body h2 + p + ul li strong{color:#e987e4;font-weight:600;white-space:nowrap;min-width:70px;flex-shrink:0}

/* Regular ul (not right after h2) */
.post-body p + ul,
.post-body p + ol{margin:8px 0 16px;padding-left:20px;color:#ccc}
.post-body li{margin-bottom:6px;line-height:1.75;font-size:13px}

/* Images → rounded, full-width, with spacing */
.post-body img{max-width:100%;height:auto;border-radius:8px;margin:12px 0;display:block;border:1px solid #1a1a1a}

/* Google Maps iframe */
.post-body iframe{max-width:100%;width:100%;height:200px;border-radius:8px;margin:8px 0 20px;border:1px solid #222}

/* Tables */
.post-body table{width:100%;border-collapse:separate;border-spacing:0;margin:16px 0;font-size:13px;border-radius:8px;overflow:hidden;border:1px solid #222}
.post-body thead th{background:#1a1a1a;padding:10px 12px;text-align:left;font-weight:600;font-size:12px;color:#e987e4;border-bottom:2px solid #333;white-space:nowrap}
.post-body tbody td{padding:10px 12px;border-bottom:1px solid #1a1a1a;color:#ccc;vertical-align:top}
.post-body tbody tr:hover{background:rgba(233,135,228,.04)}
.post-body tbody td a{color:#e987e4}
.post-body tbody td:last-child{color:#e987e4;letter-spacing:1px}

/* Blockquote */
.post-body blockquote{background:#0d0d0d;border-left:3px solid #e987e4;padding:14px 16px;margin:16px 0;border-radius:0 8px 8px 0;font-size:13px;color:#aaa;line-height:1.75}

/* Legal disclaimer toggle */
.post-body a[tabindex]{display:block;background:#111;border:1px solid #222;border-radius:8px;padding:10px 14px;margin:16px 0;font-size:12px;color:#888;text-align:center}

/* Section boxes from WP */
.post-body section{margin:16px 0;padding:14px;background:#0d0d0d;border:1px solid #1a1a1a;border-radius:8px}

/* Hide WP junk */
.post-body > a[role="button"]{display:none}
.post-body > a:first-child{font-size:0;line-height:0;height:0;overflow:hidden;display:block}
.post-body p > style,.post-body style{display:none}
.post-body hr{border:none;height:1px;background:#222;margin:28px 0}

/* Ranking card (1위<br><strong>Name pattern) */
.post-body .rank-grid{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin:12px 0 20px}
.post-body .rank-card{background:#111;border:1px solid #222;border-radius:8px;padding:12px;display:flex;gap:10px;align-items:flex-start}
.post-body .rank-num{font-size:20px;font-weight:800;color:#e987e4;min-width:24px;line-height:1}
.post-body .rank-body{display:flex;flex-direction:column;gap:2px}
.post-body .rank-body strong{font-size:13px;color:#fff}
.post-body .rank-price{font-size:12px;color:#e987e4;font-weight:600}
.post-body .rank-desc{font-size:11px;color:#888;line-height:1.4}
.post-body .rank-star{font-size:11px;color:#e987e4;font-weight:600}

/* Stars */
.stars{color:var(--accent);letter-spacing:1px;font-size:.75rem}

/* TNL Button */
.tnl-button{display:block;text-align:center;padding:14px;background:var(--accent);color:#000;font-weight:700;font-size:.9rem;border-radius:6px;margin:24px 16px;text-decoration:none}
.tnl-button:hover{background:var(--accent2);color:#000}

/* Related */
.related-section{padding:24px 16px}
.related-section h2{font-size:1rem;font-weight:700;color:var(--accent);margin-bottom:16px;padding-bottom:8px;border-bottom:1px solid var(--border)}

/* Community */
.community-page{padding:16px;min-height:60vh}
.community-page h1{font-size:1.3rem;margin-bottom:20px;color:#fff}
.community-notice{background:var(--bg-card);border:1px solid var(--border);border-radius:8px;padding:16px;margin-bottom:16px}
.community-notice h3{font-size:.9rem;margin-bottom:8px;color:var(--accent)}
.community-notice p{font-size:.85rem;color:var(--text2);line-height:1.7}

/* Error page */
.error-page{padding:60px 20px;text-align:center;min-height:50vh;display:flex;flex-direction:column;align-items:center;justify-content:center}
.error-page h1{font-size:3rem;color:var(--accent);margin-bottom:16px}
.error-page p{color:#888;margin-bottom:24px}
.error-page .home-btn{display:inline-block;padding:12px 28px;background:var(--accent);color:#000;font-weight:600;border-radius:6px}

/* Footer */
.site-footer{background:var(--footer-bg);padding:24px 16px;text-align:center;margin-top:32px;border-top:1px solid var(--border)}
.footer-nav{display:flex;justify-content:center;flex-wrap:wrap;gap:16px;margin-bottom:16px}
.footer-nav a{font-size:.82rem;color:#888}
.footer-nav a:hover{color:#e987e4}
.footer-copy{font-size:.75rem;color:#666}

/* Scroll top */
#scroll-top{position:fixed;bottom:24px;right:16px;width:36px;height:36px;background:#fefefe;color:#000;border-radius:4px;display:none;align-items:center;justify-content:center;font-size:1rem;cursor:pointer;z-index:50;border:none}

/* Desktop - already constrained by body max-width:480px */