Changed around line 1
+ :root {
+ --primary: #6c5ce7;
+ --secondary: #a29bfe;
+ --dark: #2d3436;
+ --light: #f5f6fa;
+ --accent: #fd79a8;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', system-ui, sans-serif;
+ line-height: 1.6;
+ color: var(--dark);
+ background-color: var(--light);
+ }
+
+ header.hero {
+ background: linear-gradient(135deg, var(--primary), var(--secondary));
+ color: white;
+ padding: 2rem 1rem;
+ text-align: center;
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 1rem 0;
+ }
+
+ .logo {
+ font-size: 1.8rem;
+ font-weight: 700;
+ color: white;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 1.5rem;
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ font-weight: 500;
+ }
+
+ .cta-button {
+ background-color: var(--accent);
+ padding: 0.5rem 1rem;
+ border-radius: 4px;
+ transition: all 0.3s ease;
+ }
+
+ .cta-button:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 4px 8px rgba(0,0,0,0.1);
+ }
+
+ .hero-content {
+ max-width: 800px;
+ margin: 3rem auto;
+ }
+
+ .hero-content h1 {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ }
+
+ .hero-content p {
+ font-size: 1.2rem;
+ margin-bottom: 2rem;
+ opacity: 0.9;
+ }
+
+ .primary-button {
+ background-color: white;
+ color: var(--primary);
+ padding: 0.8rem 2rem;
+ border-radius: 4px;
+ text-decoration: none;
+ font-weight: 600;
+ display: inline-block;
+ transition: all 0.3s ease;
+ }
+
+ .primary-button:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 4px 12px rgba(0,0,0,0.15);
+ }
+
+ main {
+ max-width: 1200px;
+ margin: 3rem auto;
+ padding: 0 1rem;
+ }
+
+ section {
+ margin-bottom: 4rem;
+ }
+
+ h2 {
+ font-size: 2rem;
+ margin-bottom: 2rem;
+ text-align: center;
+ position: relative;
+ }
+
+ h2::after {
+ content: '';
+ display: block;
+ width: 80px;
+ height: 4px;
+ background: var(--primary);
+ margin: 1rem auto;
+ }
+
+ .post-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
+ gap: 2rem;
+ }
+
+ .post-card {
+ background: white;
+ border-radius: 8px;
+ overflow: hidden;
+ box-shadow: 0 4px 6px rgba(0,0,0,0.1);
+ transition: transform 0.3s ease;
+ }
+
+ .post-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .post-image {
+ height: 200px;
+ background-size: cover;
+ background-position: center;
+ }
+
+ .post-content {
+ padding: 1.5rem;
+ }
+
+ .post-content h3 {
+ margin-bottom: 0.5rem;
+ font-size: 1.3rem;
+ }
+
+ .post-content p {
+ margin-bottom: 1rem;
+ color: #666;
+ }
+
+ .post-content a {
+ color: var(--primary);
+ text-decoration: none;
+ font-weight: 600;
+ }
+
+ .genre-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
+ gap: 1.5rem;
+ }
+
+ .genre-card {
+ height: 120px;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ border-radius: 8px;
+ color: white;
+ font-weight: 700;
+ font-size: 1.5rem;
+ text-shadow: 0 2px 4px rgba(0,0,0,0.2);
+ transition: all 0.3s ease;
+ cursor: pointer;
+ }
+
+ .genre-card:hover {
+ transform: scale(1.05);
+ }
+
+ .newsletter {
+ text-align: center;
+ padding: 3rem 1rem;
+ background: var(--secondary);
+ color: white;
+ border-radius: 8px;
+ }
+
+ .newsletter p {
+ max-width: 600px;
+ margin: 0 auto 1.5rem;
+ font-size: 1.1rem;
+ }
+
+ .newsletter-form {
+ display: flex;
+ max-width: 500px;
+ margin: 0 auto;
+ }
+
+ .newsletter-form input {
+ flex: 1;
+ padding: 0.8rem;
+ border: none;
+ border-radius: 4px 0 0 4px;
+ font-size: 1rem;
+ }
+
+ .newsletter-form button {
+ border-radius: 0 4px 4px 0;
+ border: none;
+ }
+
+ footer {
+ background: var(--dark);
+ color: white;
+ padding: 3rem 1rem;
+ text-align: center;
+ }
+
+ .footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .footer-logo {
+ font-size: 1.8rem;
+ font-weight: 700;
+ margin-bottom: 1.5rem;
+ }
+
+ .social-links {
+ display: flex;
+ justify-content: center;
+ gap: 1.5rem;
+ margin: 1.5rem 0;
+ }
+
+ .social-links a {
+ color: white;
+ text-decoration: none;
+ }
+
+ @media (max-width: 768px) {
+ nav {
+ flex-direction: column;
+ gap: 1rem;
+ }
+
+ .hero-content h1 {
+ font-size: 2.2rem;
+ }
+
+ .post-grid {
+ grid-template-columns: 1fr;
+ }
+
+ .newsletter-form {
+ flex-direction: column;
+ gap: 0.5rem;
+ }
+
+ .newsletter-form input,
+ .newsletter-form button {
+ width: 100%;
+ border-radius: 4px;
+ }
+ }