/*
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'); :root { --wp-green: #22c55e; --wp-light-green: #f0fdf4; --wp-white: #ffffff; --wp-text: #1f2937; } body { font-family: 'Work Sans', sans-serif; background: var(--wp-white); color: var(--wp-text); margin: 0; padding: 0; line-height: 1.6; } .wp-header { background: var(--wp-white); border-bottom: 1px solid #e5e7eb; padding: 1rem 2rem; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 100; } .wp-logo { font-size: 1.5rem; font-weight: 700; color: var(--wp-green); text-decoration: none; } .wp-progress-bar { position: fixed; top: 0; left: 0; height: 4px; background: var(--wp-green); width: 0%; z-index: 101; transition: width 0.2s; } .wp-hero { background: var(--wp-light-green); padding: 4rem 2rem; text-align: center; } .wp-hero-img { max-width: 100%; height: auto; border-radius: 1rem; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); margin-top: 2rem; border: 4px solid white; } .wp-main-container { display: grid; grid-template-columns: 1fr 350px; gap: 2rem; max-width: 1200px; margin: 2rem auto; padding: 0 1rem; } @media (max-width: 900px) { .wp-main-container { grid-template-columns: 1fr; } } .wp-article { background: var(--wp-white); } .wp-breadcrumbs { font-size: 0.875rem; color: #6b7280; margin-bottom: 1rem; } .wp-breadcrumbs a { color: var(--wp-green); text-decoration: none; } .wp-meta { font-size: 0.875rem; color: #9ca3af; margin-bottom: 2rem; display: flex; gap: 1rem; flex-wrap: wrap; } .wp-content h1 { font-size: 2.5rem; margin-bottom: 1rem; color: #111827; line-height: 1.2; } .wp-content h2 { font-size: 1.8rem; margin-top: 2.5rem; margin-bottom: 1rem; color: #111827; } .wp-content p { margin-bottom: 1.5rem; font-size: 1.1rem; color: #374151; } .wp-blockquote { border-left: 4px solid var(--wp-green); padding: 1rem 1.5rem; font-style: italic; margin: 2rem 0; color: #4b5563; background: #f9fafb; border-radius: 0 0.5rem 0.5rem 0; } .wp-tags { margin-top: 3rem; display: flex; gap: 0.5rem; flex-wrap: wrap; } .wp-tag { background: #f3f4f6; padding: 0.25rem 0.75rem; border-radius: 9999px; font-size: 0.75rem; color: #4b5563; } .wp-sidebar { position: sticky; top: 6rem; height: fit-content; } .wp-widget { background: var(--wp-light-green); padding: 1.5rem; border-radius: 1rem; margin-bottom: 2rem; } .wp-widget-title { font-weight: 700; margin-bottom: 1.25rem; display: block; color: #111827; font-size: 1.1rem; } .wp-popular-list { list-style: none; padding: 0; margin: 0; } .wp-popular-item { margin-bottom: 1rem; border-bottom: 1px solid #dcfce7; padding-bottom: 0.75rem; } .wp-popular-item:last-child { border-bottom: none; } .wp-popular-item a { text-decoration: none; color: var(--wp-text); font-size: 0.95rem; font-weight: 500; transition: color 0.2s; } .wp-popular-item a:hover { color: var(--wp-green); } .wp-form { display: flex; flex-direction: column; gap: 1rem; } .wp-input { padding: 0.75rem; border: 1px solid #d1d5db; border-radius: 0.5rem; outline: none; font-family: inherit; } .wp-input:focus { border-color: var(--wp-green); ring: 2px solid var(--wp-green); } .wp-button { background: var(--wp-green); color: var(--wp-white); padding: 0.85rem; border: none; border-radius: 0.5rem; font-weight: 600; cursor: pointer; transition: transform 0.1s, opacity 0.2s; font-family: inherit; } .wp-button:active { transform: scale(0.98); } .wp-button:hover { opacity: 0.9; } .wp-footer { background: #111827; color: #9ca3af; padding: 4rem 2rem; text-align: center; margin-top: 4rem; } .wp-footer-logo { color: var(--wp-white); font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; display: block; text-decoration: none; } .wp-footer-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 2.5rem; flex-wrap: wrap; } .wp-footer-links a { color: #9ca3af; text-decoration: none; font-size: 0.9rem; transition: color 0.2s; } .wp-footer-links a:hover { color: white; } .wp-disclaimer { font-size: 0.75rem; max-width: 700px; margin: 0 auto; line-height: 1.6; border-top: 1px solid #374151; padding-top: 2rem; } .wp-cookie-banner { position: fixed; bottom: 1.5rem; left: 1.5rem; right: 1.5rem; background: #1f2937; color: white; padding: 1.25rem 2rem; border-radius: 1rem; display: flex; justify-content: space-between; align-items: center; z-index: 1000; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5); max-width: 1000px; margin: 0 auto; } .wp-cookie-banner p { margin: 0; font-size: 0.9rem; padding-right: 1rem; } .wp-cookie-btn { background: var(--wp-green); color: white; border: none; padding: 0.6rem 1.5rem; border-radius: 0.5rem; cursor: pointer; font-weight: 600; white-space: nowrap; } .hidden { display: none; } .wp-success-box { text-align: center; padding: 3rem; background: var(--wp-light-green); border-radius: 2rem; margin: 2rem 0; }