
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #4682B4, #87CEEB);
    color: white;
    overflow-x: hidden;
}
header {
    text-align: center;
    padding: 50px 20px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    transform: skewY(-2deg);
    position: relative;
    z-index: 1;
}
header h1 {
    font-size: 3rem;
    transform: skewY(2deg);
    animation: neonGlow 3s ease-in-out infinite alternate;
}
@keyframes neonGlow {
    0% { text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px #4682B4, 0 0 40px #4682B4; }
    100% { text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #87CEEB, 0 0 50px #87CEEB; }
}
.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}
.card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    padding: 20px;
    transition: transform 0.3s ease;
}
.card:hover {
    transform: translateY(-10px);
}
.card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}
.data-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.data-list li {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 5px;
    transition: background 0.3s ease;
}
.data-list li:hover {
    background: rgba(255, 255, 255, 0.2);
}
.article {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    font-size: 1rem;
    line-height: 1.6;
}
.article h2, .article h3 {
    color: #87CEEB;
}
.article pre {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 5px;
    overflow-x: auto;
}
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    .container {
        grid-template-columns: 1fr;
    }
}

