
body {
    font-family: 'Montserrat', 'Roboto', sans-serif;
    color: #ffffff;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    letter-spacing: 0.5px;
}
h1, h2, h3 {
    color: #ff9800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
a {
    color: #bb86fc;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.module {
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}
.module:hover {
    transform: translateY(-5px);
}
pre {
    background-color: #2c2c2c;
    padding: 15px;
    border-radius: 5px;
    overflow-x: auto;
}
code {
    color: #bb86fc;
    font-size: 14px;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}
th, td {
    border: 1px solid #444;
    padding: 10px;
    text-align: left;
}
th {
    background-color: #333;
    color: #ff9800;
}
img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
    }
    h1, h2, h3 {
        font-size: 1.5rem;
    }
    p, table {
        font-size: 1rem;
    }
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.module {
    animation: fadeIn 0.8s ease-in-out forwards;
    opacity: 0;
}
.header {
    text-align: center;
    padding: 40px 0;
    background: linear-gradient(135deg, #24243e, #302b63);
}
.header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.header p {
    font-size: 1.2rem;
    color: #bb86fc;
}
.footer {
    text-align: center;
    padding: 20px;
    background: #121212;
    color: #888;
    font-size: 0.9rem;
}

