body {
    background: linear-gradient(135deg, #e8f5e9, #f5f7e8, #fffde7);
    background-size: 200% 200%;
    color: #1b5e20;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
}

/* Eid Decorative Elements */
body::before {
    content: "🌙";
    font-size: 150px;
    position: absolute;
    top: 10px;
    left: 10px;
    opacity: 0.2;
    color: #ffd700;
}
body::after {
    content: "✨";
    font-size: 120px;
    position: absolute;
    bottom: 10px;
    right: 10px;
    opacity: 0.2;
    color: #ffd700;
    animation: sparkle 2s infinite;
}
@keyframes sparkle {
    0% { opacity: 0.2; }
    50% { opacity: 0.5; }
    100% { opacity: 0.2; }
}

h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-top: 30px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
    color: #ffd700;
}

h2 {
    font-size: 2.2rem;
    font-weight: bold;
    margin-top: 25px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
    color: #1b5e20;
}

.container {
    margin-top: 60px;
}

.names-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 30px;
    margin-bottom: 40px;
    border: 2px solid #ffd700;
    box-shadow: 0 10px 30px rgba(27, 94, 32, 0.2);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.names-container:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

.list-group-item {
    background: rgba(232, 245, 233, 0.8);
    border: 1px solid #ffd700;
    color: #1b5e20;
    margin-bottom: 15px;
    border-radius: 15px;
    padding: 15px;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
}
.list-group-item:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateX(10px);
    color: #1b5e20;
}

footer {
    margin-top: 60px;
    padding: 30px;
    background: linear-gradient(135deg, #1b5e20, #0d3b1e);
    text-align: center;
    font-size: 1.1rem;
    color: #ffd700;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
    border-radius: 20px 20px 0 0;
}

.eid-header {
    padding: 25px;
    background: linear-gradient(45deg, #ffd700, #ffca28, #1b5e20);
    background-size: 200% 200%;
    border-radius: 25px;
    margin-bottom: 50px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    animation: glow 5s ease-in-out infinite;
}
@keyframes glow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.8rem; }
    .names-container { padding: 20px; }
    .list-group-item { padding: 10px; }
    body::before { font-size: 100px; }
    body::after { font-size: 80px; }
}