Changed around line 1
+ :root {
+ --primary: #6e45e2;
+ --secondary: #88d3ce;
+ --dark: #2a2d3e;
+ --light: #f9f9f9;
+ --accent: #ff7e5f;
+ --text: #333;
+ --text-light: #777;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
+ line-height: 1.6;
+ color: var(--text);
+ 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;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 1.5rem;
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ font-weight: 500;
+ transition: opacity 0.3s;
+ }
+
+ .nav-links a:hover {
+ opacity: 0.8;
+ }
+
+ .cta-button {
+ background-color: var(--accent);
+ padding: 0.5rem 1rem;
+ border-radius: 4px;
+ }
+
+ .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 {
+ display: inline-block;
+ background-color: white;
+ color: var(--primary);
+ padding: 0.8rem 1.5rem;
+ border-radius: 4px;
+ text-decoration: none;
+ font-weight: 600;
+ transition: transform 0.3s, box-shadow 0.3s;
+ }
+
+ .primary-button:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 4px 12px rgba(0,0,0,0.1);
+ }
+
+ section {
+ padding: 4rem 1rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ h2 {
+ font-size: 2rem;
+ margin-bottom: 2rem;
+ text-align: center;
+ color: var(--dark);
+ }
+
+ .gif-grid, .category-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .gif-card {
+ background: white;
+ border-radius: 8px;
+ overflow: hidden;
+ box-shadow: 0 4px 6px rgba(0,0,0,0.05);
+ transition: transform 0.3s, box-shadow 0.3s;
+ }
+
+ .gif-card:hover {
+ transform: translateY(-4px);
+ box-shadow: 0 8px 16px rgba(0,0,0,0.1);
+ }
+
+ .gif-card img {
+ width: 100%;
+ height: auto;
+ display: block;
+ }
+
+ .gif-info {
+ padding: 1.5rem;
+ }
+
+ .gif-info h3 {
+ margin-bottom: 0.5rem;
+ color: var(--dark);
+ }
+
+ .gif-info p {
+ color: var(--text-light);
+ font-size: 0.9rem;
+ }
+
+ .category-card {
+ text-align: center;
+ background: white;
+ padding: 1.5rem;
+ border-radius: 8px;
+ box-shadow: 0 4px 6px rgba(0,0,0,0.05);
+ transition: transform 0.3s;
+ }
+
+ .category-card:hover {
+ transform: scale(1.03);
+ }
+
+ .category-card img {
+ width: 100%;
+ height: 180px;
+ object-fit: cover;
+ border-radius: 4px;
+ margin-bottom: 1rem;
+ }
+
+ .about {
+ text-align: center;
+ max-width: 800px;
+ margin: 0 auto;
+ }
+
+ .about p {
+ margin-bottom: 1rem;
+ }
+
+ footer {
+ background-color: var(--dark);
+ color: white;
+ padding: 3rem 1rem;
+ }
+
+ .footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ text-align: center;
+ }
+
+ .footer-links {
+ display: flex;
+ justify-content: center;
+ gap: 2rem;
+ margin-bottom: 2rem;
+ }
+
+ .footer-links a {
+ color: white;
+ text-decoration: none;
+ opacity: 0.8;
+ transition: opacity 0.3s;
+ }
+
+ .footer-links a:hover {
+ opacity: 1;
+ }
+
+ @media (max-width: 768px) {
+ nav {
+ flex-direction: column;
+ gap: 1rem;
+ }
+
+ .hero-content h1 {
+ font-size: 2.2rem;
+ }
+
+ .gif-grid, .category-grid {
+ grid-template-columns: 1fr;
+ }
+
+ .footer-links {
+ flex-direction: column;
+ gap: 1rem;
+ }
+ }