
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #121212, #2c2c2c);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

header {
    background: linear-gradient(90deg, #000000, #1e1e1e);
    padding: 40px 20px;
    text-align: center;
    position: relative;
}

header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    margin: 0;
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
}

header p {
    font-size: 1.2rem;
    color: #a8b3ff;
    margin-top: 10px;
}

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

.module {
    background: linear-gradient(135deg, #1e1e1e, #2c2c2c);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

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

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

.module h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #ff00ff;
    margin-top: 0;
}

.module p {
    color: #dcdcdc;
    font-size: 1rem;
}

.highlight {
    color: #00ffff;
    font-weight: bold;
}

code {
    background: rgba(0, 255, 255, 0.1);
    padding: 5px 10px;
    border-radius: 5px;
    font-family: 'Roboto Mono', monospace;
    font-size: 0.9rem;
    display: inline-block;
}

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

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: linear-gradient(135deg, #2c2c2c, #1e1e1e);
    border-radius: 8px;
    overflow: hidden;
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

th {
    background: linear-gradient(90deg, #000000, #1e1e1e);
    color: #00ffff;
    font-family: 'Orbitron', sans-serif;
}

td {
    color: #dcdcdc;
}

.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

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

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

    code {
        font-size: 0.8rem;
    }
}

