*, *::before, *::after { box-sizing: border-box; }

body { font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif; background: var(--color-bg, #f0f4f8); padding-top: 60px; padding-bottom: 60px; }

.pp-header { position: fixed; top: 0; left: 0; right: 0; height: 60px; background: linear-gradient(135deg, #1e2530 0%, #2a4a72 100%); display: flex; align-items: center; padding: 0; z-index: 200; }
.pp-header-inner { max-width: 900px; margin: 0 auto; padding: 0 24px; width: 100%; display: flex; align-items: center; gap: 20px; }

@keyframes logo-text-shine {
  0%   { background-position: 200% center, 0% center; }
  50%  { background-position: -200% center, 0% center; }
  100% { background-position: -200% center, 0% center; }
}
.pp-logo {
  display: inline-flex; align-items: center;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.75) 50%, transparent 100%),
    linear-gradient(90deg, #38bdf8 0%, #38bdf8 11%, rgba(255,255,255,0.8) 11%, rgba(255,255,255,0.8) 38%, #4ade80 38%, #4ade80 49%, rgba(255,255,255,0.8) 49%);
  background-size: 200% auto, 100% auto;
  background-position: 200% center, 0% center;
  background-repeat: no-repeat, no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 18px; font-weight: 800;
  text-decoration: none; letter-spacing: -0.3px;
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  animation: logo-text-shine 2.4s ease-in-out infinite;
}

.pp-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.pp-nav a { color: rgba(255,255,255,0.75); font-size: 13px; font-weight: 500; text-decoration: none; padding: 6px 12px; border-radius: 4px; transition: background 0.15s, color 0.15s; }
.pp-nav a:hover { background: rgba(255,255,255,0.12); color: #fff; text-decoration: none; }

.pp-wrap { max-width: 900px; margin: 40px auto; padding: 0 16px; }
.pp-card { background: #fff; border-radius: 14px; box-shadow: 0 1px 6px rgba(0,0,0,0.07); padding: 48px 52px; }

h1 { font-size: 26px; font-weight: 800; color: #1a2a3a; margin-bottom: 6px; }
.pp-updated { font-size: 13px; color: #8a9aaa; margin-bottom: 36px; }

h2 { font-size: 16px; font-weight: 700; color: #1a2a3a; margin: 32px 0 10px; border-left: 3px solid #2d8a55; padding-left: 12px; }
p { font-size: 14px; color: #4a5a6a; line-height: 1.8; margin-bottom: 12px; }
ul { margin: 8px 0 12px 0; padding-left: 0; list-style: none; }
ul li { font-size: 14px; color: #4a5a6a; line-height: 1.8; padding-left: 18px; position: relative; }
ul li::before { content: '·'; position: absolute; left: 4px; color: #2d8a55; font-weight: 700; }

.pp-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 12px 0 16px; border-radius: 8px; border: 1px solid #dde4ee; }
.pp-table { width: 100%; min-width: 520px; border-collapse: collapse; font-size: 13px; }
.pp-table th { background: #f4f7fa; font-weight: 700; color: #2a3a4a; padding: 9px 14px; border-bottom: 1px solid #dde4ee; border-right: 1px solid #dde4ee; text-align: left; white-space: nowrap; }
.pp-table th:last-child { border-right: none; }
.pp-table td { padding: 9px 14px; border-bottom: 1px solid #dde4ee; border-right: 1px solid #dde4ee; color: #4a5a6a; line-height: 1.65; vertical-align: top; }
.pp-table td:last-child { border-right: none; }
.pp-table tr:last-child td { border-bottom: none; }

.pp-contact { background: #f6fcf8; border: 1px solid #c8e6d0; border-radius: 8px; padding: 16px 20px; margin-top: 12px; font-size: 14px; color: #2a4a3a; line-height: 1.8; }
.pp-contact-btn { display: inline-block; margin-top: 10px; padding: 8px 18px; background: #1e44a0; color: #fff; border-radius: 6px; font-size: 13px; font-weight: 600; text-decoration: none; }
.pp-contact-btn:hover { background: #1a3a8a; text-decoration: none; }

a { color: #2d6ea8; text-decoration: none; }
a:hover { text-decoration: underline; }
.pp-logo:hover { text-decoration: none; }

.pp-lang { display: flex; justify-content: flex-end; gap: 6px; margin-bottom: 28px; }
.pp-lang a, .pp-lang span { font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 20px; text-decoration: none; }
.pp-lang a { color: #5a7a9a; border: 1px solid #c8d8e8; }
.pp-lang a:hover { background: #f0f5fa; }
.pp-lang span { background: #2d8a55; color: #fff; border: 1px solid #2d8a55; }

.top-btn { position: fixed; right: 32px; bottom: 32px; width: 44px; height: 44px; border-radius: 50%; background: #1e44a0; color: #fff; border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 400; box-shadow: 0 2px 8px rgba(0,0,0,0.22); opacity: 0; pointer-events: none; transition: opacity 0.2s, transform 0.2s; }
.top-btn:hover { transform: translateY(-2px); }
.top-btn--visible { opacity: 1; pointer-events: auto; }
