.kid-notices-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.kid-notice-card {
    width: 300px;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    font-family: 'Comic Sans MS', sans-serif; /* Fun kid font */
    color: #fff;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.kid-notice-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255,255,255,0.8);
}

.kid-notice-thumbnail {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.date-time {
    font-weight: bold;
    margin: 5px 0;
}

/* Pre-built Styles */
.cosmic-glow {
    background: linear-gradient(to bottom, #0d0d3d, #4b0082);
    animation: glow 2s infinite alternate;
}

.science-sparkle {
    background: linear-gradient(to bottom, #228b22, #ffd700);
    animation: sparkle 1.5s infinite;
}

.mystery-magic {
    background: linear-gradient(to bottom, #ff4500, #8b0000);
    animation: pulse 2s infinite;
}

.fun-rainbow {
    background: linear-gradient(45deg, red, orange, yellow, green, blue, indigo, violet);
    animation: rainbow 5s infinite;
}

.scrolling-alert {
    background: #ffff00;
    color: #000;
    overflow: hidden;
    white-space: nowrap;
    animation: scroll 10s linear infinite;
}

/* Animations */
@keyframes glow {
    from { box-shadow: 0 0 10px #fff; }
    to { box-shadow: 0 0 20px #4b0082; }
}

@keyframes sparkle {
    0% { background-position: 0 0; }
    100% { background-position: 0 100%; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

@keyframes rainbow {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}