
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: radial-gradient(circle, rgba(25, 25, 112, 0.9), rgba(47, 0, 136, 0.8));
    color: #fff;
    overflow-x: hidden;
}

header {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #0000FF, #8A2BE2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

header h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #FFD700;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

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

.glass-effect {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.glass-effect:hover {
    transform: translateY(-5px);
}

.section-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ADFF2F;
    margin-bottom: 1rem;
}

p {
    line-height: 1.6;
    letter-spacing: 0.5px;
    color: #f0f8ff;
}

pre {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 10px;
    overflow-x: auto;
    font-size: 0.9rem;
    color: #00ff7f;
}

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

table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

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

th {
    background: rgba(138, 43, 226, 0.5);
    color: #fff;
    font-weight: bold;
}

td {
    color: #dcdcdc;
}

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

.animation-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.background-lines {
    position: absolute;
    width: 200%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        rgba(0, 255, 127, 0.1),
        rgba(0, 255, 127, 0.1) 10px,
        transparent 10px,
        transparent 20px
    );
    animation: move 10s infinite linear;
}

@keyframes move {
    from { transform: translateY(0); }
    to { transform: translateY(-100px); }
}

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

    .container {
        grid-template-columns: 1fr;
    }

    pre {
        font-size: 0.8rem;
    }
}

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

    .section-title {
        font-size: 1.5rem;
    }
}

footer {
    text-align: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    color: #ccc;
    font-size: 0.9rem;
}

