
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #00008B, #4B0082);
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
header {
    background: linear-gradient(90deg, #00008B, #00FFFF);
    padding: 20px 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
header h1 {
    font-size: 2rem;
    margin: 0;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}
.section {
    background: linear-gradient(135deg, #1E90FF, #4B0082);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.4);
}
.section h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #00FFFF;
}
.section p {
    font-size: 1rem;
    color: #ffffff;
}
.article-container {
    background: linear-gradient(135deg, #00008B, #4B0082);
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}
.article-container h2 {
    font-size: 1.8rem;
    color: #00FFFF;
    margin-bottom: 15px;
}
.article-container pre,
.article-container code {
    background: #000000;
    color: #00FFFF;
    padding: 10px;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    overflow-x: auto;
}
.article-container table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}
.article-container th,
.article-container td {
    border: 1px solid #ffffff;
    padding: 10px;
    text-align: left;
}
.article-container th {
    background: #00FFFF;
    color: #000000;
}
.project-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.project-item {
    background: linear-gradient(135deg, #1E90FF, #4B0082);
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.project-item h3 {
    font-size: 1.2rem;
    color: #00FFFF;
    margin-bottom: 10px;
}
.project-item p {
    font-size: 0.9rem;
    color: #ffffff;
}
.footer {
    text-align: center;
    padding: 10px;
    background: linear-gradient(90deg, #00008B, #00FFFF);
    margin-top: auto;
}
.footer p {
    margin: 0;
    font-size: 0.9rem;
    color: #ffffff;
}
@media (max-width: 768px) {
    header h1 {
        font-size: 1.5rem;
    }
    .section h2 {
        font-size: 1.2rem;
    }
    .article-container h2 {
        font-size: 1.5rem;
    }
    .project-item h3 {
        font-size: 1rem;
    }
}
@media (max-width: 400px) {
    .container,
    .project-list {
        grid-template-columns: 1fr;
    }
    .article-container pre,
    .article-container code {
        font-size: 0.8rem;
    }
}

