body {
    font-family: Arial, sans-serif;
    margin: 40px;
    background-color: #f4f4f4;
}

.container {
    background: #fff;
    padding: 24px 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    max-width: 500px;
    margin: auto;
}

h1 {
    color: #333;
}

p {
    color: #555;
}

button {
    padding: 8px 16px;
    background: #0078d7;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

    button:hover {
        background: #005fa3;
    }

#funny-cat {
    display: block;
    opacity: 1;
    transition: opacity 0.5s;
    width: 500px;
    margin: 30px auto 0 auto;
}

.animate-cat {
    animation: funnyCatAnim 3s ease;
}

@keyframes funnyCatAnim {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(-720deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

#video-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background: rgba(0,0,0,0.7);
}

.video-content {
    background: #fff;
    margin: 5% auto;
    padding: 20px;
    border-radius: 8px;
    width: 450px;
    position: relative;
    text-align: center;
}

.close {
    position: absolute;
    top: 8px;
    right: 16px;
    font-size: 32px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    z-index: 1001;
}