body {
  background-color: #1f1f1f; /* ダークグレー・コンクリ風 */
  color: #ddd;
}


a {
  color: #ff9933; /* 力強いオレンジ */
}

a:hover {
  color: #ffd1a6; /* 柔らかめのオレンジで浮かせる */
}

/* タイマー表示 */
.countdown-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #ff6f00; /* 焦げオレンジ */
  color: white;
  padding: 2px 8px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: bold;
  z-index: 10;
}

/* 浮かぶ投稿ボタン */
.floating-post-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #d35400;
  color: white;
  padding: 12px 20px;
  font-size: 1.1rem;
  border: none;
  border-radius: 50px;
  box-shadow: 0 0 12px rgba(255, 111, 0, 0.6);
  z-index: 1000;
  transition: all 0.2s ease-in-out;
  animation: pulse 3s infinite;
}

.floating-post-btn:hover {
  background-color: #ff6f00;
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(255, 111, 0, 0.6);
  cursor: pointer;
}

/* 投稿確定ボタン */
.post-modal-submit:hover {
  background-color: #ff6f00;
  box-shadow: 0 0 8px rgba(255, 111, 0, 0.5);
  cursor: pointer;
}

/* リンクボタン（トップなど） */
.imamise-link-btn {
  display: inline-block;
  background-color: #1a1a1a;
  color: #ffcc99;
  border: 2px solid #ff9933;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 153, 51, 0.3);
}

.imamise-link-btn:hover {
  background-color: #ff9933;
  color: #000;
  box-shadow: 0 0 15px rgba(255, 153, 51, 0.7);
  transform: scale(1.08);
}

@keyframes pulse {
  0%   { transform: scale(1);    box-shadow: 0 0 0 0 rgba(255, 111, 0, 0.4); }
  70%  { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255, 111, 0, 0); }
  100% { transform: scale(1);    box-shadow: 0 0 0 0 rgba(255, 111, 0, 0); }
}

.card {
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3); /* 若干強調 */
}

.post-card {
  background-color: #1a0f0a; /* より深いダークブラウン */
  color: #ffe6cc; /* やや黄味がかったライトカラー */
  padding: 10px;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 8px rgba(255, 111, 0, 0.2); /* 炎系オレンジ */
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 12px rgba(255, 111, 0, 0.4); /* ホバーで発光 */
  cursor: pointer;
}

.text-danger {
  color: #ff4d4d !important; 
}

.wild-title {
  font-size: 2.2rem; /* 少し小さめ */
  font-weight: bold;
  color: #ffd1d1;
  letter-spacing: 1.5px;
  text-shadow: 0 0 8px rgba(255, 77, 77, 0.5);
  text-align: center;
  white-space: nowrap;
}

.wild-emphasis {
  color: #fff;
  background-color: #ff1a1a;
  padding: 3px 10px;
  border-radius: 6px;
  margin-left: 5px;
  display: inline-block;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
}

/* スマホ対応: 画面が480px以下ならさらに小さく */
@media (max-width: 480px) {
  .wild-title {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }

  .wild-emphasis {
    font-size: 1.1rem;
    padding: 2px 8px;
  }
}

.reload-float-btn {
  background-color: #ff6f00;
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  border: none;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.reload-float-btn:hover {
  background-color: #ff6f00; 
  transform: scale(1.1);
  cursor: pointer;
}

.reaction-btn {
  background-color: transparent;
  border: 1px solid #b22222;
  color: #ff6666;
  transition: all 0.2s ease-in-out;
  pointer-events: auto;
  z-index: 100;
}

/* hover時は強い赤系に変化 */
.reaction-btn:hover {
  background-color: #b22222;
  color: #fff;
  box-shadow: 0 0 8px #b22222;
  border: 1px solid #b22222;
}

.reaction-btn:disabled:hover {
  background-color: transparent;
  color: #ff6666;
  box-shadow: none;
}

.reaction-btn.reacted {
  background-color: #8b0000;
  color: #fff;
  border-color: #ff6666;
}

.post-modal-submit {
  background-color: #d35400;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  padding: 8px 20px;
  font-size: 1rem;
  transition: background-color 0.2s ease-in-out, box-shadow 0.2s;
}

.tip-box {
  background-color: #2a2a2a;
  border-left: 6px solid #e67e22;
  padding: 1em 1.5em;
  margin: 2em auto;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #ffc;
  box-shadow: 0 0 10px rgba(230, 126, 34, 0.2);
  max-width: 720px;
  width: calc(100% - 32px); /* 両端16pxずつの余白を確保 */
}


.tip-box strong {
  color: #ffdd88;
}
