/*
  Skin Name: Stripchat Premium Dark
  Description: 
  Skin URI: https://livechat4545.com/
  Author: Skin Creator Team abc4
  Author URI: https://livechat4545.com/
  Screenshot URI: 
  Version: 1.3.0
  Priority: 1000
*/

/* ===== 基本カラー設定 ===== */
:root {
  --primary-color: #8B0000;
  --accent-color: #FFD700;
  --background-dark: #0a0a0a;
  --background-secondary: #1a1a1a;
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --border-color: #333333;
  --gradient-primary: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
  --gradient-accent: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  --shadow-primary: 0 4px 20px rgba(139, 0, 0, 0.3);
  --shadow-accent: 0 4px 20px rgba(255, 215, 0, 0.2);
}

/* ===== 全体的なスタイリング ===== */
body {
  background: var(--background-dark);
  color: var(--text-primary);
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  line-height: 1.7;
  position: relative;
  overflow-x: hidden;
}

/* 背景アニメーション効果 */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(139, 0, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(220, 20, 60, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
  animation: backgroundFlow 20s ease-in-out infinite;
  z-index: -2;
  pointer-events: none;
}

@keyframes backgroundFlow {
  0%, 100% { 
    transform: scale(1) rotate(0deg);
    opacity: 0.8;
  }
  33% { 
    transform: scale(1.1) rotate(120deg);
    opacity: 1;
  }
  66% { 
    transform: scale(0.9) rotate(240deg);
    opacity: 0.6;
  }
}

/* 動的パーティクル背景 */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(1px 1px at 10% 20%, rgba(255, 215, 0, 0.4), transparent),
    radial-gradient(1px 1px at 30% 60%, rgba(220, 20, 60, 0.3), transparent),
    radial-gradient(1px 1px at 60% 30%, rgba(255, 215, 0, 0.3), transparent),
    radial-gradient(1px 1px at 80% 70%, rgba(220, 20, 60, 0.4), transparent),
    radial-gradient(1px 1px at 90% 10%, rgba(255, 215, 0, 0.2), transparent);
  background-size: 300px 300px, 400px 400px, 350px 350px, 450px 450px, 250px 250px;
  animation: 
    floatParticles1 25s linear infinite,
    floatParticles2 30s linear infinite reverse,
    floatParticles3 35s linear infinite;
  z-index: -1;
  pointer-events: none;
}

@keyframes floatParticles1 {
  0% { transform: translateY(0px) translateX(0px); }
  25% { transform: translateY(-20px) translateX(10px); }
  50% { transform: translateY(-10px) translateX(-5px); }
  75% { transform: translateY(-30px) translateX(15px); }
  100% { transform: translateY(0px) translateX(0px); }
}

@keyframes floatParticles2 {
  0% { transform: translateY(0px) translateX(0px) rotate(0deg); }
  50% { transform: translateY(-15px) translateX(-10px) rotate(180deg); }
  100% { transform: translateY(0px) translateX(0px) rotate(360deg); }
}

@keyframes floatParticles3 {
  0% { transform: scale(1) translateY(0px); }
  33% { transform: scale(1.05) translateY(-8px); }
  66% { transform: scale(0.95) translateY(-12px); }
  100% { transform: scale(1) translateY(0px); }
}

/* ===== ヘッダー ===== */
.header {
  background: var(--gradient-primary);
  box-shadow: var(--shadow-primary);
  border-bottom: 2px solid var(--accent-color);
  position: relative;
  overflow: hidden;
  min-height: 80px;
}

/* ヘッダー背景アニメーション */
.header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at 30% 50%, 
    rgba(255, 215, 0, 0.15) 0%, 
    transparent 30%
  ),
  radial-gradient(
    circle at 70% 80%, 
    rgba(220, 20, 60, 0.1) 0%, 
    transparent 40%
  );
  animation: headerFlow 15s ease-in-out infinite;
  z-index: 1;
}

@keyframes headerFlow {
  0%, 100% { transform: rotate(0deg) scale(1); }
  33% { transform: rotate(120deg) scale(1.1); }
  66% { transform: rotate(240deg) scale(0.9); }
}

/* ヘッダーパーティクル効果 */
.header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, rgba(255, 215, 0, 0.8), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(255, 215, 0, 0.6), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(220, 20, 60, 0.8), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(220, 20, 60, 0.6), transparent),
    radial-gradient(2px 2px at 160px 30px, rgba(255, 215, 0, 0.7), transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: sparkle 8s linear infinite;
  z-index: 2;
}

@keyframes sparkle {
  0% { transform: translateY(0px); opacity: 1; }
  50% { transform: translateY(-10px); opacity: 0.7; }
  100% { transform: translateY(0px); opacity: 1; }
}

.header-container {
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 3;
}

.site-name-text {
  color: var(--text-primary);
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 4;
  animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  0% { 
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5),
                 0 0 10px rgba(255, 215, 0, 0.3);
  }
  100% { 
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5),
                 0 0 20px rgba(255, 215, 0, 0.6),
                 0 0 30px rgba(220, 20, 60, 0.3);
  }
}

/* ===== ナビゲーション ===== */
.navi {
  background: var(--background-secondary);
  border-bottom: 1px solid var(--border-color);
}

.navi-in a {
  color: var(--text-secondary);
  transition: all 0.3s ease;
  padding: 12px 20px;
  border-radius: 6px;
  margin: 0 4px;
}

.navi-in a:hover {
  background: var(--gradient-accent);
  color: var(--background-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

/* ===== メインコンテンツエリア ===== */
.main {
  background: var(--background-dark);
}

.content {
  background: var(--background-secondary);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
  overflow: hidden;
}

/* ===== 記事カード ===== */
.entry-card {
  background: var(--background-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.entry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-primary);
  border-color: var(--primary-color);
}

.entry-card-thumb {
  position: relative;
  overflow: hidden;
}

.entry-card-thumb::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.entry-card:hover .entry-card-thumb::after {
  opacity: 0.2;
}

.entry-card-content {
  padding: 20px;
}

.entry-card-title {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1.2em;
  line-height: 1.4;
  margin-bottom: 12px;
}

.entry-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.entry-card-title a:hover {
  color: var(--accent-color);
}

.entry-card-snippet {
  color: var(--text-secondary);
  font-size: 0.9em;
  line-height: 1.6;
}

/* ===== CTAボタン ===== */
.btn, .btn-wrap a, .affiliate-btn {
  background: var(--gradient-primary);
  color: var(--text-primary);
  border: none;
  border-radius: 8px;
  padding: 14px 28px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-primary);
  position: relative;
  overflow: hidden;
}

.btn::before, .btn-wrap a::before, .affiliate-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-accent);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn:hover::before, .btn-wrap a:hover::before, .affiliate-btn:hover::before {
  left: 0;
}

.btn:hover, .btn-wrap a:hover, .affiliate-btn:hover {
  color: var(--background-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

/* ===== 特別なCTAボタン（アフィリエイト用） ===== */
.premium-cta {
  background: var(--gradient-accent);
  color: var(--background-dark);
  font-size: 1.1em;
  padding: 18px 36px;
  border-radius: 12px;
  box-shadow: var(--shadow-accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.premium-cta:hover {
  animation: none;
  transform: scale(1.08);
}

/* ===== サイドバー ===== */
.sidebar {
  background: transparent;
}

.widget {
  background: var(--background-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.widget-title {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 1.1em;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary-color);
}

/* ===== フッター ===== */
.footer {
  background: var(--background-secondary);
  border-top: 2px solid var(--primary-color);
  color: var(--text-secondary);
  position: relative;
  overflow: hidden;
  padding-top: 20px;
  padding-bottom: 40px;
}

/* フッター背景アニメーション */
.footer::before {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(139, 0, 0, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(220, 20, 60, 0.06) 0%, transparent 60%);
  animation: footerFlow 25s ease-in-out infinite;
  z-index: 1;
}

@keyframes footerFlow {
  0%, 100% { 
    transform: rotate(0deg) scale(1);
    opacity: 0.6;
  }
  33% { 
    transform: rotate(120deg) scale(1.1);
    opacity: 0.8;
  }
  66% { 
    transform: rotate(240deg) scale(0.9);
    opacity: 0.4;
  }
}

/* フッターパーティクル効果 */
.footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(1px 1px at 15% 25%, rgba(255, 215, 0, 0.3), transparent),
    radial-gradient(1px 1px at 35% 75%, rgba(220, 20, 60, 0.2), transparent),
    radial-gradient(1px 1px at 65% 35%, rgba(255, 215, 0, 0.25), transparent),
    radial-gradient(1px 1px at 85% 85%, rgba(220, 20, 60, 0.3), transparent);
  background-size: 250px 250px, 300px 300px, 200px 200px, 350px 350px;
  animation: footerParticles 30s linear infinite;
  z-index: 2;
}

@keyframes footerParticles {
  0% { transform: translateY(0px) translateX(0px); }
  25% { transform: translateY(-15px) translateX(8px); }
  50% { transform: translateY(-8px) translateX(-12px); }
  75% { transform: translateY(-20px) translateX(5px); }
  100% { transform: translateY(0px) translateX(0px); }
}

/* フッターコンテンツ */
.footer-content {
  position: relative;
  z-index: 3;
}

/* フッターリンクのアニメーション */
.footer a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.footer a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-accent);
  transition: width 0.3s ease;
}

.footer a:hover {
  color: var(--accent-color);
  transform: translateY(-2px);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.footer a:hover::before {
  width: 100%;
}

/* フッターセクションのアニメーション */
.footer-section {
  animation: footerFadeIn 1s ease-out;
  animation-fill-mode: both;
}

.footer-section:nth-child(1) { animation-delay: 0.2s; }
.footer-section:nth-child(2) { animation-delay: 0.4s; }
.footer-section:nth-child(3) { animation-delay: 0.6s; }

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

/* フッターの波効果 */
.footer-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-accent);
  animation: waveFlow 4s ease-in-out infinite;
}

@keyframes waveFlow {
  0%, 100% { 
    transform: scaleX(1);
    opacity: 0.8;
  }
  50% { 
    transform: scaleX(1.1);
    opacity: 1;
  }
}

/* ===== 見出しスタイル ===== */
.article h1, .article h2, .article h3, .article h4, .article h5, .article h6 {
  color: var(--text-primary);
  font-weight: 700;
  margin: 24px 0 16px 0;
}

.article h2 {
  background: var(--gradient-primary);
  color: var(--text-primary);
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: var(--shadow-primary);
  position: relative;
}

.article h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 24px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--primary-color);
}

.article h3 {
  border-left: 4px solid var(--accent-color);
  padding-left: 16px;
  color: var(--accent-color);
}

/* ===== リンクスタイル ===== */
a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* ===== フォーム要素 ===== */
input, textarea, select {
  background: var(--background-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  border-radius: 6px;
  padding: 12px;
  transition: border-color 0.3s ease;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--accent-color);
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

/* ===== 特別なアフィリエイト要素 ===== */
.affiliate-banner {
  background: var(--gradient-primary);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  margin: 32px 0;
  box-shadow: var(--shadow-primary);
  position: relative;
  overflow: hidden;
}

.affiliate-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.affiliate-banner-content {
  position: relative;
  z-index: 1;
}

.affiliate-banner h3 {
  color: var(--accent-color);
  font-size: 1.4em;
  margin-bottom: 12px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.affiliate-banner p {
  color: var(--text-primary);
  margin-bottom: 20px;
  font-size: 1.1em;
}

/* ===== 緊急性を演出する要素 ===== */
.urgency-badge {
  background: var(--gradient-accent);
  color: var(--background-dark);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8em;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 8px;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0.7; }
}

/* ===== 評価・レビュー要素 ===== */
.rating-stars {
  color: var(--accent-color);
  font-size: 1.2em;
  margin: 8px 0;
}

.review-count {
  color: var(--text-secondary);
  font-size: 0.9em;
}

/* ===== プレミアム感のあるボーダー ===== */
.premium-border {
  border: 2px solid transparent;
  background: linear-gradient(var(--background-secondary), var(--background-secondary)) padding-box,
              var(--gradient-primary) border-box;
  border-radius: 12px;
}

/* ===== モバイル対応 ===== */
@media (max-width: 768px) {
  .entry-card {
    margin-bottom: 16px;
  }
  
  .entry-card-content {
    padding: 16px;
  }
  
  .affiliate-banner {
    padding: 20px 16px;
    margin: 24px 0;
  }
  
  .btn, .btn-wrap a, .affiliate-btn {
    padding: 12px 24px;
    font-size: 0.9em;
  }
  
  .premium-cta {
    padding: 16px 28px;
    font-size: 1em;
  }
}

/* ===== ダークモード強化 ===== */
.content-area {
  background: var(--background-dark);
}

.entry-content {
  background: var(--background-secondary);
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* ===== 特別なアニメーション効果 ===== */
.fade-in {
  animation: fadeIn 0.6s ease-out;
}

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

.slide-in {
  animation: slideIn 0.8s ease-out;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ===== 高級感のあるテキストエフェクト ===== */
.luxury-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* ===== カスタムスクロールバー ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--background-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gradient-accent);
}

/* ===== 特別なアフィリエイトセクション ===== */
.stripchat-promo {
  background: var(--background-secondary);
  border: 2px solid var(--primary-color);
  border-radius: 16px;
  padding: 32px;
  margin: 40px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stripchat-promo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
  animation: progressFlow 3s ease-in-out infinite;
}

@keyframes progressFlow {
  0%, 100% { transform: scaleX(1); }
  50% { transform: scaleX(1.1); }
}

/* セクシーな背景効果 */
.stripchat-promo::after {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: 
    radial-gradient(circle at 30% 70%, rgba(220, 20, 60, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
  animation: sexyFlow 12s ease-in-out infinite;
  z-index: 1;
}

@keyframes sexyFlow {
  0%, 100% { 
    transform: rotate(0deg) scale(1);
    opacity: 0.7;
  }
  25% { 
    transform: rotate(90deg) scale(1.2);
    opacity: 1;
  }
  50% { 
    transform: rotate(180deg) scale(0.8);
    opacity: 0.5;
  }
  75% { 
    transform: rotate(270deg) scale(1.1);
    opacity: 0.9;
  }
}

.stripchat-promo h3 {
  color: var(--accent-color);
  font-size: 1.6em;
  margin-bottom: 16px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
  animation: textPulse 2s ease-in-out infinite;
}

@keyframes textPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.stripchat-promo .bonus-amount {
  font-size: 2.2em;
  font-weight: 900;
  color: var(--accent-color);
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
  margin: 16px 0;
  position: relative;
  z-index: 2;
  animation: bonusGlow 2.5s ease-in-out infinite alternate;
}

@keyframes bonusGlow {
  0% { 
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7),
                 0 0 15px rgba(255, 215, 0, 0.4);
  }
  100% { 
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7),
                 0 0 25px rgba(255, 215, 0, 0.8),
                 0 0 35px rgba(220, 20, 60, 0.4);
  }
}

.stripchat-promo .cta-button {
  background: var(--gradient-accent);
  color: var(--background-dark);
  padding: 20px 40px;
  font-size: 1.2em;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-accent);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.stripchat-promo .cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.stripchat-promo .cta-button:hover::before {
  left: 100%;
}

.stripchat-promo .cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.4);
  animation: buttonPulse 0.6s ease-in-out;
}

@keyframes buttonPulse {
  0%, 100% { transform: scale(1.05); }
  50% { transform: scale(1.08); }
}

/* ===== 信頼性を高める要素 ===== */
.trust-indicators {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: var(--background-secondary);
  padding: 20px;
  border-radius: 12px;
  margin: 24px 0;
  border: 1px solid var(--border-color);
}

.trust-item {
  text-align: center;
  color: var(--text-secondary);
}

.trust-item .icon {
  font-size: 2em;
  color: var(--accent-color);
  margin-bottom: 8px;
}

.trust-item .label {
  font-size: 0.9em;
  font-weight: 600;
}

/* ===== レスポンシブ調整 ===== */
@media (max-width: 480px) {
  .stripchat-promo {
    padding: 24px 16px;
    margin: 24px 0;
  }
  
  .stripchat-promo .bonus-amount {
    font-size: 1.8em;
  }
  
  .stripchat-promo .cta-button {
    padding: 16px 32px;
    font-size: 1.1em;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
}


/* ===== 大人のライブチャット感を演出する特別効果 ===== */

/* ヘッダーにセクシーなパルス効果 */
.header-sexy-pulse {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, rgba(220, 20, 60, 0.2) 100%);
  animation: sexyPulse 3s ease-in-out infinite;
  z-index: 5;
}

@keyframes sexyPulse {
  0%, 100% { 
    transform: translateY(-50%) scale(1);
    opacity: 0.6;
  }
  50% { 
    transform: translateY(-50%) scale(1.3);
    opacity: 1;
  }
}

/* 記事カードにセクシーなホバー効果 */
.entry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(220, 20, 60, 0) 0%,
    rgba(220, 20, 60, 0.1) 50%,
    rgba(255, 215, 0, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.entry-card:hover::before {
  opacity: 1;
  animation: cardSexyGlow 1s ease-in-out;
}

@keyframes cardSexyGlow {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

/* ナビゲーションにセクシーなアンダーライン */
.navi-in a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-accent);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navi-in a:hover::after {
  width: 100%;
  animation: underlineGlow 0.8s ease-in-out;
}

@keyframes underlineGlow {
  0%, 100% { box-shadow: 0 0 5px rgba(255, 215, 0, 0.5); }
  50% { box-shadow: 0 0 15px rgba(255, 215, 0, 0.8); }
}

/* 背景に浮遊するハート効果 */
.floating-hearts {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.floating-hearts::before,
.floating-hearts::after {
  content: '♥';
  position: absolute;
  color: rgba(220, 20, 60, 0.1);
  font-size: 20px;
  animation: floatHeart 15s linear infinite;
}

.floating-hearts::before {
  left: 10%;
  animation-delay: -5s;
  animation-duration: 18s;
}

.floating-hearts::after {
  left: 80%;
  animation-delay: -10s;
  animation-duration: 22s;
  font-size: 16px;
}

@keyframes floatHeart {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

/* サイドバーウィジェットにセクシーな効果 */
.widget:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 0, 0, 0.2);
  animation: widgetSexyGlow 1s ease-in-out;
}

@keyframes widgetSexyGlow {
  0%, 100% { 
    border-color: var(--border-color);
  }
  50% { 
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
  }
}

/* 特別なライブチャット感演出 */
.live-indicator {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #ff4757;
  border-radius: 50%;
  margin-right: 8px;
  animation: livePulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(255, 71, 87, 0.5);
}

@keyframes livePulse {
  0%, 100% { 
    transform: scale(1);
    opacity: 1;
  }
  50% { 
    transform: scale(1.2);
    opacity: 0.7;
  }
}

/* セクシーなボタンホバー効果 */
.btn:hover, .btn-wrap a:hover, .affiliate-btn:hover {
  animation: sexyButtonHover 0.8s ease-in-out;
}

@keyframes sexyButtonHover {
  0%, 100% { transform: translateY(-2px) scale(1); }
  25% { transform: translateY(-4px) scale(1.02); }
  50% { transform: translateY(-2px) scale(1.01); }
  75% { transform: translateY(-3px) scale(1.02); }
}

/* 大人の雰囲気を演出するグラデーション効果 */
.adult-atmosphere {
  background: linear-gradient(
    135deg,
    rgba(139, 0, 0, 0.1) 0%,
    rgba(220, 20, 60, 0.05) 25%,
    rgba(255, 215, 0, 0.03) 50%,
    rgba(220, 20, 60, 0.05) 75%,
    rgba(139, 0, 0, 0.1) 100%
  );
  animation: atmosphereFlow 25s ease-in-out infinite;
}

@keyframes atmosphereFlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* マウスフォロー効果 */
.mouse-follow-effect {
  position: fixed;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.1) 0%,
    rgba(220, 20, 60, 0.05) 50%,
    transparent 100%
  );
  pointer-events: none;
  z-index: -1;
  transition: transform 0.1s ease-out;
  mix-blend-mode: screen;
}

/* レスポンシブ対応の追加 */
@media (max-width: 768px) {
  .header-sexy-pulse {
    width: 40px;
    height: 40px;
    right: 10px;
  }
  
  .floating-hearts::before,
  .floating-hearts::after {
    font-size: 14px;
  }
  
  .mouse-follow-effect {
    width: 100px;
    height: 100px;
  }
}

/* パフォーマンス最適化 */
@media (prefers-reduced-motion: reduce) {
  .header::before,
  .header::after,
  body::before,
  body::after,
  .stripchat-promo::after,
  .floating-hearts::before,
  .floating-hearts::after {
    animation: none;
  }
  
  .site-name-text,
  .stripchat-promo h3,
  .stripchat-promo .bonus-amount {
    animation: none;
  }
}


/* ===== カスタムTOPに戻るボタン ===== */
.custom-scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-primary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  overflow: hidden;
}

.custom-scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* TOPボタンの背景アニメーション */
.custom-scroll-to-top::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.2) 0%,
    transparent 70%
  );
  animation: topButtonPulse 3s ease-in-out infinite;
}

@keyframes topButtonPulse {
  0%, 100% { 
    transform: scale(1) rotate(0deg);
    opacity: 0.6;
  }
  50% { 
    transform: scale(1.2) rotate(180deg);
    opacity: 1;
  }
}

/* TOPボタンのアイコン */
.custom-scroll-to-top .icon {
  position: relative;
  z-index: 2;
  color: var(--text-primary);
  font-size: 24px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: iconFloat 2s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-3px); }
}

/* TOPボタンのホバー効果 */
.custom-scroll-to-top:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 
    var(--shadow-primary),
    0 0 20px rgba(255, 215, 0, 0.4);
  animation: topButtonHover 0.6s ease-in-out;
}

@keyframes topButtonHover {
  0%, 100% { transform: scale(1.1) translateY(-5px) rotate(0deg); }
  50% { transform: scale(1.15) translateY(-8px) rotate(5deg); }
}

/* TOPボタンのクリック効果 */
.custom-scroll-to-top:active {
  transform: scale(0.95);
  animation: topButtonClick 0.2s ease-out;
}

@keyframes topButtonClick {
  0% { transform: scale(0.95); }
  50% { transform: scale(0.9); }
  100% { transform: scale(0.95); }
}

/* TOPボタンの光る輪 */
.custom-scroll-to-top::after {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 50%;
  animation: topButtonRing 4s linear infinite;
  opacity: 0;
}

.custom-scroll-to-top:hover::after {
  opacity: 1;
}

@keyframes topButtonRing {
  0% { 
    transform: scale(1) rotate(0deg);
    border-color: rgba(255, 215, 0, 0.3);
  }
  50% { 
    transform: scale(1.1) rotate(180deg);
    border-color: rgba(220, 20, 60, 0.4);
  }
  100% { 
    transform: scale(1) rotate(360deg);
    border-color: rgba(255, 215, 0, 0.3);
  }
}

/* TOPボタンの進捗インジケーター */
.scroll-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(
    var(--accent-color) 0deg,
    var(--accent-color) var(--progress, 0deg),
    transparent var(--progress, 0deg)
  );
  opacity: 0.7;
  z-index: 1;
}

/* モバイル対応 */
@media (max-width: 768px) {
  .custom-scroll-to-top {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
  
  .custom-scroll-to-top .icon {
    font-size: 20px;
  }
}

/* TOPボタンのセクシーな効果 */
.custom-scroll-to-top.sexy-mode {
  background: var(--gradient-accent);
  animation: sexyTopButton 3s ease-in-out infinite;
}

@keyframes sexyTopButton {
  0%, 100% { 
    filter: hue-rotate(0deg) brightness(1);
  }
  33% { 
    filter: hue-rotate(30deg) brightness(1.1);
  }
  66% { 
    filter: hue-rotate(-30deg) brightness(0.9);
  }
}

/* TOPボタンのパーティクル効果 */
.top-button-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  border-radius: 50%;
  overflow: hidden;
}

.top-button-particles::before,
.top-button-particles::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 50%;
  animation: particleFloat 2s ease-in-out infinite;
}

.top-button-particles::before {
  top: 20%;
  left: 30%;
  animation-delay: 0s;
}

.top-button-particles::after {
  top: 60%;
  right: 25%;
  animation-delay: 1s;
}

@keyframes particleFloat {
  0%, 100% { 
    opacity: 0;
    transform: scale(0.5) translateY(0px);
  }
  50% { 
    opacity: 1;
    transform: scale(1) translateY(-10px);
  }
}

/* TOPボタンのテキスト表示 */
.custom-scroll-to-top .text {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: var(--accent-color);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.custom-scroll-to-top:hover .text {
  opacity: 1;
}

/* アクセシビリティ対応 */
@media (prefers-reduced-motion: reduce) {
  .custom-scroll-to-top::before,
  .custom-scroll-to-top::after,
  .custom-scroll-to-top .icon,
  .top-button-particles::before,
  .top-button-particles::after {
    animation: none;
  }
  
  .custom-scroll-to-top.sexy-mode {
    animation: none;
    filter: none;
  }
}


/* ===== Cocoonデフォルト要素の調整 ===== */

/* Cocoonのデフォルトページトップボタンを非表示 */
.page-top,
.go-to-top,
#page-top {
  display: none !important;
}

/* フッター強化時の追加スタイル */
.footer.enhanced-footer {
  min-height: 200px;
}

.footer.in-view .footer-section {
  animation: footerSectionGlow 2s ease-in-out infinite alternate;
}

@keyframes footerSectionGlow {
  0% { text-shadow: none; }
  100% { text-shadow: 0 0 10px rgba(255, 215, 0, 0.3); }
}

.footer-link-hover {
  animation: footerLinkPulse 0.5s ease-in-out;
}

@keyframes footerLinkPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ショートコード用の追加スタイル */
.sexy-header-effect {
  display: inline-flex;
  align-items: center;
  background: rgba(220, 20, 60, 0.2);
  padding: 8px 16px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  animation: sexyHeaderPulse 2s ease-in-out infinite;
}

.sexy-text {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 0.9em;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  margin-left: 8px;
}

@keyframes sexyHeaderPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.05); opacity: 1; }
}

.floating-elements-container {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.floating-element {
  position: absolute;
  color: rgba(255, 215, 0, 0.3);
  font-size: 24px;
  animation: floatUp linear infinite;
  pointer-events: none;
}

@keyframes floatUp {
  0% {
    transform: translateY(200px) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.7;
  }
  90% {
    opacity: 0.7;
  }
  100% {
    transform: translateY(-50px) rotate(360deg);
    opacity: 0;
  }
}

.live-chat-atmosphere {
  position: relative;
  height: 100px;
  margin: 20px 0;
  overflow: hidden;
  border-radius: 12px;
}

.atmosphere-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(139, 0, 0, 0.1) 0%,
    rgba(220, 20, 60, 0.15) 50%,
    rgba(255, 215, 0, 0.1) 100%
  );
  animation: atmosphereShift 8s ease-in-out infinite;
}

@keyframes atmosphereShift {
  0%, 100% { transform: translateX(0%); }
  50% { transform: translateX(10%); }
}

.pulse-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pulse-ring {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(255, 215, 0, 0.4);
  border-radius: 50%;
  animation: pulseRing 3s ease-out infinite;
}

.pulse-ring:nth-child(2) {
  animation-delay: 1s;
}

.pulse-ring:nth-child(3) {
  animation-delay: 2s;
}

@keyframes pulseRing {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}


/* ===== リッチな矢印デザイン ===== */

/* 矢印コンテナ */
.arrow-container {
  position: relative;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 矢印の縦線 */
.arrow-line {
  position: absolute;
  width: 3px;
  height: 16px;
  background: linear-gradient(
    to top,
    var(--accent-color) 0%,
    rgba(255, 215, 0, 0.8) 50%,
    var(--text-primary) 100%
  );
  border-radius: 2px;
  animation: arrowLinePulse 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

@keyframes arrowLinePulse {
  0%, 100% { 
    transform: scaleY(1);
    opacity: 0.8;
  }
  50% { 
    transform: scaleY(1.1);
    opacity: 1;
  }
}

/* 矢印の頭部分 */
.arrow-head {
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 8px;
}

/* 矢印の左側の先端 */
.arrow-tip-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
  transform: rotate(45deg);
  transform-origin: right bottom;
  animation: arrowTipLeft 2s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(255, 215, 0, 0.6);
}

@keyframes arrowTipLeft {
  0%, 100% { 
    transform: rotate(45deg) scale(1);
    opacity: 0.9;
  }
  50% { 
    transform: rotate(45deg) scale(1.1);
    opacity: 1;
  }
}

/* 矢印の右側の先端 */
.arrow-tip-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 8px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
  transform: rotate(-45deg);
  transform-origin: left bottom;
  animation: arrowTipRight 2s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(255, 215, 0, 0.6);
}

@keyframes arrowTipRight {
  0%, 100% { 
    transform: rotate(-45deg) scale(1);
    opacity: 0.9;
  }
  50% { 
    transform: rotate(-45deg) scale(1.1);
    opacity: 1;
  }
}

/* 矢印の光る効果 */
.arrow-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.3) 0%,
    rgba(220, 20, 60, 0.2) 50%,
    transparent 100%
  );
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: arrowGlow 3s ease-in-out infinite;
  z-index: -1;
}

@keyframes arrowGlow {
  0%, 100% { 
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% { 
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.8;
  }
}

/* ホバー時の矢印効果 */
.custom-scroll-to-top:hover .arrow-line {
  animation: arrowLineHover 0.8s ease-in-out infinite;
}

@keyframes arrowLineHover {
  0%, 100% { transform: scaleY(1) translateY(0px); }
  25% { transform: scaleY(1.2) translateY(-2px); }
  50% { transform: scaleY(1.1) translateY(-1px); }
  75% { transform: scaleY(1.15) translateY(-3px); }
}

.custom-scroll-to-top:hover .arrow-tip-left,
.custom-scroll-to-top:hover .arrow-tip-right {
  animation-duration: 0.6s;
}

.custom-scroll-to-top:hover .arrow-glow {
  animation: arrowGlowHover 1s ease-in-out infinite;
}

@keyframes arrowGlowHover {
  0%, 100% { 
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
  50% { 
    transform: translate(-50%, -50%) scale(1.6);
    opacity: 1;
  }
}

/* セクシーモード時の矢印効果 */
.custom-scroll-to-top.sexy-mode .arrow-line {
  background: linear-gradient(
    to top,
    rgba(220, 20, 60, 1) 0%,
    rgba(255, 215, 0, 0.9) 50%,
    rgba(255, 255, 255, 0.8) 100%
  );
  animation: arrowLineSexy 1.5s ease-in-out infinite;
}

@keyframes arrowLineSexy {
  0%, 100% { 
    transform: scaleY(1);
    filter: hue-rotate(0deg);
  }
  50% { 
    transform: scaleY(1.2);
    filter: hue-rotate(30deg);
  }
}

.custom-scroll-to-top.sexy-mode .arrow-tip-left,
.custom-scroll-to-top.sexy-mode .arrow-tip-right {
  background: linear-gradient(45deg, rgba(220, 20, 60, 1), rgba(255, 215, 0, 1));
  animation-duration: 1s;
}

.custom-scroll-to-top.sexy-mode .arrow-glow {
  background: radial-gradient(
    circle,
    rgba(220, 20, 60, 0.4) 0%,
    rgba(255, 215, 0, 0.3) 50%,
    transparent 100%
  );
  animation: arrowGlowSexy 2s ease-in-out infinite;
}

@keyframes arrowGlowSexy {
  0%, 100% { 
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
    filter: hue-rotate(0deg);
  }
  33% { 
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 1;
    filter: hue-rotate(60deg);
  }
  66% { 
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
    filter: hue-rotate(-30deg);
  }
}

/* クリック時の矢印効果 */
.custom-scroll-to-top:active .arrow-container {
  animation: arrowClick 0.3s ease-out;
}

@keyframes arrowClick {
  0% { transform: scale(1) translateY(0px); }
  50% { transform: scale(0.9) translateY(-5px); }
  100% { transform: scale(1) translateY(0px); }
}

/* モバイル対応 */
@media (max-width: 768px) {
  .arrow-container {
    width: 20px;
    height: 20px;
  }
  
  .arrow-line {
    width: 2px;
    height: 12px;
  }
  
  .arrow-head {
    width: 10px;
    height: 6px;
  }
  
  .arrow-tip-left,
  .arrow-tip-right {
    width: 6px;
    height: 2px;
  }
  
  .arrow-glow {
    width: 24px;
    height: 24px;
  }
}

/* アクセシビリティ対応 */
@media (prefers-reduced-motion: reduce) {
  .arrow-line,
  .arrow-tip-left,
  .arrow-tip-right,
  .arrow-glow {
    animation: none;
  }
  
  .custom-scroll-to-top.sexy-mode .arrow-line,
  .custom-scroll-to-top.sexy-mode .arrow-tip-left,
  .custom-scroll-to-top.sexy-mode .arrow-tip-right,
  .custom-scroll-to-top.sexy-mode .arrow-glow {
    animation: none;
    filter: none;
  }
}

