
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&display=swap');

body {
    margin: 0;
    font-family: 'Roboto Mono', monospace;
    background: linear-gradient(135deg, #0a0a0a, #121212);
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

header {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #1e1e1e, #2c2c2c);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

header h1 {
    font-size: 2.5rem;
    color: #ff9800;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.card {
    background: linear-gradient(135deg, #1e1e1e, #2c2c2c);
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
    z-index: -1;
}

.card img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.card h2 {
    font-size: 1.5rem;
    color: #4caf50;
    margin-bottom: 0.5rem;
}

.card p {
    font-size: 1rem;
    color: #b0bec5;
    margin-bottom: 1rem;
}

.code-block {
    background: #1e1e1e;
    color: #64ffda;
    padding: 1rem;
    border-radius: 5px;
    overflow-x: auto;
    font-family: 'Roboto Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.4;
    white-space: pre-wrap;
}

.table-container {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

table th, table td {
    padding: 0.8rem;
    text-align: left;
    border: 1px solid #455a64;
    color: #b0bec5;
}

table th {
    background: #263238;
    color: #ffffff;
}

footer {
    text-align: center;
    padding: 1rem;
    background: #121212;
    color: #607d8b;
    font-size: 0.9rem;
}

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

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

    .card h2 {
        font-size: 1.2rem;
    }
}

