/*
Theme Name: DMM SEO Theme
Theme URI: https://example.com
Author: Site Owner
Author URI: https://example.com
Description: DMM/FANZA商品データを扱う独自テーマ。STEP1: 表示部分のみ(データ取得・自動更新・AI処理は独自プラグイン側で別途実装)。
Version: 0.1.0
Requires at least: 6.0
Requires PHP: 8.0
Text Domain: dmm-seo-theme
*/

/* Astro版 astro/src/styles/global.css を移植した配色変数(確認済み) */
:root {
  --bg-base: #0a0a0a;
  --bg-surface: #111111;
  --bg-surface-hover: #1a1a1a;
  --border: #2a2a2a;
  --accent: #d4a843;
  --accent-light: #f0c060;
  --text-primary: #f0f0f0;
  --text-secondary: #888888;
  --danger: #e05252;
}

html {
  background-color: var(--bg-base);
  color: var(--text-primary);
  font-family: 'Noto Sans JP', sans-serif;
}

body {
  background: var(--bg-base);
  color: var(--text-primary);
  min-height: 100dvh;
  margin: 0;
}

a {
  color: inherit;
}

.snap-scroll::-webkit-scrollbar { display: none; }
.snap-scroll { scrollbar-width: none; }

/* like-heart アニメーション(astro/src/components/LikeButton.astro を移植・確認済み) */
@keyframes like-pop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.5); }
  70%  { transform: scale(0.9); }
  100% { transform: scale(1); }
}
@keyframes like-float {
  0%   { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(-60px) scale(0.6); }
}
.like-pop { animation: like-pop 0.4s cubic-bezier(.36,.07,.19,.97); }
