body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    margin: 0;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h1 {
    font-size: 2.5rem;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

ul {
    list-style-type: none;
    padding: 0;
    width: 100%;
    max-width: 600px;
}

li {
    background-color: white;
    margin: 10px 0;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

li:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

li:nth-child(1) { border-left: 5px solid #ff6b6b; }
li:nth-child(2) { border-left: 5px solid #4ecdc4; }
li:nth-child(3) { border-left: 5px solid #45b7d1; }
li:nth-child(4) { border-left: 5px solid #f7b731; }
li:nth-child(5) { border-left: 5px solid #5c7cfa; }
li:nth-child(6) { border-left: 5px solid #ff8787; }
li:nth-child(7) { border-left: 5px solid #69db7c; }
li:nth-child(8) { border-left: 5px solid #ffa94d; }
li:nth-child(9) { border-left: 5px solid #74c0fc; }
li:nth-child(10) { border-left: 5px solid #b197fc; }

#confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
}

@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    h1 {
        font-size: 2rem;
    }

    ul {
        max-width: 100%;
    }

    li {
        font-size: 0.9rem;
    }
}