/* style.css */

/* フォント設定 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;900&family=Poppins:wght@300;400;600;700;800&display=swap');

:root {
    /* 基本カラーパレット - より大胆な色使い */
    --primary-color: #58b3e3;
    --secondary-color: #526c80;
    --background-color: #c7d3dc;
    --text-color: #333333;
    --card-bg-color: #ffffff;
    --btn-hover-bg: #87cdde;
    --footer-bg: #8ab3d1;
    --border-color: #dee2e6;
    --shadow-color: rgba(0, 0, 0, 0.2);
    --transition-speed: 0.3s;
    
    /* Z世代向けデザイン要素 */
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.18);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    --glassmorphism-blur: 8px;
    --neon-glow: 0 0 10px rgba(88, 179, 227, 0.8), 0 0 20px rgba(88, 179, 227, 0.6), 0 0 30px rgba(88, 179, 227, 0.4);
    --card-hover-transform: translateY(-8px);
    --btn-click-scale: 0.95;
    
    /* フォント設定 */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --heading-weight: 700;
}

/* ダークモード用の変数 - コントラスト改善 */
.dark-mode {
    --primary-color: #58b9e6;
    --secondary-color: #c8e1f0;
    --background-color: #121a24;
    --text-color: #f8f9fa;
    --card-bg-color: #1e2a38;
    --btn-hover-bg: #3498db;
    --footer-bg: #0b1016;
    --border-color: #345676;
    --shadow-color: rgba(0, 0, 0, 0.5);
    --glass-bg: rgba(30, 42, 56, 0.6);
    --glass-border: rgba(255, 255, 255, 0.15);
    --neon-glow: 0 0 10px rgba(88, 185, 230, 0.8), 0 0 20px rgba(88, 185, 230, 0.6), 0 0 30px rgba(88, 185, 230, 0.4);
}

/* ハイコントラストモード用の変数 - アクセシビリティ基準に合わせて調整 */
.high-contrast {
    --primary-color: #ffdd00;
    --secondary-color: #ffffff;
    --background-color: #000000;
    --text-color: #ffffff;
    --card-bg-color: #121212;
    --btn-hover-bg: #ffa500;
    --footer-bg: #0a0a0a;
    --border-color: #ffffff;
    --shadow-color: rgba(255, 255, 255, 0.5);
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.6);
    --neon-glow: 0 0 10px rgba(255, 221, 0, 0.8), 0 0 20px rgba(255, 221, 0, 0.6), 0 0 30px rgba(255, 221, 0, 0.4);
}

body {
    font-family: var(--font-body);
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    background-color: var(--background-color);
    color: var(--text-color);
    transition: background-color var(--transition-speed), color var(--transition-speed);
    overflow-x: hidden; /* スクロールアニメーション用 */
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    background-attachment: fixed;
}

main {
    flex: 1;
}

section {
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: var(--heading-weight);
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
    background: linear-gradient(90deg, var(--primary-color), #9C27B0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    left: 25%;
    bottom: -10px;
    width: 50%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), transparent);
    border-radius: 2px;
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

/* グラスモーフィズム効果のボタン */
.button-group button {
    flex: 1 0 calc(25% - 16px);
    max-width: calc(25% - 16px);
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(var(--glassmorphism-blur));
    -webkit-backdrop-filter: blur(var(--glassmorphism-blur));
    box-shadow: var(--glass-shadow);
    color: var(--text-color);
    position: relative;
    overflow: hidden;
}

/* ホバー効果 */
.button-group button:hover {
    transform: var(--card-hover-transform);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* クリック効果 */
.button-group button:active {
    transform: scale(var(--btn-click-scale));
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* ボタンリップルエフェクト */
.button-group button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: scale(0) translate(-50%, -50%);
    transform-origin: top left;
    opacity: 0;
}
footer {
    background-color: var(--footer-bg);
    padding: 20px;
    text-align: center;
    font-size: 14px;
    border-top: 1px solid var(--border-color);
    transition: background-color var(--transition-speed);
}

input {
    padding: 10px;
    font-size: 16px;
    width: 300px;
    margin-bottom: 20px;
    background-color: var(--card-bg-color);
    color: var(--text-color);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    transition: all var(--transition-speed);
}

input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(88, 179, 227, 0.25);
}

.navbar {
    background-color: var(--card-bg-color) !important;
    box-shadow: 0 2px 10px var(--shadow-color);
    transition: background-color var(--transition-speed);
    margin-bottom: 0 !important;
}

.navbar-brand {
    color: var(--text-color) !important;
    font-weight: bold;
    transition: color var(--transition-speed);
}

.nav-tabs {
    border-bottom: 1px solid var(--border-color);
    transition: border-color var(--transition-speed);
}

.nav-tabs .nav-link {
    color: var(--text-color);
    transition: color var(--transition-speed), background-color var(--transition-speed);
}

.nav-tabs .nav-link.active {
    color: var(--primary-color);
    background-color: var(--card-bg-color);
    border-color: var(--border-color) var(--border-color) var(--card-bg-color);
    border-bottom: 2px solid var(--primary-color);
}

.nav-tabs .nav-link:hover:not(.active) {
    border-color: transparent;
    background-color: rgba(88, 179, 227, 0.1);
}
.update-history {
    margin-top: 20px;
    text-align: left;
    display: inline-block;
}
.update-history h3 {
    font-size: 18px;
    margin-bottom: 10px;
}
.update-history ul {
    list-style-type: none;
    padding: 0;
}
.update-history li {
    margin-bottom: 5px;
}
.share-button {
    display: inline-block;
    background-color: #58b3e3;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: background-color 0.3s;
}
.share-button:hover {
    background-color: #0c87b8;
}

/* タブスタイル */
.tab {
  overflow: hidden;
  border: 1px solid var(--border-color);
  background-color: var(--card-bg-color);
  border-radius: 5px 5px 0 0;
  transition: all var(--transition-speed);
}

/* タブボタンスタイル */
.tab button {
  background-color: inherit;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: all var(--transition-speed);
  color: var(--text-color);
}

/* マウスオーバー時のスタイル */
.tab button:hover {
  background-color: rgba(88, 179, 227, 0.1);
}

/* アクティブなタブボタンスタイル */
.tab button.active {
  background-color: var(--primary-color);
  color: white;
}

/* タブコンテンツスタイル */
.tabcontent {
  padding: 15px 20px;
  border: 1px solid var(--border-color);
  border-top: none;
  border-radius: 0 0 5px 5px;
  background-color: var(--card-bg-color);
  transition: all var(--transition-speed);
  margin-bottom: 20px;
  box-shadow: 0 2px 10px var(--shadow-color);
}

/* カードスタイル - Z世代向けにアップデート */
.card {
    background-color: var(--card-bg-color);
    border: none;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transform: translateZ(0); /* GPU高速化 */
    position: relative;
}

/* グラスモーフィズムカード */
.card.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glassmorphism-blur));
    -webkit-backdrop-filter: blur(var(--glassmorphism-blur));
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.card:hover {
    transform: var(--card-hover-transform);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.card-header {
    background-color: rgba(88, 179, 227, 0.1);
    border-bottom: 1px solid var(--border-color);
    font-weight: bold;
    color: var(--text-color);
    transition: all var(--transition-speed);
    padding: 1.25rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    position: relative;
}

.card-header::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), transparent);
}

.card-body {
    padding: 25px;
    font-size: 1.05rem;
    line-height: 1.6;
}




/* スマートフォン用のスタイル */
@media (max-width: 576px) {
    /* ここにスマートフォン用のスタイルを書く */
}

/* タブレット用のスタイル */
@media (min-width: 577px) and (max-width: 992px) {
    /* ここにタブレット用のスタイルを書く */
}

/* デスクトップ用のスタイル */
@media (min-width: 993px) {
    /* ここにデスクトップ用のスタイルを書く */
}

/* アクセシビリティ関連のスタイル */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* フォーカス表示の強化 */
a:focus, button:focus, input:focus, select:focus, textarea:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* スキップナビゲーション */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* ブランドタイトルのスタイル */
.brand-title {
    font-weight: bold;
    background: linear-gradient(45deg, #ff4081, #3f51b5, #2196f3, #00bcd4, #4caf50, #ffeb3b, #ff9800);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientText 5s ease infinite;
}

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

.animate-pulse {
    animation: pulse 2s infinite;
}

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

/* タイムラインのスタイル */
.timeline {
    position: relative;
    padding: 20px 0;
    list-style: none;
}

.timeline-item {
    position: relative;
    padding-left: 50px;
    margin-bottom: 30px;
}

.timeline-marker {
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--primary-color);
    box-shadow: 0 0 0 5px rgba(88, 179, 227, 0.2);
}

.timeline-content {
    background-color: var(--card-bg-color);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 3px 10px var(--shadow-color);
    transition: all var(--transition-speed);
}

.timeline-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.timeline:before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: var(--border-color);
}

/* アニメーション */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

.slide-in-up {
    animation: slideInUp 0.5s ease forwards;
}

/* アニメーションを無効化する設定（アクセシビリティ対応） */
@media (prefers-reduced-motion: reduce) {
    *, ::before, ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}






/* ボタンのパディング */
.btn {
    padding: 0.5rem 1.5rem; /* ボタンの上下のパディングを0.5remに、左右のパディングを1.5remに設定 */
}



.navbar {
    background-color: #2c3e50;
}

.navbar-brand {
    color: #2c3e50;
}

.btn-primary {
    background-color: #58b3e3;
    border-color: #58b3e3;
}

.btn-primary:hover {
    background-color: #87cdde;
    border-color: #87cdde;
}

.btn-outline-primary {
    color: var(--secondary-color);
    background-color: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(var(--glassmorphism-blur));
    -webkit-backdrop-filter: blur(var(--glassmorphism-blur));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--glass-shadow);
}

.btn-outline-primary:hover {
    color: white;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline-primary:active {
    transform: scale(var(--btn-click-scale));
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* ネオンボタン効果 */
.btn-neon {
    box-shadow: var(--neon-glow);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.btn-neon:hover {
    box-shadow: var(--neon-glow), 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* ボタンの影のスタイルの変更 */
.btn:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15), 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* ボタンにアイコンとテキストの間隔を調整 */
.btn i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(-3px) scale(1.2);
}

/* ボタンのフォーカススタイル - キーボードナビゲーション用 */
.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(88, 179, 227, 0.5), 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* ボタンのリップルエフェクト */
.btn-ripple {
    position: relative;
    overflow: hidden;
}

.btn-ripple::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px; /* より大きなリップル効果 */
    height: 300px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 0;
    border-radius: 100%;
    transform: scale(0) translate(-50%, -50%);
    transform-origin: 0 0;
}

.btn-ripple:active::after {
    animation: ripple 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    20% {
        transform: scale(25, 25);
        opacity: 0.3;
    }
    100% {
        opacity: 0;
        transform: scale(40, 40);
    }
}

/* Z世代向けの追加スタイル */

/* ヒーローセクションとブランドタイトル */
.brand-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    background: linear-gradient(90deg, #ff4081, #3f51b5, #2196f3, #00bcd4, #4caf50, #ffeb3b, #ff9800);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientText 5s ease infinite;
    letter-spacing: -0.03em;
}

/* タイトルの波アニメーション */
.title-wave {
    display: inline-block;
    position: relative;
    animation: floatText 3s ease-in-out infinite;
}

.wave-icon {
    animation: waveAnimation 2s ease-in-out infinite;
    display: inline-block;
    margin-left: 5px;
}

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

@keyframes waveAnimation {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-7px) rotate(5deg); }
}

/* フローティング要素アニメーション */
.floating-element {
    animation: float 6s ease-in-out infinite;
}

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

.floating-icon {
    animation: rotateFloat 8s linear infinite;
}

@keyframes rotateFloat {
    0% { transform: rotate(0deg) translateY(0); }
    25% { transform: rotate(10deg) translateY(-5px); }
    50% { transform: rotate(0deg) translateY(-10px); }
    75% { transform: rotate(-10deg) translateY(-5px); }
    100% { transform: rotate(0deg) translateY(0); }
}

/* タイトル装飾 */
.title-container {
    position: relative;
    display: inline-block;
    padding: 0 15px;
}

.title-decoration {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 4px;
}

/* レインボーフラッシュ効果 - ランダムテーマボタン用 */
.rainbow-flash {
    animation: rainbowFlash 1s ease-out;
}

@keyframes rainbowFlash {
    0% { box-shadow: 0 0 10px rgba(255, 0, 0, 0.8); }
    20% { box-shadow: 0 0 10px rgba(255, 165, 0, 0.8); }
    40% { box-shadow: 0 0 10px rgba(255, 255, 0, 0.8); }
    60% { box-shadow: 0 0 10px rgba(0, 128, 0, 0.8); }
    80% { box-shadow: 0 0 10px rgba(0, 0, 255, 0.8); }
    100% { box-shadow: 0 0 10px rgba(128, 0, 128, 0.8); }
}

/* タブスタイルの改良 */
.nav-tabs {
    border-bottom: none;
    position: relative;
    background: var(--glass-bg);
    border-radius: 16px;
    padding: 5px;
    backdrop-filter: blur(var(--glassmorphism-blur));
    -webkit-backdrop-filter: blur(var(--glassmorphism-blur));
    border: 1px solid var(--glass-border);
    margin-bottom: 30px;
    display: flex;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox用 */
}

.nav-tabs::-webkit-scrollbar {
    display: none; /* Chrome, Safari用 */
}

.nav-tabs .nav-link {
    color: var(--text-color);
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    margin: 0 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
}

.nav-tabs .nav-link:hover:not(.active) {
    background-color: rgba(88, 179, 227, 0.1);
    transform: translateY(-2px);
}

.nav-tabs .nav-link.active {
    color: white;
    background: linear-gradient(135deg, var(--primary-color), #4DB6AC);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.nav-tabs .nav-link i {
    margin-right: 8px;
    font-size: 1.1em;
    vertical-align: middle;
}

/* 装飾ドット */
.decoration-dots {
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, var(--primary-color) 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.5;
    z-index: -1;
    pointer-events: none;
}

.decoration-dots-top-right {
    top: -30px;
    right: -30px;
}

.decoration-dots-bottom-left {
    bottom: -30px;
    left: -30px;
}

/* スクロールアニメーション */
@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* インタラクション・タッチフィードバック */
.touch-feedback {
    position: relative;
    overflow: hidden;
}

.touch-feedback::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.2) 0%, transparent 80%);
    transform: scale(0);
    opacity: 0;
    transition: all 0.5s ease-out;
    pointer-events: none;
}

.touch-feedback:active::before {
    transform: scale(1.5);
    opacity: 1;
    transition: all 0s;
}

/* スクロールアニメーション初期化 */
document.addEventListener('DOMContentLoaded', function() {
    // スクロールアニメーションの初期化
    const observer = new IntersectionObserver((entries) => {
        entries.forEach(entry => {
            if (entry.isIntersecting) {
                entry.target.classList.add('visible');
            }
        });
    }, {
        threshold: 0.1
    });

    document.querySelectorAll('section').forEach(section => {
        observer.observe(section);
    });
});

/* レスポンシブ調整 */
@media (max-width: 768px) {
    .button-group button {
        flex: 1 0 calc(50% - 16px);
        max-width: calc(50% - 16px);
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .brand-title {
        font-size: 1.4rem;
    }
    
    .nav-tabs .nav-link {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .button-group button {
        flex: 1 0 100%;
        max-width: 100%;
    }
}

/* カテゴリセクションのスタイル */
.category-section {
    background: var(--glass-bg);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 30px;
    backdrop-filter: blur(var(--glassmorphism-blur));
    -webkit-backdrop-filter: blur(var(--glassmorphism-blur));
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: all 0.4s ease;
}

.category-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.category-section h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

.category-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), transparent);
    border-radius: 1.5px;
}
