:root {
    --primary-color: #2196f3;
    --background-color: #f5f5f5;
    --text-color: #333;
    --border-color: #e0e0e0;
    --hover-color: #f0f7ff;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

h1 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}

h2.slogan {
    text-align: center;
    background: linear-gradient(120deg, #FF4D4D, #FF9900, #2196f3);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 1rem auto 3rem;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 1rem;
    max-width: 900px;
    animation: glow 2s ease-in-out infinite alternate;
}

h2.slogan::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -15px;
    margin: auto;
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, #FF4D4D, #FF9900, #2196f3);
    border-radius: 2px;
    animation: shine 2s infinite;
}

h2.slogan::after {
    content: "🚀";
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    animation: float 2s ease-in-out infinite;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(33, 150, 243, 0.5),
                     0 0 20px rgba(33, 150, 243, 0.3),
                     0 0 30px rgba(33, 150, 243, 0.2);
    }
    to {
        text-shadow: 0 0 20px rgba(255, 77, 77, 0.5),
                     0 0 30px rgba(255, 77, 77, 0.3),
                     0 0 40px rgba(255, 77, 77, 0.2);
    }
}

@keyframes shine {
    from {
        background-position: -200px;
    }
    to {
        background-position: 200px;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
    }
    50% {
        transform: translateY(-50%) translateX(-10px);
    }
}

@media screen and (max-width: 768px) {
    h2.slogan {
        font-size: 1.2rem;
        margin: 0.5rem auto 2rem;
    }
}

.table-wrapper {
    overflow-x: auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
}

th a {
    color: white;
    text-decoration: none;
    transition: opacity 0.2s;
}

th a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

th:first-child,
td:first-child {
    position: sticky;
    left: 0;
    /* background: inherit; */
    z-index: 1;
}

tr:nth-child(even) {
    background-color: #fafafa;
}

tr:hover {
    background-color: var(--hover-color);
}

footer {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

footer p {
    margin: 0.5rem 0;
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    h1 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    th, td {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}

/* 添加检查标记的样式 */
td:contains("✓") {
    color: #4CAF50;
    font-weight: bold;
}

td:contains("✗") {
    color: #f44336;
    font-weight: bold;
}
