
/* 基础样式 */
body {
    background: linear-gradient(to bottom, #121212, #000000);
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    margin-top: 2rem;
}

h1 {
    font-size: 2.5rem;
    text-align: center;
    color: #A64AC9;
    text-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
}

h2 {
    font-size: 2rem;
    color: #FF7F50;
}

h3 {
    font-size: 1.75rem;
    color: #08D9D6;
}

p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #E0E0E0;
}

a {
    color: #08D9D6;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

a:hover {
    color: #A64AC9;
}

/* 容器与布局 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 2rem;
}

.grid-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
}

.grid-item:hover {
    transform: scale(1.05);
}

/* 按钮样式 */
.button {
    background-color: #08D9D6;
    color: #000000;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.button:hover {
    background-color: #A64AC9;
    transform: scale(1.1);
}

/* 代码块样式 */
pre {
    background: #1E1E1E;
    color: #A64AC9;
    padding: 15px;
    border-radius: 5px;
    overflow-x: auto;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

code {
    color: #FF7F50;
}

/* 表格样式 */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

th, td {
    padding: 10px;
    text-align: left;
    border: 1px solid #333333;
}

th {
    background-color: #A64AC9;
    color: #000000;
}

td {
    background-color: #1E1E1E;
    color: #E0E0E0;
}

/* 图片样式 */
img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1rem;
}

/* 自适应布局 */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    p {
        font-size: 0.9rem;
    }

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

