/* Funky Grooovy Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Comic Sans MS', 'Courier New', monospace;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #00f2fe 100%);
    background-size: 400% 400%;
    animation: groovyGradient 15s ease infinite;
    min-height: 100vh;
    padding: 2rem;
    color: #fff;
}

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

h1 {
    font-size: 4rem;
    text-align: center;
    margin: 2rem 0;
    text-shadow: 
        3px 3px 0 #ff00de,
        6px 6px 0 #00ffff,
        9px 9px 0 #ffff00;
    animation: funkySway 3s ease-in-out infinite;
    letter-spacing: 0.5rem;
}

@keyframes funkySway {
    0%, 100% { transform: rotate(-2deg) scale(1); }
    50% { transform: rotate(2deg) scale(1.05); }
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin: 2rem 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

ul {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
}

li {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    animation: floatIn 0.6s ease-out backwards;
}

li:nth-child(odd) {
    transform: rotate(-1deg);
}

li:nth-child(even) {
    transform: rotate(1deg);
}

li:hover {
    transform: rotate(0deg) scale(1.05) translateY(-10px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
    border-color: #ffff00;
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(50px) rotate(5deg);
    }
}

li:nth-child(1) { animation-delay: 0.1s; }
li:nth-child(2) { animation-delay: 0.2s; }
li:nth-child(3) { animation-delay: 0.3s; }
li:nth-child(4) { animation-delay: 0.4s; }
li:nth-child(5) { animation-delay: 0.5s; }

strong {
    display: block;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #ffff00;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

p {
    font-size: 1.2rem;
    margin: 0.8rem 0;
    line-height: 1.6;
    color: #fff;
}

small {
    display: block;
    margin-top: 0.8rem;
    font-size: 0.9rem;
    color: #00ffff;
    font-style: italic;
}

p:empty {
    display: none;
}

/* Funky message for no activities */
body > p {
    text-align: center;
    font-size: 2rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    max-width: 600px;
    margin: 2rem auto;
    animation: wiggle 1s ease-in-out infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
}
