
body {
    margin: 0;
    font-family: 'Lato', sans-serif;
    color: #ffffff;
    background: linear-gradient(135deg, #0a192f, #2c3e50, #4361ee);
    background-size: 300% 300%;
    animation: gradientBG 15s ease infinite;
    line-height: 1.6;
    padding: 20px;
    overflow-x: hidden;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

h1, h2, h3 {
    font-family: 'Roboto Condensed', sans-serif;
    color: #ffd700;
    margin-top: 20px;
    margin-bottom: 10px;
}

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

pre {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-radius: 8px;
    overflow-x: auto;
    font-size: 14px;
    color: #00ff00;
    margin: 15px 0;
}

code {
    font-family: 'Courier New', Courier, monospace;
    color: #ff8c00;
}

.tab {
    display: flex;
    justify-content: space-around;
    background-color: #1c2541;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.tab button {
    padding: 10px 20px;
    border: none;
    background-color: transparent;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.tab button:hover {
    background-color: #4361ee;
    transform: scale(1.1);
}

.tab button.active {
    background-color: #ff8c00;
    box-shadow: 0 0 10px #ff8c00;
}

.tab-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
}

.tab-content.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .tab {
        flex-direction: column;
    }

    .tab button {
        width: 100%;
        text-align: left;
        margin-bottom: 10px;
    }
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

svg.icon {
    fill: currentColor;
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

svg.icon:hover {
    transform: scale(1.2);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    overflow: hidden;
}

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

th {
    background-color: #1c2541;
    color: #ffd700;
}

tr:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

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

.card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.card h3 {
    margin-top: 0;
}

.card p {
    font-size: 15px;
}

.tip {
    text-align: center;
    font-size: 14px;
    color: #aaa;
    margin-top: 20px;
}

