/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e88e5;
    --secondary-color: #43a047;
    --accent-color: #ff6f00;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f5f7fa;
    --border-color: #e0e0e0;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-hover: 0 4px 16px rgba(0,0,0,0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

.section-padding {
    padding: 60px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

/* 导航栏 */
.navbar {
    background: linear-gradient(135deg, var(--primary-color), #1565c0);
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
}

.nav-brand img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-brand i {
    font-size: 28px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
    font-weight: 500;
}

.nav-menu a:hover,
.nav-menu a.active {
    opacity: 0.8;
}

/* ✅ 桌面端隐藏移动端菜单按钮 */
.mobile-menu-toggle {
    display: none;
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #e65100;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 16px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: auto;
    min-height: 300px;
    background: linear-gradient(135deg, var(--primary-color), #1565c0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 80px 0 60px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30,136,229,0.8), rgba(21,101,192,0.9));
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.search-box {
    display: flex;
    max-width: 600px;
    margin: 0 auto 30px;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.search-box input {
    flex: 1;
    border: none;
    padding: 16px 24px;
    font-size: 16px;
    outline: none;
}

.search-box button {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 16px 32px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s;
}

.search-box button:hover {
    background: #e65100;
}

.hero-tags {
    font-size: 14px;
}

.hero-tags span {
    margin-right: 10px;
    opacity: 0.9;
}

.hero-tags .tag {
    color: white;
    text-decoration: none;
    background: rgba(255,255,255,0.2);
    padding: 4px 12px;
    border-radius: 15px;
    margin: 0 5px;
    transition: background 0.3s;
}

.hero-tags .tag:hover {
    background: rgba(255,255,255,0.3);
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
}

/* Clubs Grid */
.clubs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.club-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.club-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.club-logo {
    height: 200px;
/*    background: linear-gradient(135deg, var(--primary-color), #42a5f5); */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* LOGO链接样式 */
.club-logo-link {
    display: block;
    text-decoration: none;
    transition: all 0.3s;
}

.club-logo-link:hover .club-logo {
    background-color: rgba(30, 136, 229, 0.05);
}

.club-logo-link:hover .club-logo img {
    transform: scale(1.05);
}

.club-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

.club-info {
    padding: 20px;
}

.club-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* 球迷会名称链接样式 */
.club-name-link {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
}

.club-name-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.club-meta {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.club-meta i {
    margin-right: 5px;
}

.club-slogan {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 15px;
    padding-left: 10px;
    border-left: 3px solid var(--primary-color);
}

.club-tags {
    margin-bottom: 15px;
}

.club-tags .tag-local,
.club-tags .tag-european,
.club-tags .tag-amateur,
.club-tags .tag-super-jangsu,
.club-tags .tag-active,
.club-tags .tag-recruiting,
.club-tags .tag-invitation,
.club-tags .tag-paused {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    margin-right: 8px;
    margin-bottom: 5px;
}

.tag-local { background: #e3f2fd; color: #1976d2; }
.tag-european { background: #f3e5f5; color: #7b1fa2; }
.tag-amateur { background: #e8f5e9; color: #388e3c; }
.tag-super-jangsu { background: #fff9c4; color: #f57f17; }
.tag-active { background: #fff3e0; color: #f57c00; }
.tag-recruiting { background: #fce4ec; color: #c2185b; }
.tag-invitation { background: #f3e5f5; color: #8b5cf6; }
.tag-paused { background: #f5f5f5; color: #9ca3af; }

/* 球迷会名录列表中的标签样式 - 调小字号 */
.item-tags .tag-local,
.item-tags .tag-european,
.item-tags .tag-amateur,
.item-tags .tag-super-jangsu,
.item-tags .tag-active,
.item-tags .tag-recruiting,
.item-tags .tag-national,
.item-tags .tag-invitation,
.item-tags .tag-paused {
    font-size: 11px;
    padding: 3px 10px;
}

/* 多选框样式 */
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f9f9f9;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
}

.checkbox-item:hover {
    border-color: var(--primary-color);
    background: #f0f7ff;
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-item span {
    font-size: 14px;
    color: #333;
}

.form-hint {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: #999;
}

.btn-detail {
    display: block;
    text-align: center;
    background: var(--primary-color);
    color: white;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-detail:hover {
    background: #1565c0;
}

.view-more {
    text-align: center;
}

/* Marquee */
.marquee-container {
    overflow: hidden;
    background: white;
    padding: 30px 0;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.marquee-content {
    display: flex;
    animation: marquee 20s linear infinite;
}

.marquee-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 30px;
}

/* 最新入驻链接样式 */
.marquee-item-link {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

.marquee-item-link:hover {
    transform: scale(1.05);
}

.marquee-item-link:hover .marquee-item {
    background-color: rgba(30, 136, 229, 0.05);
    border-radius: 8px;
}

.marquee-item-link:hover img {
    transform: scale(1.1);
}

.marquee-item img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), #42a5f5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-item p {
    color: var(--text-light);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: background 0.3s;
}

.social-links a:hover {
    background: rgba(255,255,255,0.2);
}

.qr-code img {
    width: 150px;
    height: 150px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.8;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), #1565c0);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* Directory Layout */
.directory-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

.filter-sidebar {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    height: fit-content;
    position: sticky;
    top: 90px;
}

.filter-sidebar h3 {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

/* 筛选按钮区域 */
.filter-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.filter-buttons .btn-reset,
.filter-buttons .btn-apply {
    flex: 1;
    padding: 10px 16px;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.filter-buttons .btn-reset {
    background: #f5f7fa;
    color: #666;
    border: 1px solid #ddd;
}

.filter-buttons .btn-reset:hover {
    background: #e8ecf1;
    border-color: #ccc;
}

.filter-buttons .btn-apply {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.filter-buttons .btn-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.filter-group {
    margin-bottom: 25px;
}

.filter-group h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.filter-option {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    cursor: pointer;
}

.filter-option input {
    margin-right: 10px;
}

.btn-reset,
.btn-apply {
    width: 100%;
    margin-bottom: 10px;
}

.list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.results-count {
    font-size: 16px;
}

.sort-options select {
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    outline: none;
}

/* Club List Items */
.clubs-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.club-list-item {
    display: flex;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.club-list-item:hover {
    box-shadow: var(--shadow-hover);
}

.item-logo {
    width: 150px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-color), #42a5f5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Logo链接样式 */
.item-logo-link {
    display: block;
    transition: transform 0.3s;
}

.item-logo-link:hover {
    transform: scale(1.05);
}

.item-logo-link:hover .item-logo {
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.3);
}

.item-logo img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
}

.item-content {
    flex: 1;
    padding: 20px;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.item-header h3 {
    font-size: 20px;
    margin: 0;
}

/* 俱乐部名称链接样式 */
.club-name-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.club-name-link:hover {
    color: var(--primary-color);
}

.item-details {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.item-details i {
    margin-right: 5px;
}

.item-slogan {
    font-style: italic;
    color: var(--text-light);
    padding-left: 10px;
    border-left: 3px solid var(--primary-color);
}

.item-action {
    display: flex;
    align-items: center;
    padding: 20px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.page-btn {
    padding: 10px 16px;
    border: 1px solid var(--border-color);
    background: white;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.page-btn:hover:not(.disabled):not(.active) {
    background: var(--bg-light);
}

.page-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.page-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Club Profile Header */
.club-profile-header {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color), #1565c0);
    padding: 80px 0 60px;
    color: white;
}

.profile-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/profile-bg.jpg') center/cover no-repeat;
    opacity: 0.1;
}

.profile-card {
    position: relative;
    display: flex;
    gap: 40px;
    align-items: center;
}

.profile-logo {
    width: 200px;
    height: 200px;
    background: white;
    border-radius: 50%;
    padding: 20px;
    box-shadow: var(--shadow-hover);
}

.profile-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.profile-info h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.profile-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.profile-meta span {
    font-size: 16px;
}

.profile-meta i {
    margin-right: 8px;
}

.profile-slogan {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 25px;
    opacity: 0.95;
}

.profile-actions {
    display: flex;
    gap: 15px;
}

/* Content Layout */
.content-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

.content-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.content-section {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.content-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.content-section h2 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.intro-text {
    line-height: 1.8;
}

.intro-text p {
    margin-bottom: 15px;
}

.intro-text ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.intro-text li {
    margin-bottom: 8px;
}

/* Photo Gallery */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.photo-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.photo-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.photo-item img {
    width: 100%;
    height: auto;
    min-height: 250px;
    max-height: 400px;
    object-fit: contain;
    background: #f5f7fa;
    display: block;
}

.photo-item:hover img {
    cursor: zoom-in;
}

/* 图片放大模态框 */
.modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.close-btn {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.nav-btn i {
    font-size: 14px;
}

.photo-caption {
    padding: 12px;
    text-align: center;
    background: white;
}

/* Join Section */
.join-info-card {
    margin-bottom: 25px;
    padding: 25px;
    background: var(--bg-light);
    border-radius: 8px;
}

.join-info-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.join-info-card h3 i {
    color: var(--primary-color);
    margin-right: 8px;
}

.join-info-card ul {
    margin-left: 20px;
}

.join-info-card li {
    margin-bottom: 10px;
}

.join-info-card i {
    color: var(--secondary-color);
    margin-right: 8px;
}

.contact-methods {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: white;
    padding: 35px 25px;
    border-radius: 16px;
    flex: 1;
    min-width: 150px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.contact-item2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background:  rgba(255, 255, 255, 0.3);
    padding: 35px 25px;
    border-radius: 16px;
    flex: 1;
    min-width: 150px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}


.contact-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1976d2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    flex-shrink: 0;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.4);
    transition: transform 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-details {
    width: 100%;
}

.contact-details h4 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.contact-details p {
    color: #555;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}

.qr-medium {
    width: 120px;
    height: 120px;
}

.btn-copy {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    transition: background 0.3s;
}

.btn-copy:hover {
    background: #1565c0;
}

.highlight-card {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    border: 2px solid var(--accent-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.benefit-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
}

.benefit-item i {
    font-size: 36px;
    color: var(--accent-color);
    margin-bottom: 10px;
}

/* Sidebar */
.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.sidebar-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.quick-info-list {
    list-style: none;
}

.quick-info-list li {
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
}

.info-label {
    color: var(--text-light);
}

.activity-bar {
    width: 100px;
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    display: inline-block;
    margin-right: 8px;
}

.activity-fill {
    height: 100%;
    background: var(--secondary-color);
}

.upcoming-events {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
}

.event-item {
    display: flex;
    gap: 12px;
}

.event-date {
    width: 50px;
    text-align: center;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    border-radius: 8px;
    flex-shrink: 0;
}

.event-date .day {
    display: block;
    font-size: 20px;
    font-weight: bold;
}

.event-date .month {
    display: block;
    font-size: 12px;
}

.event-info h4 {
    font-size: 15px;
    margin-bottom: 5px;
}

.event-info p {
    font-size: 13px;
    color: var(--text-light);
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
}

.btn-link:hover {
    text-decoration: underline;
}

.similar-clubs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.similar-item {
    display: flex;
    gap: 12px;
    align-items: center;
    text-decoration: none;
    color: inherit;
    padding: 10px;
    border-radius: 8px;
    transition: background 0.3s;
}

.similar-item:hover {
    background: var(--bg-light);
}

.similar-item img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.similar-info h4 {
    font-size: 15px;
    margin-bottom: 3px;
}

.similar-info p {
    font-size: 13px;
    color: var(--text-light);
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--shadow);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.faq-question i {
    font-size: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.faq-question h3 {
    font-size: 18px;
}

.faq-answer {
    padding-left: 36px;
}

.faq-answer ul {
    margin-left: 20px;
}

.faq-answer li {
    margin-bottom: 8px;
}

.tip {
    background: #fff3cd;
    padding: 12px;
    border-radius: 6px;
    margin-top: 10px;
}

/* Etiquette Grid */
.etiquette-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.etiquette-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s;
}

.etiquette-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.etiquette-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--primary-color), #42a5f5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.etiquette-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* Warning Section */
.warning-section {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
}

.text-warning {
    color: #f57c00;
}

.warning-alert {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 4px solid var(--accent-color);
}

.warning-alert h3 {
    margin-bottom: 10px;
}

.warning-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.warning-item {
    display: flex;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 8px;
}

.warning-number {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
}

.warning-text h4 {
    margin-bottom: 5px;
}

.emergency-contact {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-top: 25px;
}

.emergency-contact h4 {
    margin-bottom: 10px;
}

.emergency-contact ul {
    list-style: none;
    margin-left: 20px;
}

.emergency-contact li {
    margin-bottom: 8px;
}

/* CTA Box */
.cta-box {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), #1565c0);
    color: white;
    padding: 60px 40px;
    border-radius: 12px;
}

.cta-box h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Map Section */
.map-filters {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-group label {
    margin-right: 10px;
    font-weight: 600;
}

.filter-btn {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    margin: 0 5px;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.search-location {
    display: flex;
    gap: 10px;
}

.search-location input {
    padding: 8px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    outline: none;
}

.btn-search {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
}

.map-container {
    position: relative;
}

.interactive-map {
    height: 600px;
    background: #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.map-placeholder i {
    font-size: 80px;
    margin-bottom: 20px;
}

.map-legend {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.map-legend h4 {
    margin-bottom: 10px;
    font-size: 14px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 13px;
}

.legend-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.legend-icon.stadium { background: #1e88e5; }
.legend-icon.bar { background: #ff6f00; }
.legend-icon.restaurant { background: #43a047; }
.legend-icon.training { background: #7b1fa2; }

/* Locations List */
.location-category {
    margin-bottom: 50px;
}

.location-category h3 {
    font-size: 24px;
    margin-bottom: 25px;
    padding-left: 15px;
    border-left: 4px solid var(--primary-color);
}

.location-category h3 i {
    margin-right: 10px;
    color: var(--primary-color);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.location-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    cursor: pointer;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.location-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.location-info {
    padding: 20px;
}

.location-info h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.location-address {
    color: var(--text-light);
    margin-bottom: 10px;
    font-size: 14px;
}

.location-desc {
    margin-bottom: 15px;
    font-size: 14px;
}

.location-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--text-light);
}

.location-clubs {
    margin-bottom: 10px;
}

.club-tag {
    display: inline-block;
    background: var(--bg-light);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    margin: 5px 5px 0 0;
}

.location-discount {
    background: #fff3cd;
    padding: 8px;
    border-radius: 6px;
    font-size: 13px;
    margin-top: 10px;
}

.location-discount i {
    color: var(--accent-color);
    margin-right: 5px;
}

/* Activities */
.activities-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.activity-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tab-btn {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.status-filter {
    margin-bottom: 25px;
}

.status-filter select {
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    outline: none;
    margin-left: 10px;
}

.activities-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.activity-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--shadow);
    position: relative;
    transition: all 0.3s;
}

.activity-card:hover {
    box-shadow: var(--shadow-hover);
}

.activity-badge {
    position: absolute;
    top: -10px;
    left: 20px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: white;
}

.activity-badge.match { background: #1e88e5; }
.activity-badge.watch { background: #43a047; }
.activity-badge.away { background: #ff6f00; }
.activity-badge.home { background: #ff6b6b; }
.activity-badge.trade { background: #7b1fa2; }
.activity-badge.ended { background: #9e9e9e; }

.activity-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.activity-title {
    font-size: 20px;
    flex: 1;
}

.activity-title.ended-title {
    text-decoration: line-through;
    color: #999;
}

.activity-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.activity-status.recruiting {
    background: #e8f5e9;
    color: #388e3c;
}

.activity-status.ended {
    background: #f5f5f5;
    color: #757575;
}

.activity-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
    margin-bottom: 15px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
}

.meta-item i {
    color: var(--primary-color);
}

.activity-description {
    margin-bottom: 15px;
    line-height: 1.8;
}

.activity-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.activity-tags .tag {
    display: inline-block;
    background: var(--bg-light);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    margin-right: 8px;
}

.activity-actions {
    display: flex;
    gap: 10px;
}

.btn-join-activity,
.btn-contact,
.btn-view-photos {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.btn-join-activity:hover,
.btn-contact:hover,
.btn-view-photos:hover {
    background: #1565c0;
}

.btn-share {
    background: transparent;
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-share:hover {
    background: var(--bg-light);
}

.activity-time {
    margin-top: 15px;
    font-size: 13px;
    color: var(--text-light);
}

/* About Section */
.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-text .lead {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.mission-list {
    list-style: none;
    margin: 30px 0;
}

.mission-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
}

.mission-list i {
    font-size: 28px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.mission-list h4 {
    margin-bottom: 5px;
}

.highlight {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    font-size: 18px;
    font-weight: 600;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
}

.member-avatar img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.member-info {
    padding: 20px;
}

.member-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.member-desc {
    font-size: 14px;
    color: var(--text-light);
}

/* Form */
.form-container {
    max-width: 900px;
    margin: 0 auto;
}

.application-form {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.form-section {
    margin-bottom: 35px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.form-section h3 i {
    color: var(--primary-color);
    margin-right: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.required {
    color: #e53935;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: border 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
}

.file-upload {
    position: relative;
}

.file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.upload-placeholder {
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s;
}

.upload-placeholder:hover {
    border-color: var(--primary-color);
    background: var(--bg-light);
}

.upload-placeholder i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input {
    margin-top: 3px;
}

.agreement-list {
    margin: 15px 0 0 25px;
}

.agreement-list li {
    margin-bottom: 8px;
    font-size: 14px;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.btn-submit {
    min-width: 200px;
}

/* Disclaimer */
.disclaimer-section {
    background: #f5f5f5;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
}

.disclaimer-item h4 {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.disclaimer-note {
    margin-top: 20px;
    padding: 15px;
    background: #fff3cd;
    border-radius: 8px;
    font-weight: 600;
}

/* Contact Box */
.contact-box {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), #1565c0);
    color: white;
    padding: 60px 40px;
    border-radius: 12px;
}

.contact-box h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: white;
}

.contact-box > p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
    color: white;
}

/* 注意：以下样式已移至上面统一的 .contact-methods 样式中 */
/* .contact-methods {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-methods .contact-item {
    flex-direction: column;
    align-items: center;
}

.contact-methods i {
    font-size: 36px;
    margin-bottom: 10px;
}

.contact-methods h4 {
    margin-bottom: 5px;
} */

/* Responsive */
@media (max-width: 768px) {
    /* ✅ 移动端导航栏优化 */
    .navbar {
        padding: 10px 0;
    }
    
    .navbar .container {
        flex-wrap: wrap;
    }
    
    .nav-brand {
        font-size: 18px;
        flex: 1;
    }
    
    .nav-brand img {
        height: 35px;
    }
    
    /* 移动端菜单按钮 */
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        color: white;
        font-size: 24px;
        cursor: pointer;
        padding: 5px 10px;
    }
    
    /* 移动端隐藏入驻按钮 */
    .btn-join {
        display: none;
    }
    
    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .clubs-grid,
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .directory-layout,
    .content-layout {
        grid-template-columns: 1fr;
    }
    
    .profile-card {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-meta,
    .profile-actions {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* 弹窗样式 */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.modal-container {
    background: white;
    border-radius: 12px;
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 2px solid var(--border-color);
    background: linear-gradient(135deg, var(--primary-color), #1565c0);
    color: white;
    border-radius: 12px 12px 0 0;
}

.modal-header h2 {
    font-size: 24px;
    margin: 0;
}

.modal-header h2 i {
    margin-right: 10px;
}

.modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.3s;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.modal-form {
    padding: 30px;
}

.modal-form .form-group {
    margin-bottom: 20px;
}

.modal-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.modal-form input,
.modal-form select,
.modal-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: border 0.3s;
}

.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
    border-color: var(--primary-color);
}

.modal-form .form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.modal-form .form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
}

.modal-form .btn-lg {
    min-width: 150px;
}

/* 验证码输入框样式 */
.captcha-box {
    display: flex;
    gap: 10px;
    align-items: center;
}

.captcha-box input {
    flex: 1;
}

.captcha-box img {
    height: 50px;
    cursor: pointer;
    border: 1px solid var(--border-color);
    border-radius: 6px;
}

.btn-refresh-captcha {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.btn-refresh-captcha:hover {
    background: #1565c0;
}

.btn-refresh-captcha i {
    margin-right: 5px;
}

/* ==================== 足球据点页面样式 ==================== */

/* 筛选栏 */
.spots-filter {
    padding: 30px 0;
}

.filter-bar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-group label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid var(--border-color);
    background: white;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    color: var(--text-dark);
}

.filter-btn i {
    margin-right: 5px;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* 据点网格 */
.spots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.spot-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.spot-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.spot-image {
    position: relative;
    height: 220px;
    background: linear-gradient(135deg, var(--primary-color), #42a5f5);
    overflow: hidden;
}

.spot-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.spot-card:hover .spot-image img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.featured-badge i {
    margin-right: 4px;
}

.spot-info {
    padding: 20px;
}

.spot-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.spot-address {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 12px;
}

.spot-address i {
    margin-right: 5px;
    color: var(--primary-color);
}

.spot-desc {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.spot-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--text-light);
}

.spot-meta i {
    margin-right: 5px;
    color: var(--secondary-color);
}

.spot-facilities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.facility-tag {
    display: inline-block;
    padding: 4px 10px;
    background: #e3f2fd;
    color: #1976d2;
    border-radius: 12px;
    font-size: 12px;
}

.facility-tag i {
    margin-right: 4px;
}

.spot-discount {
    background: #fff3cd;
    color: #856404;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    margin-bottom: 12px;
}

.spot-discount i {
    margin-right: 5px;
}

.spot-clubs {
    font-size: 13px;
    color: var(--text-light);
}

.spot-clubs strong {
    color: var(--text-dark);
}

.club-tag {
    display: inline-block;
    padding: 3px 8px;
    background: #f3e5f5;
    color: #7b1fa2;
    border-radius: 10px;
    font-size: 11px;
    margin: 2px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .spots-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-bar {
        flex-direction: column;
        gap: 15px;
    }
    
    .filter-group {
        justify-content: center;
    }
}

/* ==================== 移动端筛选器样式 ==================== */

/* 移动端筛选按钮 */
.mobile-filter-toggle {
    display: none;
    margin-bottom: 20px;
}

#toggleFilterBtn {
    width: 100%;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background: linear-gradient(135deg, var(--primary-color), #1565c0);
    color: white;
    box-shadow: 0 2px 8px rgba(30, 136, 229, 0.3);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#toggleFilterBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 136, 229, 0.4);
}

#toggleFilterBtn i:last-child {
    transition: transform 0.3s;
}

/* 移动端筛选器默认隐藏 */
@media (max-width: 768px) {
    .mobile-filter-toggle {
        display: block;
    }
    
    .filter-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        z-index: 9999;
        background: white;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
        transition: left 0.3s ease-in-out;
        padding: 20px;
    }
    
    .filter-sidebar.active {
        left: 0;
    }
    
    /* 遮罩层 */
    .filter-sidebar::before {
        content: '';
        position: fixed;
        top: 0;
        left: 100%;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }
    
    .filter-sidebar.active::before {
        opacity: 1;
        visibility: visible;
    }
    
    /* 调整布局 */
    .directory-layout {
        grid-template-columns: 1fr;
    }
    
    /* 关闭按钮 */
    .filter-sidebar h3 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 15px;
        border-bottom: 2px solid var(--border-color);
        margin-bottom: 20px;
    }
    
    .filter-sidebar h3::after {
        content: '\00D7';
        font-size: 28px;
        color: #999;
        cursor: pointer;
        padding: 0 10px;
        line-height: 1;
    }
    
    .filter-sidebar h3::after:hover {
        color: #333;
    }
}
