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

body {
    font-family: 'Comic Sans MS', 'Arial Rounded MT Bold', cursive, sans-serif;
    background: #fff5e6;
    color: #333;
}

.hero {
    background: linear-gradient(45deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    padding: 100px 20px;
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.hero h1 {
    font-size: 4em;
    margin-bottom: 20px;
    animation: bounce 2s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.tagline {
    font-size: 1.5em;
    font-weight: normal;
}

section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

section h2 {
    text-align: center;
    font-size: 2.5em;
    color: #ff6b6b;
    margin-bottom: 40px;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: scale(1.05) rotate(2deg);
}

.card-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    font-size: 1.5em;
    color: #48dbfb;
    margin-bottom: 10px;
}

.card-content p {
    font-size: 1em;
    color: #666;
    line-height: 1.6;
}

.gif-section {
    background: #fff;
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gif-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.gif-box {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.gif-box img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

footer {
    background: #ff6b6b;
    color: white;
    text-align: center;
    padding: 30px;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5em;
    }

    .tagline {
        font-size: 1.2em;
    }

    section h2 {
        font-size: 2em;
    }
}
