:root { --primary-color: #9147ff; --secondary-color: #5c16c5; --accent-color: #bf94ff; --dark-color: #1a1a1a; --light-color: #f8f8f8; --gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%); font-size: 16px; } * { margin: 0; padding: 0; box-sizing: border-box; } body { min-height: 100vh; margin: 0; padding: 0; font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; background: url('img/background.webp') no-repeat center center fixed; background-size: cover; color: var(--light-color); display: flex; flex-direction: column; justify-content: space-between; align-items: center; perspective: 1000px; position: relative; overflow-x: hidden; } body::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.6); z-index: 1; } header { width: 100%; padding: 20px 0; position: relative; z-index: 10; text-align: center; } .main-content { position: relative; z-index: 10; width: 100%; max-width: 1200px; padding: 0 20px; margin: 0 auto; } h1 { margin: 20px 0; font-size: 3.5rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; text-shadow: none; transform: rotateY(10deg); animation: floating 6s ease-in-out infinite alternate; position: relative; z-index: 10; opacity: 0; animation: fadeInUp 0.8s forwards, floating 6s ease-in-out infinite alternate; } h1::after { content: ''; display: block; width: 100px; height: 4px; background: var(--gradient); margin: 15px auto; border-radius: 2px; } .privacy-container { max-width: 900px; margin: 0 auto 40px; padding: 30px; background: rgba(26, 26, 26, 0.8); border-radius: 15px; backdrop-filter: blur(10px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); border: 1px solid rgba(145, 71, 255, 0.3); transform: translateY(20px); opacity: 0; animation: fadeInUp 0.8s forwards 0.3s; text-align: left; } .privacy-container h2 { font-size: 1.8rem; margin: 25px 0 15px; color: var(--accent-color); } .privacy-container h3 { font-size: 1.4rem; margin: 20px 0 10px; color: var(--primary-color); } .privacy-container p, .privacy-container ul, .privacy-container ol { font-size: 1.05rem; line-height: 1.6; margin-bottom: 15px; } .privacy-container ul, .privacy-container ol { margin-left: 25px; } .privacy-container li { margin-bottom: 8px; } .privacy-container .highlight { color: var(--accent-color); font-weight: bold; } .privacy-container a { color: var(--accent-color); text-decoration: none; transition: all 0.3s ease; } .privacy-container a:hover { text-decoration: underline; color: var(--primary-color); } .back-to-home { display: inline-block; padding: 12px 25px; background: var(--gradient); color: white; border-radius: 8px; font-size: 1rem; font-weight: 600; text-decoration: none; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(92, 22, 197, 0.3); border: none; cursor: pointer; margin: 20px 0; text-align: center; } .back-to-home:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(92, 22, 197, 0.4); background: linear-gradient(135deg, #a66bff 0%, #6d1de8 100%); } footer { position: relative; display: flex; align-items: center; flex-direction: column; margin-top: 12em; padding: 1.5em 0 1em 0; z-index: 100; gap: 1.1rem; color: #aaa; font-size: 0.7em; } footer .copyright { font-size: 1.3em; } footer ul { display: flex; flex-direction: row; list-style-type: none; gap: 1.5em; } footer a { position: relative; transition: 0.3s; text-decoration: none; color: inherit; } footer a:hover { color: var(--accent-color); } footer a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--accent-color); transition: width 0.3s ease; } footer a:hover::after { width: 100%; } footer .view-count { font-weight: bold; color: var(--accent-color); } @keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } @keyframes floating { 0% { transform: translateY(0) rotateY(10deg); } 50% { transform: translateY(-15px) rotateY(-5deg); } 100% { transform: translateY(0) rotateY(10deg); } } @media (max-width: 768px) { h1 { font-size: 2.5rem; } .privacy-container { padding: 20px; } .footer-nav { flex-direction: column; gap: 10px; } } @media (max-width: 480px) { .privacy-container { padding: 15px; } :root { font-size: 14px; } }