/*
Theme Name: Custom Auto Theme
Author: System
Version: 1.0
*/
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;600;700&display=swap'); body { font-family: 'Work Sans', sans-serif; margin: 0; padding: 0; color: #333; background-color: #fff; line-height: 1.6; } .wp-header { background: #fff; border-bottom: 1px solid #eee; padding: 15px 20px; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 100; } .wp-logo { font-size: 24px; font-weight: 700; color: #6b46c1; text-decoration: none; } .wp-progress-bar { position: fixed; top: 0; left: 0; height: 4px; background: #6b46c1; width: 0%; z-index: 101; transition: width 0.2s; } .wp-hero { background: #f9f5ff; padding: 60px 20px; text-align: center; } .wp-hero-img { max-width: 100%; height: auto; border-radius: 12px; box-shadow: 0 10px 30px rgba(107, 70, 193, 0.1); margin-top: 20px; } .wp-container { max-width: 1200px; margin: 0 auto; display: flex; gap: 40px; padding: 40px 20px; } .wp-main-content { flex: 2; } .wp-sidebar { flex: 1; position: sticky; top: 100px; height: fit-content; } .wp-article-meta { color: #777; font-size: 14px; margin-bottom: 20px; display: flex; gap: 15px; } .wp-content h1 { font-size: 36px; color: #2d3748; margin-bottom: 20px; } .wp-content h2 { font-size: 28px; color: #4a5568; margin-top: 40px; } .wp-content p { margin-bottom: 20px; font-size: 18px; } .wp-blockquote { border-left: 4px solid #6b46c1; padding: 20px; background: #fdfaff; font-style: italic; margin: 30px 0; } .wp-form-container { background: #f9f5ff; padding: 30px; border-radius: 12px; margin-top: 50px; } .wp-input { width: 100%; padding: 12px; margin-bottom: 15px; border: 1px solid #ddd; border-radius: 6px; box-sizing: border-box; } .wp-button { background: #6b46c1; color: #fff; border: none; padding: 15px 30px; border-radius: 6px; cursor: pointer; font-weight: 600; width: 100%; transition: background 0.3s; } .wp-button:hover { background: #553c9a; } .wp-footer { background: #2d3748; color: #fff; padding: 40px 20px; text-align: center; margin-top: 60px; } .wp-disclaimer { font-size: 12px; color: #a0aec0; margin-top: 20px; } .wp-sidebar-widget { background: #fff; border: 1px solid #eee; padding: 20px; border-radius: 8px; margin-bottom: 30px; } .wp-sidebar-widget h3 { margin-top: 0; color: #6b46c1; } .wp-cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: #fff; border-top: 2px solid #6b46c1; padding: 20px; display: flex; justify-content: space-between; align-items: center; z-index: 1000; box-shadow: 0 -5px 20px rgba(0,0,0,0.1); } .wp-breadcrumbs { font-size: 14px; color: #718096; margin-bottom: 20px; } .wp-tag { display: inline-block; background: #edf2f7; padding: 4px 12px; border-radius: 20px; font-size: 12px; margin-right: 8px; } @media (max-width: 768px) { .wp-container { flex-direction: column; } .wp-sidebar { position: static; } }