body {
    font-family: 'Noto Sans JP', sans-serif;
}

/* ヒーローセクション */
.hero-section {
    background: linear-gradient(135deg, #1a3a6b 0%, #f97316 100%);
    color: white;
    padding: 80px 0;
}

/* チームカード */
.team-card {
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    border-radius: 12px;
    overflow: hidden;
}
.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* バッジ */
.badge-gender-mixed  { background-color: #6c757d; }
.badge-gender-male   { background-color: #0d6efd; }
.badge-gender-female { background-color: #d63384; }

/* 都道府県ボタングリッド */
.prefecture-grid .btn {
    font-size: 0.8rem;
    padding: 6px 8px;
}

/* 大会カード */
.tournament-card .badge-level-national { background-color: #dc3545; }
.tournament-card .badge-level-block    { background-color: #fd7e14; }
.tournament-card .badge-level-pref     { background-color: #198754; }

/* 記事サムネイル */
.article-thumbnail {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.article-thumbnail-placeholder {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #adb5bd;
}

/* navbar */
.navbar-brand { font-size: 1.3rem; }

/* 検索フォーム */
.search-panel {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 24px;
}

/* 統計カウンター */
.stat-counter {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f97316;
}

/* マップ代替：都道府県ボタン */
.pref-region-title {
    font-size: 0.75rem;
    color: #6c757d;
    margin-bottom: 6px;
    font-weight: bold;
}

/* フォームセクション */
.form-section-title {
    border-left: 4px solid #f97316;
    padding-left: 12px;
    margin-bottom: 20px;
    font-weight: bold;
}

/* チーム詳細 */
.team-detail-header {
    background: linear-gradient(135deg, #1a3a6b, #2563eb);
    color: white;
    border-radius: 12px;
    padding: 32px;
}

/* アドミン */
.admin-sidebar {
    min-height: 100vh;
    background: #1a3a6b;
}
.admin-sidebar .nav-link {
    color: rgba(255,255,255,0.75);
    padding: 10px 20px;
}
.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .hero-section { padding: 40px 0; }
    .stat-counter { font-size: 1.8rem; }
}
