: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); text-align: center; 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; } .main-content { position: relative; z-index: 10; width: 100%; max-width: 1200px; padding: 0 20px; margin: 0 auto; } .intro-text { max-width: 800px; margin: 0 auto 40px; padding: 20px; 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; } .intro-text p { font-size: 1.1rem; line-height: 1.6; margin-bottom: 15px; } .intro-text .highlight { color: var(--accent-color); font-weight: bold; } 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; } .tools-section { display: flex; flex-wrap: wrap; justify-content: center; gap: 25px; margin: 40px 0; max-width: 1000px; margin: 0 auto; } .tool-card { width: 280px; padding: 25px; background: rgba(26, 26, 26, 0.8); border-radius: 15px; backdrop-filter: blur(10px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); transition: all 0.3s ease; border: 1px solid rgba(145, 71, 255, 0.2); transform: translateY(20px); opacity: 0; animation: fadeInUp 0.8s forwards; display: flex; flex-direction: column; min-height: 380px; } .tool-card-content { flex: 1; display: flex; flex-direction: column; } .tool-card:nth-child(1) { animation-delay: 0.4s; } .tool-card:nth-child(2) { animation-delay: 0.5s; } .tool-card:nth-child(3) { animation-delay: 0.6s; } .tool-card:nth-child(4) { animation-delay: 0.7s; } .tool-card:nth-child(5) { animation-delay: 0.8s; } .tool-card:hover { transform: translateY(-10px) scale(1.03); box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3); border-color: rgba(145, 71, 255, 0.5); } .tool-icon { font-size: 2.5rem; margin-bottom: 15px; color: var(--primary-color); } .tool-card h3 { font-size: 1.4rem; margin-bottom: 10px; color: var(--light-color); } .tool-card p { font-size: 0.95rem; color: #ccc; margin-bottom: 20px; line-height: 1.5; flex-grow: 1; margin-bottom: 15px; } .tool-link { 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-top: auto; width: 100%; } .tool-link: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 fadeInUp { from { opacity: 0; transform: translateY(20px) rotateY(10deg); } to { opacity: 1; transform: translateY(0) rotateY(10deg); } } @keyframes floating { 0% { transform: translateY(0) rotateY(10deg); } 50% { transform: translateY(-15px) rotateY(-5deg); } 100% { transform: translateY(0) rotateY(10deg); } } @media (max-width: 480px) { .intro-text { padding: 10px; } .tool-card { width: 95%; min-height: auto; } :root { font-size: 14px; } } @media (max-width: 768px) { h1 { font-size: 2.5rem; } .tools-section { flex-direction: column; align-items: center; } .tool-card { width: 90%; } .tool-link { padding: 15px 30px; font-size: 1.1rem; } .footer-nav { flex-direction: column; gap: 10px; } }