Changed around line 1
+ :root {
+ --primary-color: #2563eb;
+ --secondary-color: #1e40af;
+ --background-color: #f8fafc;
+ --text-color: #1e293b;
+ --card-bg: #ffffff;
+ --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: system-ui, -apple-system, sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ background: var(--background-color);
+ }
+
+ .hero {
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ color: white;
+ padding: 2rem 1rem;
+ text-align: center;
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ background: linear-gradient(45deg, #fff, #e0e7ff);
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ transition: opacity 0.3s;
+ }
+
+ .nav-links a:hover {
+ opacity: 0.8;
+ }
+
+ .hero-content {
+ max-width: 800px;
+ margin: 4rem auto;
+ padding: 0 1rem;
+ }
+
+ .hero-content h1 {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ }
+
+ .primary-button {
+ background: white;
+ color: var(--primary-color);
+ padding: 0.75rem 1.5rem;
+ border: none;
+ border-radius: 0.5rem;
+ font-weight: bold;
+ cursor: pointer;
+ transition: transform 0.3s;
+ }
+
+ .primary-button:hover {
+ transform: translateY(-2px);
+ }
+
+ .summarizer-section {
+ max-width: 800px;
+ margin: 4rem auto;
+ padding: 2rem 1rem;
+ }
+
+ .input-container {
+ display: flex;
+ flex-direction: column;
+ gap: 1rem;
+ }
+
+ input[type="url"] {
+ padding: 1rem;
+ border: 2px solid #e2e8f0;
+ border-radius: 0.5rem;
+ font-size: 1rem;
+ }
+
+ .action-button {
+ background: var(--primary-color);
+ color: white;
+ padding: 1rem;
+ border: none;
+ border-radius: 0.5rem;
+ font-weight: bold;
+ cursor: pointer;
+ transition: background-color 0.3s;
+ }
+
+ .action-button:hover {
+ background: var(--secondary-color);
+ }
+
+ .summary-output {
+ margin-top: 2rem;
+ padding: 2rem;
+ background: var(--card-bg);
+ border-radius: 1rem;
+ box-shadow: var(--shadow);
+ }
+
+ .features {
+ padding: 4rem 1rem;
+ background: white;
+ }
+
+ .feature-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .feature-card {
+ padding: 2rem;
+ background: var(--card-bg);
+ border-radius: 1rem;
+ box-shadow: var(--shadow);
+ transition: transform 0.3s;
+ }
+
+ .feature-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .icon {
+ font-size: 2rem;
+ margin-bottom: 1rem;
+ display: block;
+ }
+
+ .about-section {
+ max-width: 800px;
+ margin: 4rem auto;
+ padding: 2rem 1rem;
+ text-align: center;
+ }
+
+ footer {
+ background: var(--text-color);
+ color: white;
+ padding: 2rem 1rem;
+ }
+
+ .footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ .footer-links {
+ display: flex;
+ gap: 2rem;
+ }
+
+ .footer-links a {
+ color: white;
+ text-decoration: none;
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .hero-content h1 {
+ font-size: 2rem;
+ }
+
+ .footer-content {
+ flex-direction: column;
+ gap: 1rem;
+ text-align: center;
+ }
+ }