
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
}
.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1440px;
    margin: 0 auto;
}
.header {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 1;
}
.header h1 {
    font-size: 2.5rem;
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
}
.header p {
    font-size: 1.2rem;
    color: #a8b3ff;
    margin-top: 10px;
}
.section {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    transition: transform 0.3s ease-in-out;
}
.section:hover {
    transform: translateY(-10px);
}
.image-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.image-container img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}
.image-container img:hover {
    transform: scale(1.1);
}
.article {
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    line-height: 1.6;
    font-size: 1rem;
}
.article h2, .article h3 {
    color: #00ffff;
    margin-top: 20px;
}
.article pre {
    background: rgba(0, 0, 0, 0.9);
    padding: 10px;
    border-radius: 5px;
    color: #00ff00;
    overflow-x: auto;
}
.footer {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    margin-top: 20px;
    font-size: 0.9rem;
    color: #ccc;
}
@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
    }
    .header h1 {
        font-size: 2rem;
    }
    .header p {
        font-size: 1rem;
    }
    .article pre {
        font-size: 0.8rem;
    }
}

