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

body {
    margin: 0;
    padding: 0;
    background: radial-gradient(circle at center, #1E1E1E, #0F0F0F);
    color: #FFFFFF;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

header {
    background: linear-gradient(135deg, #6A5ACD, #00CED1);
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3em;
    font-weight: 700;
    margin: 0;
    color: #FFFFFF;
    text-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1), transparent);
    animation: aurora-move 15s linear infinite;
}

@keyframes aurora-move {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.article-section, .gallery-section {
    background: rgba(30, 30, 30, 0.8);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.5);
}

.article-section h2, .gallery-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2em;
    color: #6A5ACD;
    margin-bottom: 20px;
}

.article-section h3, .gallery-section h3 {
    font-family: 'Roboto Mono', monospace;
    font-size: 1.5em;
    color: #00CED1;
    margin-top: 30px;
    margin-bottom: 10px;
}

.article-section p, .gallery-section p {
    font-family: 'Open Sans', sans-serif;
    color: #BDBDBD;
    margin-bottom: 20px;
}

.article-section pre, .gallery-section pre {
    background: #2E2E2E;
    padding: 15px;
    border-radius: 5px;
    overflow-x: auto;
}

.article-section code, .gallery-section code {
    font-family: 'Roboto Mono', monospace;
    color: #00CED1;
}

.article-section table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.article-section table, .article-section th, .article-section td {
    border: 1px solid #6A5ACD;
}

.article-section th, .article-section td {
    padding: 10px;
    text-align: left;
}

.gallery-section .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.gallery-section img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.gallery-section img:hover {
    transform: scale(1.05);
}

.footer {
    background: #1E1E1E;
    text-align: center;
    padding: 20px;
    color: #BDBDBD;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 1440px) {
    header h1 {
        font-size: 2.5em;
    }
    .container {
        max-width: 1100px;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
    }
}

@media (max-width: 1024px) {
    .container {
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }
    .container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.5em;
    }
    .article-section, .gallery-section {
        padding: 20px;
    }
}

@media (max-width: 320px) {
    header h1 {
        font-size: 1.2em;
    }
    .article-section h2, .gallery-section h2 {
        font-size: 1.5em;
    }
}

