.geohub-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

.geohub-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.geohub-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.geohub-hero h1 {
    font-size: 2rem;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.geohub-hero .subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.geohub-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.geohub-description {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    margin-bottom: 25px;
    box-shadow: var(--shadow);
    line-height: 1.8;
    color: var(--text);
}

.geohub-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.geohub-stats .stat-card {
    background: var(--white);
    padding: 25px 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.geohub-stats .stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.geohub-stats .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.geohub-stats .stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 5px;
}

.geohub-section {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--shadow);
}

.geohub-section h2 {
    font-size: 1.3rem;
    color: var(--primary);
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.geohub-section h2 i {
    color: var(--accent);
}

/* 城市卡片列表 */
.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.city-card {
    background: var(--bg);
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s;
    text-decoration: none;
    color: var(--text);
}

.city-card:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateX(5px);
}

.city-card .city-name {
    font-weight: 600;
}

.city-card .city-count {
    font-size: 0.85rem;
    color: var(--text-light);
    background: var(--white);
    padding: 3px 10px;
    border-radius: 20px;
}

.city-card:hover .city-count {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

/* 公棚列表 */
.loft-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.loft-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

.loft-item:hover {
    background: var(--primary-light);
}

.loft-item a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
}

.loft-item:hover a {
    color: var(--white);
}

.loft-item .loft-stats {
    font-size: 0.85rem;
    color: var(--text-light);
}

.loft-item:hover .loft-stats {
    color: rgba(255,255,255,0.8);
}

/* 赛事列表 */
.race-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.race-item {
    padding: 15px 20px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

.race-item:hover {
    background: var(--primary-light);
}

.race-item .race-name {
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.race-item:hover .race-name {
    color: var(--white);
}

.race-item .race-meta {
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    gap: 15px;
}

.race-item:hover .race-meta {
    color: rgba(255,255,255,0.8);
}

/* 周边城市推荐 */
.nearby-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.nearby-cities a {
    background: var(--bg);
    padding: 8px 16px;
    border-radius: 20px;
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.nearby-cities a:hover {
    background: var(--primary);
    color: var(--white);
}

/* GeoHub 响应式 */
@media (max-width: 768px) {
    .geohub-content {
        padding: 15px;
    }

    .geohub-hero {
        padding: 25px 20px;
    }

    .geohub-hero .container {
        padding: 0 15px;
    }

    .geohub-hero h1 {
        font-size: 1.5rem;
    }

    .geohub-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .geohub-stats .stat-card {
        padding: 15px;
    }

    .geohub-stats .stat-number {
        font-size: 1.5rem;
    }

    .city-grid {
        grid-template-columns: 1fr;
    }

    .geohub-section {
        padding: 20px 15px;
    }

    .geohub-content {
        padding: 0 15px;
    }
}

/* 城市卡片中的统计文字 */
.city-stats {
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

/* 公棚网格布局 */
.loft-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 15px;
}

/* 公棚卡片 */
.loft-card {
    background: var(--bg);
    padding: 20px;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

.loft-card:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

.loft-card h3 {
    margin: 0 0 10px 0;
    font-size: 1rem;
}

.loft-card h3 a {
    color: var(--primary);
    text-decoration: none;
}

.loft-card:hover h3 a {
    color: var(--white);
}

.loft-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.loft-card:hover .loft-meta {
    color: rgba(255,255,255,0.85);
}

/* 面包屑导航 */
.breadcrumb {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 15px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* 周边城市标签 */
.city-tag {
    background: var(--bg);
    padding: 6px 14px;
    border-radius: 20px;
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
    display: inline-block;
}

.city-tag:hover {
    background: var(--primary);
    color: var(--white);
}
