
:root {
    --primary-color: #00008b;
    --secondary-color: #9400d3;
    --accent-color: #ffeb3b;
    --hover-color: #ff6f00;
    --text-color: #ffffff;
    --body-bg: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --code-bg: rgba(255, 255, 255, 0.1);
    --code-text: #e0e0e0;
    --border-radius: 12px;
}

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

body {
    font-family: 'Roboto', sans-serif;
    background: var(--body-bg);
    color: var(--text-color);
    line-height: 1.6;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    font-size: 24px;
    font-weight: bold;
    color: var(--accent-color);
}

main {
    margin-top: 80px;
    max-width: 1200px;
    width: 100%;
    padding: 20px;
}

section {
    margin-bottom: 40px;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: var(--border-radius);
}

h2, h3, h4 {
    color: var(--accent-color);
    margin-bottom: 15px;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 24px;
}

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

pre {
    background: var(--code-bg);
    padding: 15px;
    border-radius: var(--border-radius);
    overflow-x: auto;
}

code {
    color: var(--code-text);
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

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

th, td {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px;
    text-align: left;
}

th {
    background: rgba(0, 0, 0, 0.3);
    color: var(--accent-color);
}

td {
    background: rgba(0, 0, 0, 0.2);
}

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

.button {
    background: var(--accent-color);
    color: #000;
    padding: 10px 20px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button:hover {
    background: var(--hover-color);
}

.icon {
    fill: var(--accent-color);
    transition: fill 0.3s ease;
}

.icon:hover {
    fill: #ffeb3b;
}

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

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 20px;
    }

    p, code {
        font-size: 14px;
    }
}

