body {
    background-color: #f0f0f0;
    font-family: Verdana;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    min-height: 100vh;
	background-color: #024073;
    background: repeating-linear-gradient(90deg, #ff69b4, #ff69b4 20px, #8a2be2 20px, #8a2be2 40px);
    animation: gradient-shift 4s infinite;
}

.hoja {
    background-color: #42aaff;
    width: 80%;
    max-width: 1100px;
    min-height: 90vh;
    padding: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    border-radius: 2px;
    background: linear-gradient(90deg, #ff69b4, #8a2be2);
    border: 10px solid;
    border-image: linear-gradient(45deg, red, orange, yellow, green, blue, indigo, violet) 1;
    animation: rainbow-border 2s infinite;
    box-shadow: 0 0 20px #ff4500;
    transform: skew(10deg, 5deg);
    animation: skew-and-pulse 3s infinite;
}

.content {
    color: #000000;
    line-height: 1.6;
	text-align: center;
	font-size: 20px;
    animation: vibrate 0.2s infinite;
    animation-iteration-count: 1;
    animation-delay: 5s;
    text-shadow: 2px 2px 5px #ff0000, -2px -2px 5px #00ff00;
    animation: text-glow 2s infinite;
}

h1 {
    color: #ff00ff;
    text-align: center;
    margin-bottom: 30px;
	font-family: "Papyrus", "Comic Sans MS", cursive;
	font-size: 50px;
	font-weight: bolder;
	background-color: #d9ff42;
    text-shadow: 2px 2px 5px #00ff00;
}

h2 {
    color: #00ff00; 
    text-align: center;
    font-size: 40px;
    font-family: "Papyrus", "Comic Sans MS", cursive;
    text-shadow: 2px 2px 5px #000000; 
}

h1, h2 {
    animation: blink 1s step-start infinite;
}

img {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.cosasquehaceaptshowinc {
	text-align: center;
	padding: 40px;
	background-color: #0582e8;	
	margin-bottom: 70px;
	font-size: 36px;
}

.onelastthing {
	font-size: 14px;
	margin-top: 20px;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    90% { transform: rotate(360deg); }
    100% { transform: rotate(360deg); }
}

@keyframes blink {
    50% { opacity: 0; }
}

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

@keyframes rainbow-border {
    0% { border-image-source: linear-gradient(45deg, red, orange, yellow, green, blue, indigo, violet); }
    50% { border-image-source: linear-gradient(45deg, violet, indigo, blue, green, yellow, orange, red); }
    100% { border-image-source: linear-gradient(45deg, red, orange, yellow, green, blue, indigo, violet); }
}

@keyframes vibrate {
    0% { transform: translate(0, 0); }
    25% { transform: translate(-2px, 2px); }
    50% { transform: translate(2px, -2px); }
    75% { transform: translate(-2px, -2px); }
    100% { transform: translate(2px, 2px); }
}

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

@keyframes skew-and-pulse {
    0%, 100% { transform: skew(10deg, 5deg) scale(1); }
    50% { transform: skew(15deg, 10deg) scale(1.1); }
}

@keyframes text-glow {
    0% { text-shadow: 2px 2px 5px #ff0000; }
    50% { text-shadow: 2px 2px 10px #00ff00; }
    100% { text-shadow: 2px 2px 5px #ff0000; }
}

.modal-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    padding: 20px;
}
.modal {
    background: #ffffff;
    color: #111;
    max-width: 720px;
    width: 100%;
    border-radius: 8px;
    padding: 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    text-align: left;
}
.modal h2 {
    margin-top: 0;
    color: #b00020;
    font-size: 24px;
}

.modal h2 {
    font-family: Arial, Helvetica, system-ui, "Segoe UI", Roboto, sans-serif;
    font-weight: 700;
    letter-spacing: 0.2px;
    line-height: 1.2;
    color: #b00020;
}

.modal-note {
    margin-top: 10px;
    font-size: 13px;
    color: #333;
}
.modal p { margin: 12px 0; font-size: 16px; }
.modal-small { font-size: 12px; color: #555; margin-top: 8px; }
.modal-actions { text-align: right; margin-top: 12px; }
.btn {
    background: linear-gradient(180deg,#2b8aff,#0b63ff);
    color: white;
    border: none;
    padding: 10px 16px;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
}
.btn:focus { outline: 3px solid #ffd54d; }

.btn[disabled], .btn[aria-disabled="true"] {
    opacity: 0.45;
    cursor: not-allowed;
    filter: grayscale(40%);
    box-shadow: none;
}
.btn[disabled]:hover, .btn[aria-disabled="true"]:hover {
    transform: none;
}
.modal p { margin: 12px 0; font-size: 16px; }
.modal-small { font-size: 12px; color: #555; margin-top: 8px; }
.modal-actions { text-align: right; margin-top: 12px; }
.btn {
    background: linear-gradient(180deg,#2b8aff,#0b63ff);
    color: white;
    border: none;
    padding: 10px 16px;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
}
.btn:focus { outline: 3px solid #ffd54d; }

.blurred {
    filter: blur(8px) brightness(0.9);
    pointer-events: none;
    user-select: none;
}

@media (max-width: 520px) {
    .modal { padding: 14px; }
    .modal h2 { font-size: 18px; }
}

.modal, .modal * {
    animation: none !important;
    -webkit-animation: none !important;
    text-shadow: none !important;
}

body:not(.unpaused),
body:not(.unpaused) * {
    animation: none !important;
    -webkit-animation: none !important;
    animation-play-state: paused !important;
    -webkit-animation-play-state: paused !important;
    transition: none !important;
}

.modal-overlay {
    z-index: 99999;
}