
:root {
    --background-color: #121212;
    --primary-color: #0074D9;
    --secondary-color: #39FF14;
    --accent-color: #FFA500;
    --text-color: #E0E0E0;
    --card-bg: #282828;
    --shadow-color: rgba(0, 0, 0, 0.2);
    --border-radius: 8px;
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, var(--background-color), #1E1E1E);
    color: var(--text-color);
    line-height: 1.6;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: #fff;
    font-size: 1.2rem;
    box-shadow: 0 4px 6px var(--shadow-color);
}

main {
    padding: 20px;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card {
    background: var(--card-bg);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px var(--shadow-color);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px var(--shadow-color);
}

h1, h2, h3 {
    color: var(--primary-color);
    font-weight: bold;
}

h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
}

h2 {
    font-size: 2rem;
    margin-top: 0;
}

h3 {
    font-size: 1.5rem;
}

p {
    font-size: 1rem;
    line-height: 1.6;
}

pre {
    background: #1E1E1E;
    padding: 15px;
    border-radius: var(--border-radius);
    overflow-x: auto;
    font-family: 'Courier New', monospace;
    color: var(--secondary-color);
}

code {
    color: var(--accent-color);
    font-family: 'Courier New', monospace;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
}

th, td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #333;
}

th {
    background: var(--primary-color);
    color: #fff;
}

button {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

button:hover {
    transform: scale(1.05);
    background: var(--secondary-color);
}

ul {
    list-style: none;
    padding: 0;
}

li {
    margin: 10px 0;
    position: relative;
    padding-left: 20px;
}

li::before {
    content: '•';
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    main {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    pre {
        font-size: 0.9rem;
    }
}

@media (max-width: 400px) {
    h1 {
        font-size: 1.5rem;
    }

    p, li {
        font-size: 0.9rem;
    }
}

