:root {
  --bg:          #04081e;
  --bg2:         #080d28;
  --accent:      #ffffff;
  --accent-dim:  rgba(79,216,255,0.65);
  --text:        rgba(255, 255, 255, 0.92);
  --text-soft:   rgba(255, 255, 255, 0.45);
  --card-bg:     rgba(8, 18, 52, 0.72);
  --border:      rgba(80, 160, 230, 0.22);
  --glow:        rgba(255, 255, 255, 0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* 夜空グラデーション */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 5%,  rgba(20,50,120,0.7)  0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 95%,  rgba(10,30,90,0.6)   0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 70% 30%,  rgba(30,60,140,0.35) 0%, transparent 50%),
    linear-gradient(180deg, #06082a 0%, #04081e 50%, #020614 100%);
  z-index: -2;
}

/* ===== 星 ===== */
.sparkle {
  position: fixed;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 3px 1px rgba(255, 245, 200, 0.75);
  animation: twinkle ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.1; transform: scale(0.5); }
  50%       { opacity: 1;   transform: scale(1.2); }
}

/* ===== 流れ星 ===== */
.shooting-star {
  position: fixed;
  width: 130px;
  height: 1.5px;
  background: linear-gradient(to right, transparent, rgba(200,240,255,0.9), white);
  border-radius: 2px;
  pointer-events: none;
  z-index: 1;
  transform-origin: right center;
  animation: shoot 1.1s ease-out forwards;
}

@keyframes shoot {
  0%   { opacity: 0;   transform: rotate(-32deg) translateX(0); }
  15%  { opacity: 1; }
  80%  { opacity: 0.6; }
  100% { opacity: 0;   transform: rotate(-32deg) translateX(380px); }
}

/* ===== 冬の大三角形 ===== */

/* BETELGISSA (クリックで管理者ページ) */
.betelgeuse {
  position: fixed;
  top: 3%; right: 4%;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff 0%, #cce8ff 40%, #4080ff 100%);
  box-shadow:
    0 0 10px 7px rgba(180,210,255,0.6),
    0 0 35px 15px rgba(100,160,255,0.3),
    0 0 70px 25px rgba(80,120,255,0.12);
  animation: betelgeuseGlow 4s ease-in-out infinite alternate;
  cursor: pointer;
  z-index: 2;
}
.betelgeuse::after {
  content: 'BETELGISSA';
  position: absolute;
  right: 20px; top: 50%;
  transform: translateY(-50%);
  font-family: 'Outfit', sans-serif;
  font-size: 9px; font-weight: 800;
  letter-spacing: 0.14em;
  color: rgba(160,210,255,0.7);
  white-space: nowrap; text-transform: uppercase;
  pointer-events: none;
}
@keyframes betelgeuseGlow {
  0%   { opacity: 0.8; transform: scale(1); }
  100% { opacity: 1;   transform: scale(1.5); }
}


@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== ヘッダー ===== */
.site-header {
  text-align: center;
  padding: 56px 24px 20px;
  animation: fadeSlideIn 0.7s ease both;
}

.site-title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(36px, 9vw, 66px);
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.07em;
  line-height: 1;
  text-shadow:
    0 0 30px rgba(79,216,255,0.5),
    0 0 80px rgba(79,216,255,0.2);
}

.site-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(11px, 2.8vw, 16px);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin-top: 7px;
  text-shadow: 0 0 14px rgba(79,216,255,0.5);
}

.hero-divider {
  width: 70px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 18px auto 0;
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(79,216,255,0.4);
}

/* ===== コンテナ ===== */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px 40px;
}

/* ===== カテゴリタブ ===== */
.category-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 16px 0 20px;
  animation: fadeSlideIn 0.7s ease 0.15s both;
}

.ctab {
  padding: 8px 18px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.15);
  background: rgba(10,25,65,0.6);
  color: rgba(255,255,255,0.45);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.18s ease;
  backdrop-filter: blur(8px);
}

.ctab:hover {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-2px);
}

.ctab.active {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.8);
  box-shadow: 0 0 14px rgba(255,255,255,0.3), inset 0 0 10px rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

/* ===== セクションヘッダー ===== */
.section-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 44px 0 20px;
  animation: fadeSlideIn 0.5s ease both;
}
.section-header:first-child { margin-top: 0; }

.section-title {
  font-family: 'Anton', sans-serif;
  font-size: 24px;
  letter-spacing: 0.07em;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  text-shadow: 0 0 16px rgba(79,216,255,0.4);
}

.section-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(79,216,255,0.5), transparent);
  border-radius: 2px;
}

.section-dot {
  width: 7px; height: 7px;
  background: rgba(79,216,255,0.85);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(79,216,255,0.7);
}

/* ===== 投稿タイトル ===== */
.post-title {
  padding: 6px 12px 2px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

/* ===== ローディング / 空 ===== */
.loading, .empty-msg {
  text-align: center;
  color: var(--text-soft);
  padding: 4rem;
  font-size: 14px;
}

/* ===== 推しカメラ: フィーチャーカード ===== */
.feature-card {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 30px rgba(0,0,0,0.4), 0 0 0 1px rgba(79,216,255,0.06);
  transition: box-shadow 0.25s, transform 0.25s;
  margin-bottom: 18px;
  animation: fadeSlideIn 0.5s ease both;
}

.feature-card:hover {
  box-shadow: 0 12px 44px rgba(0,0,0,0.5), 0 0 20px rgba(79,216,255,0.12);
  transform: translateY(-3px);
}

.feature-card-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 200px;
}
@media (max-width: 600px) {
  .feature-card-inner { grid-template-columns: 1fr; }
}

.feature-embed {
  background: rgba(0,10,30,0.5);
  display: flex;
  align-items: stretch;
}
.feature-embed .embed-wrap {
  width: 100%;
  min-height: 180px;
  background: none;
  padding: 10px;
  display: flex;
  align-items: center;
}
.feature-embed .embed-wrap iframe {
  width: 100%;
  height: 180px;
  border: none;
  border-radius: 10px;
  display: block;
}

.feature-info {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.feature-badge { display: inline-flex; align-items: center; gap: 6px; flex-wrap: wrap; }

.feature-platform-tag {
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 50px;
}
.tag-youtube   { background: rgba(255, 60,  60,  0.18); color: rgba(255,255,255,0.9); border: 1px solid rgba(255,60,60,0.3); }
.tag-x         { background: rgba(255,255,255, 0.1);  color: rgba(255,255,255,0.9); border: 1px solid rgba(255,255,255,0.15); }
.tag-instagram { background: rgba(180, 80, 255, 0.18); color: rgba(255,255,255,0.9); border: 1px solid rgba(180,80,255,0.3); }
.tag-tiktok    { background: rgba(  0,200, 200, 0.15); color: rgba(255,255,255,0.9); border: 1px solid rgba(0,200,200,0.25); }

.feature-category-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
  background: rgba(79,216,255,0.12);
  color: rgba(79,216,255,0.9);
  padding: 3px 10px; border-radius: 50px;
  border: 1px solid rgba(79,216,255,0.25);
}

.feature-label {
  font-family: 'Outfit', sans-serif;
  font-size: 20px; font-weight: 800;
  color: #fff;
  line-height: 1.2; letter-spacing: 0.02em;
  text-shadow: 0 0 12px rgba(79,216,255,0.3);
}

.feature-delete { margin-top: 4px; }

/* ===== グリッドコンテナ ===== */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  align-items: start;
}
@media (max-width: 600px) { .posts-grid { grid-template-columns: 1fr; } }
@media (min-width: 800px) { .posts-grid { grid-template-columns: repeat(3, 1fr); } }

/* ===== 通常投稿カード ===== */
.post-card {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: box-shadow 0.2s, transform 0.2s;
  animation: fadeSlideIn 0.45s ease both;
}
.post-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 18px rgba(79,216,255,0.1);
  transform: translateY(-3px);
}

/* バッジ */
.post-badge {
  display: flex; align-items: center; justify-content: space-between;
  padding: 7px 12px;
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-bottom: 1px solid rgba(79,216,255,0.08);
}
.badge-youtube   { background: rgba(255,255,255, 0.05); color: rgba(255,255,255,0.9); border-bottom: 1px solid rgba(255,255,255,0.07); }
.badge-x         { background: rgba(255,255,255, 0.06); color: rgba(255,255,255,0.9); border-bottom: 1px solid rgba(255,255,255,0.08); }
.badge-instagram { background: rgba(180, 80, 255, 0.12); color: rgba(255,255,255,0.9); border-bottom: 1px solid rgba(180,80,255,0.15); }
.badge-tiktok    { background: rgba(  0,200, 200, 0.1);  color: rgba(255,255,255,0.9); border-bottom: 1px solid rgba(0,200,200,0.12); }

.badge-category {
  font-size: 10px; font-weight: 600;
  color: var(--text-soft);
  letter-spacing: 0.04em; text-transform: none;
}

/* 埋め込みエリア */
.embed-wrap {
  background: rgba(0,8,25,0.55);
  display: flex; align-items: center; justify-content: center;
  padding: 8px; min-height: 80px;
}
.embed-wrap iframe {
  width: 100%; border: none; border-radius: 8px; display: block;
}

/* TikTok サムネイル（16:9コンテナ・ぼかし背景） */
.tiktok-thumb-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
}
.tiktok-thumb-container::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: var(--bg) center / cover no-repeat;
  filter: brightness(0.45);
  z-index: 0;
}
.tiktok-thumb {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: auto;
  z-index: 1;
}

/* Instagram サムネイル（1:1 正方形） */
.insta-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

/* YouTube サムネイル */
.yt-thumb-wrap {
  position: relative;
  cursor: pointer;
  padding: 8px;
  min-height: unset;
  display: block;
  text-decoration: none;
}
.yt-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}
.yt-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 54px; height: 54px;
  background: rgba(0,0,0,0.65);
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
}
.yt-thumb-wrap:hover .yt-play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.08);
}
.embed-wrap .twitter-tweet,
.embed-wrap .instagram-media,
.embed-wrap .tiktok-embed {
  margin: 0 auto !important; max-width: 100% !important;
}

/* リンクカード */
.link-card {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px; text-decoration: none;
  color: var(--accent); font-size: 13px; font-weight: 500;
  word-break: break-all; line-height: 1.5;
}
.link-card:hover { color: #fff; }

/* 削除ボタン */
.btn-delete-post {
  display: block; width: calc(100% - 24px);
  margin: 4px 12px 8px; padding: 6px;
  background: none; border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px; color: rgba(255,255,255,0.45);
  font-size: 11px; cursor: pointer;
  transition: all 0.15s; font-family: inherit;
}
.btn-delete-post:hover { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.8); }

/* ===== ボタン ===== */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 11px 24px; border-radius: 50px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13.5px; font-weight: 700;
  letter-spacing: 0.04em; border: none;
  cursor: pointer; transition: all 0.22s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, #1a5fa8, #0d3d73);
  color: #fff;
  box-shadow: 0 4px 16px rgba(26,95,168,0.4);
}
.btn-primary:hover { box-shadow: 0 6px 22px rgba(79,216,255,0.3); }

.form-msg { margin-top: 8px; font-size: 13px; font-weight: 500; min-height: 1.2em; }
.form-msg.error   { color: #ff8888; }
.form-msg.success { color: rgba(79,216,255,0.9); }

/* ===== フッター ===== */
.site-footer {
  text-align: right;
  padding: 1rem 24px 1.5rem;
  position: relative;
}
.site-credit {
  font-size: 11px;
  color: var(--text-soft);
  letter-spacing: 0.06em;
  margin-bottom: 4px;
  text-align: center;
}
.site-credit a {
  color: var(--text-soft);
  text-decoration: none;
  transition: color 0.15s;
}
.site-credit a:hover { color: var(--text); }

.admin-toggle {
  background: none; border: none;
  font-size: 16px; cursor: pointer;
  opacity: 0.2; transition: opacity 0.2s; padding: 4px;
}
.admin-toggle:hover { opacity: 0.6; }

/* ===== 管理者ロック画面 ===== */
.admin-prompt {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  background: rgba(2,5,20,0.75);
  backdrop-filter: blur(10px); padding: 1rem;
}
.admin-prompt.hidden { display: none; }

.admin-prompt-box {
  background: rgba(8,18,52,0.97);
  border: 1.5px solid rgba(79,216,255,0.3);
  border-radius: 22px; padding: 30px;
  width: 100%; max-width: 340px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 30px rgba(79,216,255,0.1);
}
.admin-prompt-label {
  font-family: 'Outfit', sans-serif;
  font-size: 16px; font-weight: 800;
  color: var(--accent); margin-bottom: 14px; letter-spacing: 0.04em;
}
.admin-prompt-box input {
  width: 100%; padding: 11px 16px;
  border: 1.5px solid rgba(79,216,255,0.25);
  border-radius: 12px;
  font-family: 'Noto Sans JP', sans-serif; font-size: 14px;
  color: var(--text); background: rgba(5,12,35,0.8);
  outline: none; margin-bottom: 14px;
}
.admin-prompt-box input:focus { border-color: var(--accent); }

.admin-prompt-btns { display: flex; gap: 8px; }
.admin-prompt-btns button {
  flex: 1; padding: 10px; border-radius: 50px; border: none;
  font-family: 'Noto Sans JP', sans-serif; font-size: 13px; font-weight: 700;
  cursor: pointer; transition: all 0.2s;
}
.admin-prompt-btns button:first-child {
  background: linear-gradient(135deg, #1a5fa8, #0d3d73);
  color: #fff;
}
.admin-prompt-btns button:last-child {
  background: rgba(79,216,255,0.08);
  color: var(--text-soft);
  border: 1.5px solid rgba(79,216,255,0.2);
}
.admin-prompt-msg { font-size: 12px; color: #ff8888; margin-top: 8px; min-height: 1.2em; }

/* ===== 管理者パネル ===== */
.admin-panel {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 150;
  background: rgba(4,10,30,0.97);
  border-top: 1.5px solid rgba(79,216,255,0.2);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.5);
  backdrop-filter: blur(16px);
}
.admin-panel.hidden { display: none; }

.admin-panel-inner { max-width: 700px; margin: 0 auto; padding: 16px 20px; }

.admin-panel-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
  font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 800;
  color: var(--accent); letter-spacing: 0.04em;
}
.admin-panel-header button {
  background: none; border: 1px solid rgba(79,216,255,0.2);
  border-radius: 20px; padding: 4px 14px; font-size: 12px;
  cursor: pointer; color: var(--text-soft);
  font-family: inherit; transition: background 0.15s;
}
.admin-panel-header button:hover { background: rgba(79,216,255,0.08); }

.admin-form { display: flex; flex-direction: column; gap: 10px; }

.admin-form-row label,
.admin-form-row-split label {
  display: block; font-size: 10px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-dim); margin-bottom: 4px;
  font-family: 'Outfit', sans-serif;
}
.admin-form-row input,
.admin-form-row select,
.admin-form-row-split input,
.admin-form-row-split select {
  width: 100%; padding: 9px 13px;
  border: 1.5px solid rgba(79,216,255,0.22);
  border-radius: 10px;
  font-family: 'Noto Sans JP', sans-serif; font-size: 13px;
  color: var(--text); background: rgba(5,12,35,0.8); outline: none;
}
.admin-form-row input:focus,
.admin-form-row select:focus { border-color: var(--accent); }

.admin-form-row-split { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

@media (max-width: 480px) {
  .admin-form-row-split { grid-template-columns: 1fr; }
  .ctab { font-size: 11.5px; padding: 7px 14px; }
}

/* ===== 検索・ソートコントロール ===== */
.list-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  flex-wrap: wrap;
}

.sort-btns { display: flex; gap: 6px; }

.sort-btn {
  padding: 7px 16px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.15);
  background: rgba(10,25,65,0.6);
  color: rgba(255,255,255,0.45);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px; font-weight: 700;
  cursor: pointer; transition: all 0.18s ease;
}
.sort-btn:hover {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.35);
}
.sort-btn.active {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.8);
  box-shadow: 0 0 10px rgba(255,255,255,0.25);
}

#searchInput {
  flex: 1; min-width: 160px;
  padding: 7px 16px;
  border: 1.5px solid rgba(79,216,255,0.22);
  border-radius: 50px;
  background: rgba(5,12,35,0.7);
  color: var(--text);
  font-family: 'Noto Sans JP', sans-serif; font-size: 13px;
  outline: none; transition: border-color 0.18s;
}
#searchInput:focus { border-color: rgba(79,216,255,0.5); }
#searchInput::placeholder { color: var(--text-soft); }

/* ===== Recommend: 星ボタン・並び替えボタン ===== */
.btn-star-post {
  background: none; border: none;
  font-size: 15px; line-height: 1;
  cursor: pointer; padding: 0 2px;
  color: rgba(255,255,255,0.2);
  transition: all 0.15s;
}
.btn-star-post:hover { color: rgba(255,215,0,0.8); }
.btn-star-post.starred { color: #ffd700; text-shadow: 0 0 8px rgba(255,210,0,0.7); }

.star-badge {
  font-size: 12px; color: #ffd700;
  text-shadow: 0 0 6px rgba(255,210,0,0.6);
  pointer-events: none;
}

.btn-order-post {
  padding: 4px 10px;
  background: none; border: 1px solid rgba(79,216,255,0.2);
  border-radius: 6px; color: rgba(79,216,255,0.5);
  font-size: 13px; cursor: pointer;
  transition: all 0.15s; font-family: inherit;
  margin: 4px 4px 0 12px;
}
.btn-order-post:hover { background: rgba(79,216,255,0.08); color: rgba(79,216,255,0.9); }

/* ===== 編集ボタン ===== */
.btn-edit-post {
  display: block; width: calc(100% - 24px);
  margin: 0 12px 4px; padding: 6px;
  background: none; border: 1px solid rgba(79,216,255,0.2);
  border-radius: 8px; color: rgba(79,216,255,0.5);
  font-size: 11px; cursor: pointer;
  transition: all 0.15s; font-family: inherit;
}
.btn-edit-post:hover { background: rgba(79,216,255,0.06); color: rgba(79,216,255,0.9); }

/* ===== 編集モーダル ===== */
.edit-modal-field { margin-bottom: 12px; }
.edit-modal-field label {
  display: block; font-size: 10px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-dim); margin-bottom: 4px;
  font-family: 'Outfit', sans-serif;
}
.edit-modal-field input,
.edit-modal-field select {
  width: 100%; padding: 9px 13px;
  border: 1.5px solid rgba(79,216,255,0.22);
  border-radius: 10px;
  font-family: 'Noto Sans JP', sans-serif; font-size: 13px;
  color: var(--text); background: rgba(5,12,35,0.8);
  outline: none;
}
.edit-modal-field input:focus,
.edit-modal-field select:focus { border-color: var(--accent); }

.edit-modal-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-bottom: 0;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(79,216,255,0.2); border-radius: 4px; }
