* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "MyUniqueFont";
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #555;
    padding: 5px 0;
    transition: all 0.1s ease;
}

nav a:hover {
    color: #3498db;
    border-bottom: 2px solid #3498db;
}

main {
    padding-bottom: 40px;
}

section {
    margin-bottom: 40px;
    padding: 25px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

h1, h2, h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

h1 {
    font-size: 32px;
    border-left: 4px solid #3498db;
    padding-left: 15px;
}

h2 {
    font-size: 24px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

h3 {
    font-size: 20px;
    color: #3498db;
}

p {
    margin-bottom: 15px;
    color: #555;
}

.hero {
    text-align: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    -moz-user-select: none; /* Firefox */
    -webkit-user-select: none; /* Chrome, Safari, Opera */
    -ms-user-select: none; /* IE 10+ */
    user-select: none; /* 标准语法 */
}

.hero h1 {
    border: none;
    padding: 0;
}

.hero div {
    background: linear-gradient(to right, #8c52ff, #5ce1e6); /* 渐变方向与颜色 */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero h1,div {
    display: inline;
}

.hero p {
    font-size: 18px;
    color: #2c3e50;
    max-width: 600px;
    margin: 0 auto 20px;
}

.resource-item {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #ddd;
}

.resource-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.resource-item ul {
    list-style-type: none;
}

.resource-item li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.resource-item li:last-child {
    border-bottom: none;
}

.resource-item strong {
    color: #2c3e50;
}

.learning-tips {
    background: #f8f9fa;
    border-left: 4px solid #3498db;
}

footer {
    text-align: center;
    padding: 20px 0;
    color: #777;
    border-top: 1px solid #eee;
    margin-top: 30px;
}

.combined-link {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 10px;
    border: 1px solid #2980b9;
}

.combined-link:hover {
    background: #2980b9;
}

@media (max-width: 768px) {
    body {
        padding: 0 15px;
    }
    
    header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    nav a {
        margin: 0 10px;
    }
    
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 22px;
    }
}