* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-family: 'Manrope', sans-serif; line-height: 1.7; font-size: 17px; }
body { color: #e0e0e0; background-color: #121212; overflow-x: hidden; }
.container { margin: 0 auto; padding: 0 3rem; max-width: 1200px; }
.site-header { background-color: #1e1e1e; color: #ffffff; padding: 2rem 0; border-bottom: 1px solid #333; position: sticky; top: 0; z-index: 100; }
.logo { font-size: 1.8rem; font-weight: 700; margin: 0 auto; display: flex; justify-content: center; letter-spacing: 1px; }
.content { padding: 3rem 0; min-height: 70vh; margin: 0 auto; width: 100%; }
.content p { margin-bottom: 1.8rem; font-size: 1.1rem; line-height: 1.8; color: #b0b0b0; }
.content img { max-width: 100%; height: auto; margin: 2rem auto; display: block; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); filter: brightness(0.9); transition: all 0.3s ease; }
.content img:hover { filter: brightness(1); transform: scale(1.01); }
.site-footer { background-color: #1e1e1e; color: #ffffff; padding: 3rem 0; display: flex; justify-content: center; flex-direction: column; align-items: center; border-top: 1px solid #333; }
.links { margin-bottom: 1.8rem; font-weight: 600; display: flex; gap: 2rem; }
.links a { text-decoration: none; color: #ffffff; font-size: 1.1rem; transition: color 0.3s ease; position: relative; }
.links a:hover { color: #bb86fc; }
.links a::before { content: ''; position: absolute; width: 100%; height: 2px; bottom: -5px; left: 0; background-color: #bb86fc; visibility: hidden; transform: scaleX(0); transition: all 0.3s ease; }
.links a:hover::before { visibility: visible; transform: scaleX(1); }
.copyright { opacity: 0.6; font-size: 0.9rem; }

@media (max-width: 768px) {
  html { font-size: 15px; }
  .container { padding: 0 2rem; }
  .logo { font-size: 1.6rem; }
  .links { gap: 1.5rem; }
}
