body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f5f5f5;
    font-family: Arial, sans-serif;
}

.container {
    text-align: center;
}

.danger-button {
    padding: 20px 40px;
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(145deg, #ff3333, #ff0000);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 51, 51, 0.3),
        inset 0 -2px 5px rgba(0, 0, 0, 0.2);
    transition: all .3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    animation: pulse .5s infinite;
}

.danger-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 51, 51, 0.4);
    background: linear-gradient(145deg, #ff0000, #ff1a1a);
}

.danger-button:active {
    transform: translateY(2px);
    box-shadow: 0 2px 10px rgba(255, 51, 51, 0.3);
}

.danger-button::before {
    content: "No querrás hacerlo";
    position: absolute;
    background-color: #000000;
    color: #ff3333;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    top: -60px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.danger-button::after {
    content: "";
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    border: 10px solid transparent;
    border-top-color: #000000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.danger-button:hover::before,
.danger-button:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.945);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 51, 51, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 51, 51, 0);
    }
}

.warning-text {
    margin-top: 15px;
    color: #666;
    font-size: 16px;
}

.hidden {
    display: none !important;
}

.meme-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    max-width: 80%;
    max-height: 80vh;
}

.message-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.9);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    z-index: 1001;
}

.message-text {
    color: white;
    font-size: 20px;
    margin: 0;
}