
body {
    background: linear-gradient(to right, #0A2463, #3B82F6);
    color: white;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}
h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    margin: 20px 0;
}
h1 {
    text-align: center;
    background: linear-gradient(to right, #3B82F6, #0A2463);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
p {
    font-size: 16px;
    margin: 10px 0;
    line-height: 1.5;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    gap: 20px;
}
.tabs {
    display: flex;
    justify-content: space-around;
    border-bottom: 2px solid #2D3748;
}
.tab-item {
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.tab-item.active {
    background: linear-gradient(to bottom, #3B82F6, #0A2463);
    border-radius: 8px 8px 0 0;
}
.tab-content {
    background-color: #2D3748;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    min-height: 300px;
    animation: slideIn 0.5s ease-in-out;
}
@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}
.card {
    background-color: #2D3748;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
    color: white;
}
.button {
    background: linear-gradient(to right, #3B82F6, #0A2463);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.button:hover {
    transform: scale(1.05);
    background-color: #3B82F6;
}
code {
    background-color: #0A2463;
    color: #3B82F6;
    padding: 5px;
    border-radius: 3px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
}
pre {
    background-color: #2D3748;
    padding: 15px;
    border-radius: 8px;
    overflow-x: auto;
}
img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 10px 0;
}
@media (max-width: 768px) {
    .tabs {
        flex-direction: column;
    }
    .tab-item {
        width: 100%;
        text-align: center;
    }
    .container {
        grid-template-columns: 1fr;
    }
}

