
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@700&family=Open+Sans:wght@400;700&display=swap');
body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(135deg, #1E1E1E, #000000);
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 191, 255, 0.1), rgba(0, 0, 0, 0));
    opacity: 0.5;
    z-index: -1;
    pointer-events: none;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.header {
    text-align: center;
    padding: 40px 0;
    background: linear-gradient(45deg, #00BFFF, #8A2BE2);
    color: #000;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}
.module {
    background-color: #000000;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease-in-out;
}
.module:hover {
    transform: translateY(-5px);
}
img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 10px;
}
h1, h2, h3 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: bold;
    color: #00BFFF;
    margin-top: 0;
}
p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}
pre {
    background-color: #1E1E1E;
    padding: 15px;
    border-radius: 5px;
    overflow-x: auto;
    font-family: 'Courier New', monospace;
    color: #00FF7F;
    font-size: 0.9rem;
}
code {
    background-color: #1E1E1E;
    padding: 2px 5px;
    border-radius: 3px;
    color: #00FF7F;
}
ul, ol {
    padding-left: 20px;
}
li {
    margin-bottom: 10px;
}
button {
    background: linear-gradient(135deg, #00BFFF, #8A2BE2);
    border: none;
    color: #000;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}
button:hover {
    transform: scale(1.1);
}
@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
    }
    pre {
        font-size: 0.8rem;
    }
    .header {
        font-size: 1.5rem;
    }
}
@media (max-width: 480px) {
    .header {
        padding: 20px 0;
        font-size: 1.2rem;
    }
    p {
        font-size: 0.9rem;
    }
}

