:root {
--background-color: #8B516A;
--text-color: #f5f5f5;
--primary-color: #ff5252;
--link-color: #ff8888;
--visited-link-color: #ff6f6f;
--active-link-color: #ff4c4c;
--hover-link-color: #ffaaaa;
}
html, body {
  height: 100%;
}
body {
margin: 0;
padding: 0;
overflow: hidden;
width: 100vw;
background: var(--background-color);
color: var(--text-color);
display: flex;
align-items: center;
justify-content: center;
animation: fadeIn 1.2s ease-in-out;
}
a {
color: var(--link-color);
text-decoration: none;
transition: color 0.25s ease;
}
a:visited {
color: var(--visited-link-color);
}
a:hover {
color: var(--hover-link-color);
}
a:active {
color: var(--active-link-color);
}
img {
max-width: 100%;
height: auto;
object-fit: contain;
image-rendering: auto;
filter: brightness(0.9) contrast(1.1);
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(15px); }
to { opacity: 1; transform: translateY(0); }
}
#noscript-container {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100vw;
height: 100vh;
z-index: 9999;
display: flex;
align-items: center;
justify-content: center;
padding: 5px;
}
.noscript-container {
max-width: 90%;
width: 600px;
max-height: 85vh;
padding: 2px;
border-radius: 10px;
box-shadow: 0 0 17px rgba(255, 255, 255, 0.7);
text-align: center;
overflow-y: auto;
scrollbar-width: thin;
scrollbar-color: #888 #1e1e1e;
}
.noscript-container h1 {
font-size: 1.6rem;
color: var(--primary-color);
margin-bottom: 15px;
}
.noscript-container p {
font-size: 1rem;
line-height: 1.6;
margin-bottom: 10px;
}
.noscript-container::-webkit-scrollbar {
width: 8px;
}
.noscript-container::-webkit-scrollbar-track {
background: #1e1e1e;
}
.noscript-container::-webkit-scrollbar-thumb {
background: #888;
border-radius: 4px;
}
.noscript-container::-webkit-scrollbar-thumb:hover {
background: #aaa;
}
@media (max-width: 768px) {
.noscript-container {
width: 95%;
padding: 20px;
}
.noscript-container h2 {
font-size: 1.4rem;
}
.noscript-container p {
font-size: 0.9rem;
}
}