Changed around line 1
+ :root {
+ --primary-color: #6c63ff;
+ --secondary-color: #4CAF50;
+ --text-color: #333;
+ --background-color: #f9f9f9;
+ --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', system-ui, sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ background-color: var(--background-color);
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 5%;
+ background: white;
+ box-shadow: var(--card-shadow);
+ position: fixed;
+ width: 100%;
+ z-index: 1000;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ color: var(--primary-color);
+ }
+
+ .nav-links a {
+ margin-left: 2rem;
+ text-decoration: none;
+ color: var(--text-color);
+ transition: color 0.3s ease;
+ }
+
+ .nav-links a:hover {
+ color: var(--primary-color);
+ }
+
+ .mobile-menu {
+ display: none;
+ }
+
+ #hero {
+ height: 100vh;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ text-align: center;
+ padding: 2rem;
+ background: linear-gradient(135deg, #6c63ff0d 0%, #4CAF5010 100%);
+ }
+
+ h1 {
+ font-size: 3.5rem;
+ margin-bottom: 1rem;
+ background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .cta-button {
+ padding: 1rem 2rem;
+ font-size: 1.2rem;
+ background: var(--primary-color);
+ color: white;
+ border: none;
+ border-radius: 50px;
+ cursor: pointer;
+ transition: transform 0.3s ease;
+ }
+
+ .cta-button:hover {
+ transform: translateY(-2px);
+ }
+
+ .product-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ padding: 2rem 5%;
+ }
+
+ .product-card {
+ background: white;
+ padding: 2rem;
+ border-radius: 15px;
+ text-align: center;
+ box-shadow: var(--card-shadow);
+ transition: transform 0.3s ease;
+ }
+
+ .product-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .mystery-box {
+ width: 100px;
+ height: 100px;
+ margin: 0 auto 1rem;
+ background: var(--primary-color);
+ color: white;
+ font-size: 2rem;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ border-radius: 15px;
+ animation: float 3s ease-in-out infinite;
+ }
+
+ @keyframes float {
+ 0%, 100% { transform: translateY(0); }
+ 50% { transform: translateY(-10px); }
+ }
+
+ .features-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 2rem;
+ padding: 2rem 5%;
+ }
+
+ .feature {
+ text-align: center;
+ padding: 2rem;
+ }
+
+ .feature-icon {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ }
+
+ footer {
+ background: white;
+ padding: 2rem 5%;
+ margin-top: 4rem;
+ }
+
+ .footer-content {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 2rem;
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .mobile-menu {
+ display: block;
+ }
+
+ h1 {
+ font-size: 2.5rem;
+ }
+
+ .product-grid {
+ grid-template-columns: 1fr;
+ }
+ }