* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    position: relative;
}

.container {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    width: 100%;
    margin: auto;
}

.question {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
    font-weight: bold;
}

.buttons-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
    position: relative;
    min-height: 80px;
}

.btn {
    padding: 15px 40px;
    font-size: 1.2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.2s, box-shadow 0.2s;
    min-width: 120px;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.yes-btn {
    background-color: #4CAF50;
    color: white;
}

.yes-btn:hover {
    background-color: #45a049;
}

.no-btn {
    background-color: #f44336;
    color: white;
    position: fixed;
    transition: all 0.2s ease;
    z-index: 1000;
    pointer-events: auto;
}

.no-btn:hover {
    background-color: #da190b;
}

.cat-message {
    margin-top: 30px;
    padding: 20px;
    animation: fadeIn 0.5s ease-in;
}

.cat-message.hidden {
    display: none;
}

.cat-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cat-text {
    font-size: 1.5rem;
    color: #333;
    font-weight: bold;
}

.success-message {
    margin-top: 30px;
    padding: 20px;
    animation: fadeIn 0.5s ease-in;
}

.success-message.hidden {
    display: none;
}

.success-message h2 {
    font-size: 2rem;
    color: #4CAF50;
    margin-bottom: 15px;
}

.success-message p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 30px;
}

.share-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.share-btn {
    padding: 12px 30px;
    font-size: 1rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    color: white;
    transition: transform 0.2s, box-shadow 0.2s;
    width: 100%;
    max-width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.share-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.whatsapp {
    background-color: #25D366;
}

.whatsapp:hover {
    background-color: #20ba5a;
}

.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.instagram:hover {
    opacity: 0.9;
}

.tiktok {
    background-color: #000000;
}

.tiktok:hover {
    background-color: #333333;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer {
    margin-top: auto;
    margin-bottom: 20px;
    text-align: center;
    color: white;
    font-size: 0.9rem;
    opacity: 0.9;
    width: 100%;
}

.footer p {
    margin: 0;
}

.footer a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: opacity 0.2s;
}

.footer a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

@media (max-width: 600px) {
    .question {
        font-size: 2rem;
    }
    
    .btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .footer {
        font-size: 0.8rem;
    }
}
