
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #0A192F, #142850);
    color: #FFFFFF;
    line-height: 1.6;
}
header {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(45deg, #64FFDA, #7B61FF);
    color: #0A192F;
    font-size: 2rem;
    font-weight: bold;
    position: relative;
    overflow: hidden;
}
header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(-45deg);
    animation: headerEffect 10s infinite linear;
}
@keyframes headerEffect {
    from { transform: rotate(-45deg) translateX(-100%); }
    to { transform: rotate(-45deg) translateX(100%); }
}
.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}
.section {
    background: linear-gradient(135deg, #0A192F, #142850);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}
.section:hover {
    transform: translateY(-10px);
}
h2 {
    font-size: 1.8rem;
    color: #64FFDA;
    margin-bottom: 15px;
}
h3 {
    font-size: 1.4rem;
    color: #7B61FF;
    margin-bottom: 10px;
}
p {
    font-size: 1rem;
    color: #D3D3D3;
    margin-bottom: 15px;
}
ul, ol {
    margin-left: 20px;
    margin-bottom: 15px;
}
code {
    background: #1E2D4B;
    color: #64FFDA;
    padding: 2px 5px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
}
pre {
    background: #1E2D4B;
    color: #64FFDA;
    padding: 15px;
    border-radius: 8px;
    overflow-x: auto;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}
th, td {
    border: 1px solid #333;
    padding: 10px;
    text-align: left;
    color: #D3D3D3;
}
th {
    background: #0A192F;
    color: #64FFDA;
}
img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}
button {
    background: linear-gradient(45deg, #64FFDA, #7B61FF);
    color: #0A192F;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 1rem;
    transition: transform 0.2s ease-in-out;
}
button:hover {
    transform: scale(1.1);
}
.scroll-triggered {
    animation: fadeIn 0.8s ease-in-out forwards;
    opacity: 0;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px) {
    header {
        font-size: 1.5rem;
        padding: 20px;
    }
    h2 {
        font-size: 1.5rem;
    }
    h3 {
        font-size: 1.2rem;
    }
    p, ul, ol {
        font-size: 0.9rem;
    }
}

