.section-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 12px;

    position: sticky;
    top: 0; /* 画面の上端から何pxの位置で固定するか（ヘッダーメニューがある場合はその高さを指定 例: top: 60px;） */
    z-index: 10; /* 下の要素（ゲームカードなど）より前面に出す */
    background-color: #0e0e10; /* サイトの背景色（※必須：透明だと下のゲームカードと重なって見づらくなります） */

    margin: 20px 0px;

    padding-bottom: 8px;
}

.section-title {
    font-size: 1.5rem;
    margin: 0px;
}

.search-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0px 14px;

    color: #2beaff; /* シアン */
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-decoration: none;

    /* ボタン風の枠線と背景 */
    transition: all 0.2s ease-in-out;
}

.search-link:hover {
    color: #ffffff;
    text-shadow:
        0 0 8px rgba(43, 234, 255, 0.8),
        0 0 16px rgba(43, 234, 255, 0.6);
    transform: translateY(-1px);
}

/* LiveStream */
.livestream-list {
    margin-bottom: 1.5rem;
}

.livestream-list .livestream-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px; /* カード同士の隙間 */
    padding: 0 15px; /* 「もっと見る」や見出しの左右のラインとピタッと揃えるための余白 */
    margin-bottom: 30px; /* 下部の余白 */
}

.livestream-list .loading-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;

    animation: fadeIn 0.4s ease-out forwards;
}

.livestream-list .loading-indicator .loading-icon {
    width: 40px;
    height: 40px;
}

.livestream-list .loading-indicator .loading-text {
    color: #8f8f9a;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin: 0;

    animation: pulseText 1.5s infinite ease-in-out;
}

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

/* テキストの穏やかな点滅 */
@keyframes pulseText {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}
