
body {
    margin: 0;
    font-family: 'Roboto Mono', monospace;
    background: linear-gradient(to bottom, #000000, #2C3E50);
    color: #ECF0F1;
    line-height: 1.6;
    overflow-x: hidden;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

header h1 {
    margin: 0;
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    color: #8E44AD;
    text-align: center;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 80px;
    padding: 20px;
}

.content-box {
    max-width: 1200px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.content-box:hover {
    transform: translateY(-5px);
}

h2, h3 {
    font-family: 'Orbitron', sans-serif;
    color: #8E44AD;
    margin-top: 20px;
}

p {
    font-size: 16px;
    color: #ECF0F1;
    margin-bottom: 15px;
}

code {
    display: block;
    background: #1A1A1A;
    color: #1ABC9C;
    padding: 10px;
    border-radius: 5px;
    font-family: 'Roboto Mono', monospace;
    overflow-x: auto;
    white-space: pre-wrap;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

table th, table td {
    border: 1px solid #34495E;
    padding: 10px;
    text-align: left;
    color: #ECF0F1;
}

button {
    background-color: #3498DB;
    border: none;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background-color: #8E44AD;
    transform: scale(1.1);
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 10px 0;
}

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

    .content-box {
        padding: 15px;
    }

    code {
        font-size: 14px;
    }
}

