/* 基础样式重置 */
*, *:before, *:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

body {
    line-height: 1.6;
    background: #f0fdfa;
    color: #1f2937;
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 15pt;
    font-weight: 300;
    letter-spacing: -0.025em;
    overflow-x: hidden;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

ol, ul {
    list-style: none;
}

a {
    transition: all 0.3s ease;
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5em;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3em;
    position: relative;
    padding-bottom: 20px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #2ec4b6 0%, #3b82f6 100%);
}

/* 导航栏 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 1.5em;
    font-weight: 900;
    background: linear-gradient(135deg, #2ec4b6 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 1em;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(46, 196, 182, 0.2);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #1f2937;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero 区域 */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #f0fdfa;
    padding-top: 70px;
}

/* 轮播图容器 */
.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #2ec4b6;
    transform: scale(1.2);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(46, 196, 182, 0.8);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: #2ec4b6;
}

.slider-btn.prev {
    left: 30px;
}

.slider-btn.next {
    right: 30px;
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5em;
    font-weight: 900;
    margin-bottom: 0.5em;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 2em;
    opacity: 0.95;
    color: #e0f2fe;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #2ec4b6 0%, #3b82f6 100%);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(46, 196, 182, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 特点区域 */
.features {
    padding: 100px 0;
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: #fff;
    box-shadow: 0 20px 40px rgba(46, 196, 182, 0.15);
}

.feature-icon {
    font-size: 4em;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #0f766e;
}

.feature-card p {
    color: #64748b;
    line-height: 1.8;
}

/* 游戏区域 */
.games {
    padding: 40px 0;
    background: #f8fafc;
}

.game-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 30px;
    border-radius: 25px;
    background: #fff;
    border: 2px solid #e2e8f0;
    color: #64748b;
    font-size: 1em;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: #2ec4b6;
    color: #2ec4b6;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #2ec4b6 0%, #3b82f6 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 5px 15px rgba(46, 196, 182, 0.3);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.game-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(46, 196, 182, 0.2);
}

.game-card.hidden {
    display: none;
}

.game-card.visible {
    animation: fadeInUp 0.5s ease;
}

.game-image {
    height: 140px;
    background: linear-gradient(135deg, #2ec4b6 0%, #3b82f6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5em;
    flex-shrink: 0;
}

.game-image.coc {
    background: linear-gradient(135deg, #0d9488 0%, #06b6d4 100%);
}

.game-image.pathfinder {
    background: linear-gradient(135deg, #10b981 0%, #14b8a6 100%);
}

.game-image.other {
    background: linear-gradient(135deg, #6ee7b7 0%, #22d3ee 100%);
}

.game-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.game-info h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #0f766e;
}

.game-desc {
    color: #64748b;
    margin-bottom: 12px;
    line-height: 1.6;
    font-size: 0.9em;
}

.game-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: auto;
}

.game-features li {
    background: rgba(46, 196, 182, 0.15);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8em;
    color: #0f766e;
}

.game-detail-btn {
    width: 100%;
    margin-top: 15px;
    padding: 8px 0;
    background: linear-gradient(135deg, #2ec4b6 0%, #3b82f6 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 0.85em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.game-detail-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 196, 182, 0.4);
}

/* 故事区域 */
.stories {
    padding: 100px 0;
    background: #fff;
}

.stories-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.story-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.story-card:hover {
    background: #fff;
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(46, 196, 182, 0.15);
}

.story-date {
    color: #0f766e;
    font-size: 0.9em;
    margin-bottom: 10px;
}

.story-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #115e59;
}

.story-preview {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-link {
    color: #0f766e;
    font-weight: 600;
    transition: all 0.3s ease;
}

.story-link:hover {
    color: #2ec4b6;
}

/* 关于我们 */
.about {
    padding: 100px 0;
    background: #f8fafc;
}

/* 店员详情模态窗口 */
.staff-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.staff-modal-content {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: zoomIn 0.3s ease;
}

.staff-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
}

.staff-modal-close:hover {
    color: #2ec4b6;
    transform: scale(1.1);
}

.staff-modal-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
    padding-right: 40px;
}

.staff-modal-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #2ec4b6 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.staff-modal-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.staff-modal-avatar-text {
    font-size: 2.5em;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.staff-modal-info h3 {
    font-size: 2em;
    color: #0f766e;
    margin-bottom: 8px;
}

.staff-modal-role {
    color: #2ec4b6;
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 15px;
}

.staff-modal-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.staff-modal-skills .skill-tag {
    padding: 6px 16px;
    font-size: 0.9em;
}

.staff-modal-desc {
    color: #64748b;
    line-height: 1.8;
    font-size: 1.1em;
}

.staff-modal-desc h4 {
    color: #0f766e;
    font-size: 1.3em;
    margin: 25px 0 15px;
}

.staff-modal-desc p {
    margin-bottom: 15px;
}

/* 关于我们 */
.about {
    padding: 100px 0;
    background: #f8fafc;
}

/* 店员团队 */
.staff {
    padding: 100px 0;
    background: #fff;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
}

.staff-card {
    background: #f8fafc;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 280px;
}

.staff-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(46, 196, 182, 0.2);
    background: #fff;
}

.staff-avatar {
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, #2ec4b6 0%, #3b82f6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    font-size: 2em;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.staff-info {
    padding: 8px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.staff-info h3 {
    font-size: 0.9em;
    margin-bottom: 2px;
    color: #0f766e;
    word-break: break-all;
}

.staff-role {
    color: #2ec4b6;
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 0.75em;
}

.staff-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
    justify-content: center;
    margin-bottom: auto;
    max-height: 40px;
    overflow: hidden;
}

.skill-tag {
    background: linear-gradient(135deg, rgba(46, 196, 182, 0.15) 0%, rgba(59, 130, 246, 0.15) 100%);
    color: #0f766e;
    padding: 1px 5px;
    border-radius: 6px;
    font-size: 0.6em;
    font-weight: 500;
    transition: all 0.3s ease;
}

.staff-detail-btn {
    margin-top: 4px;
    padding: 4px 12px;
    background: linear-gradient(135deg, #2ec4b6 0%, #3b82f6 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.7em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.staff-detail-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 196, 182, 0.4);
}

.skill-tag:hover {
    background: linear-gradient(135deg, #2ec4b6 0%, #3b82f6 100%);
    color: #fff;
    transform: translateY(-2px);
}

/* 关于我们 */
.about {
    padding: 100px 0;
    background: #f8fafc;
}

/* 店员详情模态窗口 */
.staff-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.staff-modal-content {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: zoomIn 0.3s ease;
}

.staff-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
}

.staff-modal-close:hover {
    color: #2ec4b6;
    transform: scale(1.1);
}

.staff-modal-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
    padding-right: 40px;
}

.staff-modal-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #2ec4b6 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.staff-modal-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.staff-modal-avatar-text {
    font-size: 2.5em;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.staff-modal-info h3 {
    font-size: 2em;
    color: #0f766e;
    margin-bottom: 8px;
}

.staff-modal-role {
    color: #2ec4b6;
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 15px;
}

.staff-modal-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.staff-modal-skills .skill-tag {
    padding: 6px 16px;
    font-size: 0.9em;
}

.staff-modal-desc {
    color: #64748b;
    line-height: 1.8;
    font-size: 1.1em;
}

.staff-modal-desc h4 {
    color: #0f766e;
    font-size: 1.3em;
    margin: 25px 0 15px;
}

.staff-modal-desc p {
    margin-bottom: 15px;
}

/* 关于我们 */
.about {
    padding: 100px 0;
    background: #f8fafc;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-text p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 20px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5em;
    font-weight: 900;
    color: #0f766e;
    margin-bottom: 10px;
}

.stat-label {
    color: #64748b;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.scene {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #2ec4b6 0%, #3b82f6 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.table {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 100px;
    background: rgba(139, 90, 43, 0.9);
    border-radius: 10px;
}

.dice {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(46, 196, 182, 0.3);
}

.about .contact-info {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #e2e8f0;
}

.about .contact-info h3 {
    font-size: 1.5em;
    margin-bottom: 30px;
    color: #0f766e;
}

.about .info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #64748b;
}

.about .info-item i {
    font-size: 1.5em;
    color: #0f766e;
}

.about .map-container {
    margin-top: 30px;
    text-align: center;
}

.about .map-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    border: 3px solid #2ec4b6;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(46, 196, 182, 0.2);
}

.about .map-image:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(46, 196, 182, 0.4);
}

.about .map-hint {
    margin-top: 15px;
    color: #64748b;
    font-size: 0.9em;
}

/* 合作店铺 */
.partners {
    padding: 100px 0;
    background: #fff;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.partner-card {
    background: #f8fafc;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(46, 196, 182, 0.2);
    background: #fff;
}

.partner-logo {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #2ec4b6 0%, #3b82f6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo i {
    font-size: 5em;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.partner-info {
    padding: 30px;
}

.partner-info h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #0f766e;
}

.partner-desc {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 20px;
}

.partner-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.tag {
    background: linear-gradient(135deg, rgba(46, 196, 182, 0.15) 0%, rgba(59, 130, 246, 0.15) 100%);
    color: #0f766e;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag:hover {
    background: linear-gradient(135deg, #2ec4b6 0%, #3b82f6 100%);
    color: #fff;
    transform: translateY(-2px);
}

/* 图标通用样式 */
.icon {
    font-style: normal;
    line-height: 1;
}

/* 模态窗口样式 */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    animation: zoomIn 0.3s ease;
}

.close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close:hover {
    color: #2ec4b6;
    transform: scale(1.1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.reservation-form {
    background: #f8fafc;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #e2e8f0;
}

.reservation-form h3 {
    font-size: 1.5em;
    margin-bottom: 30px;
    color: #0f766e;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #475569;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: #fff;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    color: #1f2937;
    font-size: 1em;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2ec4b6;
    background: #f8fafc;
}

.form-group option {
    background: #fff;
    color: #1f2937;
}

/* 页脚 */
footer {
    background: #0f766e;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #fff;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-section nav a {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section nav a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    transition: all 0.3s ease;
    color: #fff;
}

.social-link:hover {
    background: #fff;
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9em;
}

.footer-bottom a {
    color: #ccfbf1;
    margin-left: 10px;
}

/* 响应式设计 */
@media screen and (max-width: 768px) {
    body {
        font-size: 14pt;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 2em;
    }

    .hero-subtitle {
        font-size: 1em;
    }

    .section-title {
        font-size: 2em;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* 滚动动画 */
@keyframes scrollReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}