/* =========================================
   モダン・カッコいいサイトデザイン
   ========================================= */

/* Google Fonts - 読みやすいフォント */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Poppins:wght@400;600;700;800;900&family=Inter:wght@400;600;700;800&family=Oswald:wght@400;600;700&family=Raleway:wght@700;800;900&family=Roboto:wght@700;900&display=swap');

:root {
  /* 新しいカラーパレット */
  --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --dark-gradient: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  --accent-color: #667eea;
  --accent-hover: #5568d3;
  --text-primary: #1a202c;
  --text-secondary: #4a5568;
  --text-light: #718096;
}

/* =========================================
   フォントシステムの刷新
   ========================================= */

body {
  font-family: 'Noto Sans JP', 'Inter', sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em;
  background: linear-gradient(to bottom, #f7fafc 0%, #edf2f7 100%);
  color: #1a202c !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 'Noto Sans JP', sans-serif !important;
  font-weight: 900 !important;
  letter-spacing: -0.02em;
  color: #0a0e1a !important;
  text-shadow:
    2px 2px 4px rgba(0, 0, 0, 0.3),
    -1px -1px 2px rgba(255, 255, 255, 0.8) !important;
}

h1 {
  font-size: 3.5rem !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
}

h2 {
  font-size: 2.5rem !important;
  font-weight: 900 !important;
  line-height: 1.3 !important;
}

h3 {
  font-size: 2rem !important;
  font-weight: 800 !important;
}

h4 {
  font-size: 1.5rem !important;
  font-weight: 800 !important;
}

/* 強調テキスト */
strong, b {
  font-weight: 900 !important;
  color: #0a0e1a !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2) !important;
}

em {
  font-style: italic;
  color: var(--accent-color);
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* 全ての段落テキストの視認性向上 */
p {
  font-weight: 600 !important;
  color: #2d3748 !important;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8) !important;
}

/* リストアイテムの視認性向上 */
li {
  font-weight: 600 !important;
  color: #2d3748 !important;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8) !important;
}

/* =========================================
   全ページ用 キーワード強調スタイル
   ========================================= */

/* 赤文字グラデーション強調 - アニメーション付き */
.highlight-keyword,
.text-highlight,
.keyword-red {
  font-family: 'Montserrat', 'Noto Sans JP', sans-serif !important;
  font-size: 1.2em !important;
  font-weight: 900 !important;
  color: #ff3b3b !important;
  background: linear-gradient(135deg, #ff3b3b 0%, #ff6b6b 50%, #ffeb3b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: underline;
  text-decoration-color: #ff3b3b;
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
  filter: drop-shadow(0 0 15px rgba(255, 59, 59, 0.8))
          drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.6));
  animation: keywordGlow 2s ease-in-out infinite;
  display: inline-block;
  padding: 0 6px;
  position: relative;
}

@keyframes keywordGlow {
  0%, 100% {
    filter: drop-shadow(0 0 15px rgba(255, 59, 59, 0.8))
            drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.6));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 30px rgba(255, 59, 59, 1))
            drop-shadow(0 0 15px rgba(255, 235, 59, 0.8))
            drop-shadow(3px 3px 8px rgba(0, 0, 0, 0.8));
    transform: scale(1.05);
  }
}

/* 大きく目立つ強調 */
.text-large,
.text-big {
  font-size: 1.4em !important;
  font-weight: 900 !important;
  color: #0a0e1a !important;
  text-shadow:
    2px 2px 6px rgba(0, 0, 0, 0.4),
    0 0 15px rgba(102, 126, 234, 0.5) !important;
  display: inline-block;
  animation: textPulse 2.5s ease-in-out infinite;
}

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

/* 下線強調 - グラデーション下線 */
.text-underline,
.underline-gradient {
  position: relative;
  font-weight: 800 !important;
  color: #0a0e1a !important;
  padding-bottom: 6px;
  display: inline-block;
}

.text-underline::after,
.underline-gradient::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  border-radius: 2px;
  animation: underlineShine 3s ease-in-out infinite;
}

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

/* 数字強調 - 特大＆グラデーション */
.number-highlight,
.stat-number-inline {
  font-family: 'Oswald', 'Roboto', sans-serif !important;
  font-size: 1.8em !important;
  font-weight: 900 !important;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3))
          drop-shadow(0 0 20px rgba(102, 126, 234, 0.6));
  display: inline-block;
  padding: 0 8px;
  animation: numberBounce 2s ease-in-out infinite;
}

@keyframes numberBounce {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-3px) scale(1.1);
  }
}

/* 重要マーカー風 */
.text-important,
.mark-yellow {
  background: linear-gradient(180deg, transparent 60%, #ffeb3b 60%, #ffeb3b 95%, transparent 95%);
  font-weight: 800 !important;
  color: #0a0e1a !important;
  padding: 2px 8px;
  display: inline-block;
  position: relative;
  animation: markerGlow 2.5s ease-in-out infinite;
}

@keyframes markerGlow {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.15) drop-shadow(0 0 10px rgba(255, 235, 59, 0.6));
  }
}

/* バッジ風強調 */
.badge-highlight {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
  color: #ffffff !important;
  font-weight: 900 !important;
  font-size: 0.95em !important;
  padding: 6px 16px;
  border-radius: 20px;
  text-shadow:
    2px 2px 4px rgba(0, 0, 0, 0.6),
    0 0 10px rgba(0, 0, 0, 0.4);
  box-shadow:
    0 4px 15px rgba(238, 90, 111, 0.5),
    inset 0 1px 3px rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow:
      0 4px 15px rgba(238, 90, 111, 0.5),
      inset 0 1px 3px rgba(255, 255, 255, 0.3);
  }
  50% {
    transform: scale(1.08);
    box-shadow:
      0 6px 25px rgba(238, 90, 111, 0.8),
      inset 0 1px 4px rgba(255, 255, 255, 0.4);
  }
}

/* =========================================
   ページヘッダー（タイトル部分）を非表示
   ========================================= */

.intro-header {
  display: none !important;
}

.header-section {
  display: none !important;
}

/* =========================================
   超モダンな企業サイト風ナビゲーションバー
   ========================================= */

.navbar-custom {
  background: linear-gradient(135deg, #1a1f35 0%, #2d3561 100%) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: none !important;
  border-bottom: 3px solid #667eea !important;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3) !important;
  padding: 1.2rem 0 !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative;
}

.navbar-custom::before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #667eea);
  background-size: 200% auto;
  animation: gradientMove 4s linear infinite;
}

.navbar-custom:hover {
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.4) !important;
}

/* アバターを完全に非表示 */
.avatar-container {
  display: none !important;
}

.navbar-brand {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 900 !important;
  font-size: 2rem !important;
  color: #ffffff !important;
  letter-spacing: -0.02em;
  transition: all 0.3s ease !important;
  text-shadow:
    2px 2px 6px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(102, 126, 234, 0.5) !important;
  padding: 0.5rem 1.5rem !important;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2)) !important;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3)) !important;
  color: #ffd700 !important;
  text-shadow:
    2px 2px 8px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(255, 215, 0, 0.6) !important;
}

/* ナビゲーションリンク */
.navbar-custom .navbar-nav .nav-link {
  font-family: 'Poppins', 'Noto Sans JP', sans-serif !important;
  font-weight: 800 !important;
  font-size: 1.05rem !important;
  color: #ffffff !important;
  padding: 0.75rem 1.5rem !important;
  margin: 0 0.25rem !important;
  border-radius: 10px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative;
  overflow: hidden;
  text-shadow:
    1px 1px 3px rgba(0, 0, 0, 0.5),
    0 0 10px rgba(102, 126, 234, 0.3) !important;
  border: 1px solid transparent;
}

.navbar-custom .navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
  border-radius: 10px;
}

.navbar-custom .navbar-nav .nav-link:hover {
  color: #ffd700 !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
  border: 1px solid rgba(255, 215, 0, 0.3);
  text-shadow:
    2px 2px 6px rgba(0, 0, 0, 0.7),
    0 0 20px rgba(255, 215, 0, 0.5) !important;
}

.navbar-custom .navbar-nav .nav-link:hover::before {
  left: 0;
}

/* アクティブリンク */
.navbar-custom .navbar-nav .nav-link.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-shadow:
    2px 2px 6px rgba(0, 0, 0, 0.7),
    0 0 20px rgba(102, 126, 234, 0.5) !important;
}

/* ドロップダウンメニュー */
.dropdown-menu {
  background: linear-gradient(135deg, #2d3561 0%, #1a1f35 100%) !important;
  backdrop-filter: blur(20px) !important;
  border: 2px solid rgba(102, 126, 234, 0.3) !important;
  border-radius: 12px !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5) !important;
  padding: 1rem !important;
  margin-top: 0.5rem !important;
}

.dropdown-item {
  font-family: 'Poppins', 'Noto Sans JP', sans-serif !important;
  font-weight: 700 !important;
  padding: 0.75rem 1.25rem !important;
  border-radius: 8px !important;
  transition: all 0.2s ease !important;
  color: #ffffff !important;
  text-shadow:
    1px 1px 3px rgba(0, 0, 0, 0.5),
    0 0 10px rgba(102, 126, 234, 0.3) !important;
  border: 1px solid transparent;
}

.dropdown-item:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  color: #ffd700 !important;
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
  border: 1px solid rgba(255, 215, 0, 0.3);
  text-shadow:
    2px 2px 6px rgba(0, 0, 0, 0.7),
    0 0 15px rgba(255, 215, 0, 0.5) !important;
}

/* トグラーボタン（モバイル用） */
.navbar-toggler {
  border: 2px solid rgba(255, 255, 255, 0.5) !important;
  background: rgba(102, 126, 234, 0.3) !important;
  padding: 0.5rem 0.75rem !important;
  border-radius: 8px !important;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.5) !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* =========================================
   モダンなフッター
   ========================================= */

footer {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%) !important;
  color: white !important;
  padding: 3rem 0 !important;
  margin-top: 5rem !important;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #f5576c, #4facfe);
  background-size: 200% auto;
  animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

footer p, footer a, footer span {
  color: #ffffff !important;
  font-weight: 700 !important;
  text-shadow:
    2px 2px 4px rgba(0, 0, 0, 0.5),
    0 0 10px rgba(0, 0, 0, 0.3) !important;
}

footer a:hover {
  color: #ffd700 !important;
  text-decoration: underline;
  text-shadow:
    2px 2px 6px rgba(0, 0, 0, 0.6),
    0 0 15px rgba(255, 215, 0, 0.5) !important;
}

/* =========================================
   ボタンスタイル
   ========================================= */

.btn {
  font-family: 'Poppins', 'Noto Sans JP', sans-serif !important;
  font-weight: 900 !important;
  border-radius: 12px !important;
  padding: 1rem 2.5rem !important;
  font-size: 1.15rem !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  border: 3px solid rgba(0, 0, 0, 0.3) !important;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
  color: #ffffff !important;
  text-shadow:
    2px 2px 6px rgba(0, 0, 0, 0.8),
    0 0 15px rgba(0, 0, 0, 0.5) !important;
}

.btn-primary {
  background: var(--primary-gradient) !important;
  box-shadow:
    0 10px 30px rgba(102, 126, 234, 0.5),
    inset 0 1px 3px rgba(255, 255, 255, 0.3) !important;
  border-color: rgba(102, 126, 234, 0.5) !important;
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.05) !important;
  box-shadow:
    0 20px 50px rgba(102, 126, 234, 0.7),
    inset 0 1px 3px rgba(255, 255, 255, 0.4) !important;
  border-color: #ffd700 !important;
  text-shadow:
    3px 3px 10px rgba(0, 0, 0, 1),
    0 0 25px rgba(255, 215, 0, 0.8) !important;
}

.btn-secondary {
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%) !important;
  color: #667eea !important;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.3),
    inset 0 1px 3px rgba(255, 255, 255, 0.5) !important;
  border: 3px solid #667eea !important;
  text-shadow:
    1px 1px 3px rgba(0, 0, 0, 0.3),
    0 0 10px rgba(102, 126, 234, 0.3) !important;
}

.btn-secondary:hover {
  transform: translateY(-5px) scale(1.05) !important;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  color: #ffffff !important;
  box-shadow:
    0 20px 50px rgba(102, 126, 234, 0.7),
    inset 0 1px 3px rgba(255, 255, 255, 0.3) !important;
  border-color: #ffd700 !important;
  text-shadow:
    3px 3px 10px rgba(0, 0, 0, 1),
    0 0 25px rgba(255, 255, 255, 0.5) !important;
}

.btn-success {
  background: var(--success-gradient) !important;
  box-shadow:
    0 10px 30px rgba(79, 172, 254, 0.5),
    inset 0 1px 3px rgba(255, 255, 255, 0.3) !important;
  border-color: rgba(79, 172, 254, 0.5) !important;
}

.btn-success:hover {
  transform: translateY(-5px) scale(1.05) !important;
  box-shadow:
    0 20px 50px rgba(79, 172, 254, 0.7),
    inset 0 1px 3px rgba(255, 255, 255, 0.4) !important;
  border-color: #ffd700 !important;
}

/* =========================================
   カードスタイル
   ========================================= */

.card, .product-card {
  border: 3px solid rgba(102, 126, 234, 0.3) !important;
  border-radius: 20px !important;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.15),
    inset 0 1px 3px rgba(255, 255, 255, 0.5) !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  overflow: hidden;
  background: white !important;
}

.card:hover, .product-card:hover {
  transform: translateY(-10px) !important;
  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.25),
    inset 0 1px 3px rgba(255, 255, 255, 0.6) !important;
  border-color: rgba(102, 126, 234, 0.6) !important;
}

.card-header {
  background: var(--primary-gradient) !important;
  color: #ffffff !important;
  font-weight: 900 !important;
  font-size: 1.4rem !important;
  border: none !important;
  padding: 1.5rem !important;
  text-shadow:
    2px 2px 6px rgba(0, 0, 0, 0.6),
    0 0 15px rgba(0, 0, 0, 0.4) !important;
}

/* =========================================
   背景パターン
   ========================================= */

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(118, 75, 162, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(79, 172, 254, 0.05) 0%, transparent 50%);
  z-index: -1;
  pointer-events: none;
}

/* =========================================
   アニメーション効果
   ========================================= */

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

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* =========================================
   レスポンシブ対応
   ========================================= */

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem !important;
  }

  h2 {
    font-size: 2rem !important;
  }

  .navbar-custom .navbar-nav .nav-link {
    padding: 0.75rem 1rem !important;
    margin: 0.25rem 0 !important;
  }

  .btn {
    padding: 0.85rem 2rem !important;
    font-size: 1rem !important;
  }
}

/* =========================================
   リンクスタイル
   ========================================= */

a {
  color: #667eea !important;
  font-weight: 800 !important;
  text-decoration: underline !important;
  text-decoration-thickness: 2px !important;
  transition: all 0.2s ease !important;
  text-shadow:
    1px 1px 2px rgba(255, 255, 255, 0.8),
    0 0 8px rgba(102, 126, 234, 0.3) !important;
  text-underline-offset: 3px !important;
}

a:hover {
  color: #764ba2 !important;
  text-decoration: underline !important;
  text-decoration-thickness: 3px !important;
  text-shadow:
    2px 2px 4px rgba(0, 0, 0, 0.3),
    0 0 15px rgba(118, 75, 162, 0.5) !important;
  transform: translateY(-1px);
}

/* =========================================
   テーブルスタイル
   ========================================= */

table {
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.15),
    inset 0 1px 3px rgba(255, 255, 255, 0.3);
  border: 3px solid rgba(102, 126, 234, 0.3);
}

th {
  background: var(--primary-gradient) !important;
  color: #ffffff !important;
  font-weight: 900 !important;
  padding: 1.2rem !important;
  font-family: 'Poppins', sans-serif !important;
  text-shadow:
    2px 2px 6px rgba(0, 0, 0, 0.6),
    0 0 15px rgba(0, 0, 0, 0.4) !important;
}

td {
  padding: 1rem !important;
  font-weight: 700 !important;
  color: #2d3748 !important;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8) !important;
}

tr:nth-child(even) {
  background-color: rgba(102, 126, 234, 0.08);
}

tr:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.95);
}

/* =========================================
   コードブロック
   ========================================= */

code {
  background: linear-gradient(135deg, #667eea25, #764ba225) !important;
  color: #667eea !important;
  padding: 0.3rem 0.6rem !important;
  border-radius: 6px !important;
  font-weight: 800 !important;
  border: 2px solid rgba(102, 126, 234, 0.3) !important;
  text-shadow:
    1px 1px 2px rgba(255, 255, 255, 0.8),
    0 0 5px rgba(102, 126, 234, 0.3) !important;
}

pre {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%) !important;
  border-radius: 12px !important;
  padding: 1.5rem !important;
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.4),
    inset 0 2px 5px rgba(0, 0, 0, 0.3) !important;
  border: 3px solid rgba(102, 126, 234, 0.4) !important;
}

pre code {
  background: transparent !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  border: none !important;
  text-shadow:
    1px 1px 3px rgba(0, 0, 0, 0.8),
    0 0 10px rgba(168, 218, 220, 0.5) !important;
}
