
body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #0a0a0a, #1a1a2e);
    color: #f0f0f0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto Slab', serif;
    color: #fff;
    font-weight: bold;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    line-height: 1.2;
}

p {
    line-height: 1.6;
    margin-bottom: 1em;
    color: #d0d0d0;
}

a {
    color: #03dac6;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

ul, ol {
    margin-bottom: 1em;
    padding-left: 20px;
    color: #d0d0d0;
}

li {
    line-height: 1.5;
}

code {
    background-color: #282a36;
    color: #f8f8f2;
    padding: 0.2em 0.4em;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

pre {
    background-color: #282a36;
    color: #f8f8f2;
    padding: 1em;
    border-radius: 5px;
    overflow-x: auto;
    font-family: 'Courier New', monospace;
    line-height: 1.4;
    white-space: pre-wrap;
}

pre code {
    padding: 0;
    background-color: transparent;
    color: #f8f8f2;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1em;
    color: #d0d0d0;
}

th, td {
    border: 1px solid #444;
    padding: 0.5em;
    text-align: left;
}

th {
    background-color: #333;
    font-weight: bold;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    text-align: center;
    padding: 50px 20px;
}

.header h1 {
    font-size: 3em;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 2px 2px 4px #000;
}

.header p {
    font-size: 1.2em;
    color: #aaa;
}

.section {
    padding: 40px 20px;
    margin-bottom: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.section h2 {
    font-size: 2.5em;
    color: #eee;
    margin-bottom: 20px;
    border-bottom: 2px solid #03dac6;
    padding-bottom: 10px;
}

.section h3 {
    font-size: 2em;
    color: #ddd;
    margin-bottom: 15px;
}

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

.grid-item {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.grid-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.12);
}

.grid-item h3 {
    margin-top: 0;
    color: #eee;
}

.image-banner {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.article-section {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.article-section h2 {
    color: #fff;
    border-bottom-color: #34c759;
}

.article-section p, .article-section ul, .article-section ol, .article-section table, .article-section pre {
    color: #ddd;
}

.footer {
    text-align: center;
    padding: 30px 20px;
    color: #888;
    border-top: 1px solid #444;
    margin-top: 50px;
}

.footer p {
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    .header {
        padding: 40px 15px;
    }
    .header h1 {
        font-size: 2.5em;
    }
    .header p {
        font-size: 1em;
    }
    .section {
        padding: 30px 15px;
    }
    .section h2 {
        font-size: 2em;
    }
    .grid-container {
        grid-template-columns: 1fr;
    }
    .article-section {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 2em;
    }
    .section h2 {
        font-size: 1.8em;
    }
}

@media (max-width: 320px) {
    .header h1 {
        font-size: 1.7em;
    }
    .section h2 {
        font-size: 1.6em;
    }
}

