* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Comic Sans MS', cursive, sans-serif; /* The least professional font */
}

body {
    background-color: #ffccf9;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff69b4' fill-opacity='0.2'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    color: #333;
}

header {
    text-align: center;
    padding: 2rem;
    background-color: #ff69b4;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
    transform: rotate(-1deg);
}

h1 {
    font-size: 3rem;
    text-shadow: 3px 3px 0 #333;
    letter-spacing: -1px;
    transform: rotate(1deg);
}

.tagline {
    font-style: italic;
    margin-top: 1rem;
    font-size: 1.2rem;
}

.language-selector {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.language-selector button {
    background-color: white;
    border: 2px solid #333;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.language-selector button.active {
    background-color: #333;
    color: white;
}

.cat-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 1rem;
}

.cat-card {
    width: 300px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    cursor: pointer;
}

.cat-card:hover {
    transform: scale(1.05) rotate(0) !important;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.cat-number {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 50px;
    height: 50px;
    background-color: #ff69b4;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.cat-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px dashed #ff69b4;
}

.cat-card h2 {
    padding: 1rem;
    text-align: center;
    color: #ff69b4;
    font-size: 1.5rem;
}

footer {
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
    background-color: #ff69b4;
    color: white;
    transform: rotate(1deg);
}

.disclaimer {
    font-size: 0.8rem;
    margin-top: 1rem;
    font-style: italic;
}

/* Totally unnecessary animation because why not */
@keyframes wiggle {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(1deg); }
    50% { transform: rotate(0deg); }
    75% { transform: rotate(-1deg); }
    100% { transform: rotate(0deg); }
}

h1:hover {
    animation: wiggle 0.5s infinite;
}

/* Make the site somewhat responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .cat-card {
        width: 280px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }
    
    .cat-container {
        gap: 1rem;
    }
    
    .cat-card {
        width: 100%;
    }
}

.sparkle {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    opacity: 0.7;
    z-index: 9999;
    animation: fade 1s forwards;
}

@keyframes fade {
    0% { transform: scale(0); opacity: 0.7; }
    100% { transform: scale(1); opacity: 0; }
}