
body {
    font-family: 'Roboto Condensed', sans-serif;
    background-color: #050505;
    color: #eee;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Fira Code', monospace;
    font-weight: bold;
    color: #00f7ff;
    text-shadow: 0 0 10px rgba(0, 247, 255, 0.8);
    margin-bottom: 0.5em;
}

h2 {
    font-size: 2.2em;
    margin-top: 1.5em;
}

h3 {
    font-size: 1.8em;
    margin-top: 1.2em;
}

p {
    margin-bottom: 1em;
    color: #ddd;
}

a {
    color: #00bfff;
    text-decoration: none;
}

a:hover {
    color: #00ffff;
}

pre {
    background-color: #111;
    color: #ddd;
    padding: 15px;
    border-radius: 8px;
    overflow-x: auto;
    tab-size: 4;
    font-family: 'Fira Code', monospace;
    line-height: 1.4;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5) inset;
    border: 1px solid #333;
}

code {
    font-family: 'Fira Code', monospace;
    color: #ffcc66;
}

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

.header {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
    padding: 30px 0;
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #00f7ff;
    box-shadow: 0 2px 10px rgba(0, 247, 255, 0.2);
}

.header h1 {
    font-size: 3em;
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section {
    margin-bottom: 40px;
    padding: 30px;
    background-color: rgba(20, 20, 20, 0.7);
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
    border: 1px solid #333;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background-color: #00f7ff;
}

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

.grid-item {
    background-color: rgba(30, 30, 30, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    border: 1px solid #444;
}

.grid-item h3 {
    margin-top: 0;
    font-size: 1.6em;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
    margin-top: 20px;
}

.image-grid img {
    width: 100%;
    border-radius: 8px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.image-grid img:hover {
    opacity: 1;
}

.code-block {
    margin-top: 20px;
    border-left: 4px solid #00f7ff;
    padding: 15px;
    background-color: rgba(15, 15, 15, 0.9);
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4) inset;
}

.code-block pre {
    margin: 0;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
    border: none;
}

.article-section {
    background-color: rgba(15, 15, 15, 0.9);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
    border: 1px solid #444;
    margin-bottom: 40px;
}

.article-section h2 {
    border-bottom: 2px solid #00bfff;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.article-section h3 {
    color: #00ffff;
    margin-top: 1.5em;
    border-bottom: 1px dashed #555;
    padding-bottom: 5px;
}

.article-section ul {
    padding-left: 25px;
    list-style-type: square;
}

.article-section li {
    margin-bottom: 8px;
}

.footer {
    text-align: center;
    padding: 20px 0;
    background-color: rgba(0, 0, 0, 0.9);
    border-top: 1px solid #333;
    color: #aaa;
    font-size: 0.9em;
}

@media screen and (max-width: 768px) {
    .container {
        width: 98%;
        padding: 15px;
    }

    .header h1 {
        font-size: 2.5em;
    }

    .section {
        padding: 20px;
    }

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

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

    .section {
        padding: 15px;
    }
}

@media screen and (max-width: 320px) {
    .header h1 {
        font-size: 1.8em;
    }
    .section {
        padding: 10px;
    }
}

