:root {
    --primary-green: #4CAF50;
    --primary-dark: #388E3C;
    --primary-light: #81C784;
    --accent-yellow: #FFC107;
    --background-light: #f8f9fa;
    --text-dark: #333333;
    --text-medium: #555555;
    --shadow-light: 0 2px 15px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--background-light);
    min-height: 100vh;
    color: var(--text-dark);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    padding-bottom: 100px;
}

/* 页面标题区 */
.page-title {
    text-align: center;
    margin-bottom: 40px;
    padding: 25px 20px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.page-title h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.page-title p {
    font-size: 1.1rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

/* 通用内容卡片 */
.content-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    padding: 30px;
    margin-bottom: 30px;
    transition: var(--transition);
}

.content-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}

/* 章节标题样式 */
.section-title {
    font-size: 1.5rem;
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(76, 175, 80, 0.2);
}

/* 练习区域 */
.practice-section {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

/* 主要按钮样式 */
.start-btn {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.start-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    background: linear-gradient(135deg, var(--primary-dark), #2E7D32);
}