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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto Mono', monospace;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #ffffff;
    overflow-x: hidden;
}

.header {
    text-align: center;
    padding: 60px 20px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    color: #39ff14;
    text-shadow: 0 0 10px #39ff14, 0 0 20px #39ff14;
    margin-bottom: 20px;
}

.navbar {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.navbar a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    position: relative;
}

.navbar a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #39ff14;
    transition: width 0.3s;
}

.navbar a:hover::after {
    width: 100%;
}

.section {
    padding: 60px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.section:nth-child(even) {
    flex-direction: row-reverse;
}

.section img {
    width: 320px;
    height: 320px;
    object-fit: cover;
    margin: 20px;
    border-radius: 15px;
}

.section-content {
    max-width: 600px;
    margin: 20px;
}

.section-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    color: #ff00ff;
    margin-bottom: 20px;
    text-shadow: 0 0 5px #ff00ff, 0 0 10px #ff00ff;
}

.section-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background: #39ff14;
    color: #000000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    text-decoration: none;
}

.button:hover {
    background: #2eb82e;
    transform: scale(1.05);
}

.article-section {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 20px;
    margin: 40px 0;
    border-radius: 10px;
}

.article-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    color: #ff69b4;
    margin-bottom: 20px;
    text-align: center;
}

.article-section p, .article-section h3, .article-section h4, .article-section table {
    margin-bottom: 20px;
    line-height: 1.6;
}

.article-section pre {
    background: #1e1e1e;
    padding: 15px;
    border-radius: 5px;
    overflow-x: auto;
}

.article-section code {
    color: #39ff14;
}

.article-section table {
    width: 100%;
    border-collapse: collapse;
}

.article-section th, .article-section td {
    border: 1px solid #555;
    padding: 10px;
    text-align: left;
}

.article-section th {
    background: #333;
}

.sample-data {
    background: rgba(0, 0, 0, 0.7);
    padding: 40px 20px;
    border-radius: 10px;
    margin: 40px 0;
}

.sample-data h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    color: #00ffff;
    margin-bottom: 20px;
    text-align: center;
}

.sample-data ul {
    list-style: none;
}

.sample-data li {
    margin-bottom: 20px;
}

.sample-data li h3 {
    font-size: 24px;
    color: #ff6347;
    margin-bottom: 10px;
}

.sample-data li p {
    font-size: 16px;
    line-height: 1.5;
}

.footer {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.footer p {
    font-size: 14px;
    color: #aaa;
}
@media (max-width: 320px) {
    .header h1 {
        font-size: 32px;
    }
    .section-content h2 {
        font-size: 24px;
    }
    .section-content p {
        font-size: 14px;
    }
    .navbar a {
        font-size: 14px;
    }
}
@media (max-width: 480px) {
    .header h1 {
        font-size: 36px;
    }
    .section img {
        width: 280px;
        height: 280px;
    }
}
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
    }
    .section {
        flex-direction: column;
    }
    .section img {
        width: 100%;
        height: auto;
    }
    .section-content {
        max-width: 100%;
    }
}
@media (max-width: 1024px) {
    .header h1 {
        font-size: 40px;
    }
    .section-content h2 {
        font-size: 28px;
    }
}
@media (min-width: 1200px) {
    .section-content h2 {
        font-size: 40px;
    }
}
@media (min-width: 1440px) {
    .header h1 {
        font-size: 52px;
    }
    .section-content h2 {
        font-size: 44px;
    }
}

