
:root {
    --primary-color: #00008b;
    --secondary-color: #4b0082;
    --accent-color: #00ff7f;
    --text-color: #ffffff;
    --background-gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: var(--background-gradient);
    color: var(--text-color);
    line-height: 1.6;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    text-align: center;
    margin-bottom: 40px;
}

header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    letter-spacing: 2px;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1400px;
}

.module {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.module:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

article {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    max-width: 100%;
    overflow-wrap: break-word;
}

article h2, article h3 {
    color: var(--accent-color);
    margin-top: 20px;
}

article pre {
    background: #1c1c1c;
    padding: 15px;
    border-radius: 8px;
    overflow-x: auto;
}

article code {
    color: #00ff7f;
    font-family: 'Courier New', monospace;
}

footer {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    header h1 {
        font-size: 36px;
    }

    .container {
        grid-template-columns: 1fr;
    }

    article {
        padding: 15px;
    }
}

@keyframes particles {
    0% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 0; }
}

.particle {
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: var(--accent-color);
    border-radius: 50%;
    animation: particles 3s infinite;
}

