body { margin: 0; padding: 0; font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background-color: #f8f9fa; color: #333; line-height: 1.6; } .content { max-width: 1000px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: center; align-items: center; flex-direction: column; } header { background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%); padding: 20px 0; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); position: sticky; top: 0; z-index: 1000; } header .content { display: flex; justify-content: space-between; align-items: center; } .logo { height: 50px; transition: transform 0.3s ease; } .logo:hover { transform: scale(1.05); } nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 30px; } nav a { color: white; text-decoration: none; font-weight: 600; font-size: 16px; transition: color 0.3s ease; } nav a:hover { color: #facc15; } .container { padding: 40px 0; max-width: 1000px; margin: 0 auto; } .hero { text-align: center; padding: 60px 20px; background: url('https://manhwahentai.it.com/images/hero-bg.jpg') no-repeat center/cover; border-radius: 12px; margin-bottom: 40px; animation: fadeIn 1s ease-out; } @keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } .hero h1 { font-size: 48px; color: #1e3a8a; text-shadow: 2px 2px 4px rgb(117 217 255 / 50%); margin-bottom: 20px; } .start-btn { display: inline-block; padding: 14px 28px; margin: 10px; background: #dc2626; color: white; font-size: 18px; font-weight: 600; border-radius: 8px; text-decoration: none; cursor: pointer; transition: all 0.3s ease; position: relative; overflow: hidden; } .start-btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent); transition: 0.5s; } .start-btn:hover::before { left: 100%; } .start-btn:hover { background: #b91c1c; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); } .start-btn:active { transform: translateY(0); box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); } .hero p { font-size: 20px; color: #a3a3a3; max-width: 600px; margin: 20px auto; } .section { margin: 40px 0; padding: 30px; background: white; border-radius: 12px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); animation: slideIn 0.8s ease-out; } @keyframes slideIn { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: translateX(0); } } .section h2 { font-size: 32px; color: #1e3a8a; margin-bottom: 20px; text-align: center; } .section h3 { font-size: 24px; color: #1f2937; margin: 20px 0 10px; } .section p { font-size: 16px; color: #4b5563; margin-bottom: 16px; text-align: center; } .section img { max-width: 100%; border-radius: 8px; margin: 20px auto; display: block; } .section ul { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; } .section ul li { font-size: 16px; color: #4b5563; padding: 10px; background: #f1f5f9; border-radius: 8px; transition: transform 0.3s ease; text-align: center; } .section ul li:hover { transform: translateY(-5px); } .comparison-table { width: 100%; border-collapse: collapse; margin: 20px auto; } .comparison-table th, .comparison-table td { padding: 16px; text-align: left; border-bottom: 1px solid #e5e7eb; } .comparison-table th { background: #1e3a8a; color: white; font-weight: 600; } .comparison-table td { background: #f8fafc; } .cta { text-align: center; padding: 40px 20px; background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%); border-radius: 12px; margin: 40px auto; max-width: 1000px; animation: fadeIn 1s ease-out; } .cta h2 { font-size: 36px; color: white; margin-bottom: 20px; } .cta p { font-size: 18px; color: #e5e7eb; max-width: 600px; margin: 0 auto 20px; } footer { background: #1f2937; color: #e5e7eb; padding: 40px 0; } .footer-content { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 40px; padding: 0 20px; } .footer-logo img { height: 60px; display: block; margin: 0 auto; } .footer-text { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; } .footer-text h3 { font-size: 24px; margin-bottom: 16px; text-align: center; } .footer-text p { font-size: 16px; color: #d1d5db; text-align: center; } .footer-text a { color: #facc15; text-decoration: none; transition: color 0.3s ease; } .footer-text a:hover { color: #eab308; } @media (max-width: 768px) { nav { display: none; } .hero h1 { font-size: 32px; } .hero p { font-size: 16px; } .section h2 { font-size: 24px; } .section img { width: 100%; } .footer-content { grid-template-columns: 1fr; } .footer-text { grid-template-columns: 1fr; } .start-btn { padding: 12px 24px; font-size: 16px; } } @media (max-width: 480px) { .hero { padding: 0px 15px; } .hero h1 { font-size: 28px; } .section { padding: 20px; } .section h2 { font-size: 20px; } .cta { padding: 30px 15px; } .cta h2 { font-size: 28px; } }