Changed around line 1
+ :root {
+ --primary-color: #2a2d64;
+ --secondary-color: #4a4fe6;
+ --accent-color: #8c52ff;
+ --text-color: #333;
+ --light-bg: #f5f6fa;
+ --white: #ffffff;
+ --shadow: 0 4px 6px rgba(0,0,0,0.1);
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Inter', system-ui, sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ }
+
+ .hero {
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ color: var(--white);
+ padding: 2rem 5%;
+ min-height: 80vh;
+ display: flex;
+ flex-direction: column;
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 0;
+ }
+
+ .logo {
+ font-size: 1.8rem;
+ font-weight: 700;
+ background: linear-gradient(to right, #fff, #e0e0ff);
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ align-items: center;
+ }
+
+ .nav-links a {
+ color: var(--white);
+ text-decoration: none;
+ font-weight: 500;
+ transition: opacity 0.3s;
+ }
+
+ .nav-links a:hover {
+ opacity: 0.8;
+ }
+
+ .cta-button {
+ background: var(--accent-color);
+ color: var(--white);
+ padding: 0.8rem 1.5rem;
+ border: none;
+ border-radius: 25px;
+ cursor: pointer;
+ font-weight: 600;
+ transition: transform 0.2s;
+ }
+
+ .cta-button:hover {
+ transform: translateY(-2px);
+ }
+
+ .hero-content {
+ flex: 1;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ text-align: center;
+ gap: 2rem;
+ }
+
+ .hero-content h1 {
+ font-size: 3.5rem;
+ font-weight: 800;
+ line-height: 1.2;
+ }
+
+ .search-container {
+ width: 100%;
+ max-width: 600px;
+ display: flex;
+ gap: 1rem;
+ }
+
+ .search-container input {
+ flex: 1;
+ padding: 1rem;
+ border: none;
+ border-radius: 25px;
+ font-size: 1rem;
+ }
+
+ .search-button {
+ padding: 1rem 2rem;
+ background: var(--accent-color);
+ color: var(--white);
+ border: none;
+ border-radius: 25px;
+ cursor: pointer;
+ font-weight: 600;
+ }
+
+ .scene-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ padding: 2rem 5%;
+ }
+
+ .scene-card {
+ background: var(--white);
+ border-radius: 15px;
+ overflow: hidden;
+ box-shadow: var(--shadow);
+ transition: transform 0.3s;
+ }
+
+ .scene-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .scene-card img {
+ width: 100%;
+ height: 200px;
+ object-fit: cover;
+ }
+
+ .scene-info {
+ padding: 1.5rem;
+ }
+
+ .trending {
+ background: var(--light-bg);
+ padding: 4rem 5%;
+ }
+
+ .trending-list {
+ max-width: 800px;
+ margin: 0 auto;
+ }
+
+ .trending-item {
+ display: flex;
+ align-items: center;
+ gap: 1rem;
+ padding: 1rem;
+ background: var(--white);
+ margin: 1rem 0;
+ border-radius: 10px;
+ box-shadow: var(--shadow);
+ }
+
+ footer {
+ background: var(--primary-color);
+ color: var(--white);
+ padding: 3rem 5%;
+ }
+
+ .footer-links {
+ display: flex;
+ gap: 2rem;
+ margin-bottom: 1rem;
+ }
+
+ .footer-links a {
+ color: var(--white);
+ text-decoration: none;
+ }
+
+ @media (max-width: 768px) {
+ .hero-content h1 {
+ font-size: 2.5rem;
+ }
+
+ .nav-links {
+ display: none;
+ }
+
+ .search-container {
+ flex-direction: column;
+ }
+
+ .scene-grid {
+ grid-template-columns: 1fr;
+ }
+ }