Changed around line 1
+ :root {
+ --primary-color: #6366f1;
+ --secondary-color: #818cf8;
+ --background: #f8fafc;
+ --text-primary: #1e293b;
+ --text-secondary: #64748b;
+ --card-bg: #ffffff;
+ --animation-speed: 0.3s;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Inter', system-ui, sans-serif;
+ line-height: 1.6;
+ color: var(--text-primary);
+ background: var(--background);
+ }
+
+ .hero {
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ color: white;
+ padding: 2rem;
+ text-align: center;
+ min-height: 60vh;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem;
+ position: fixed;
+ top: 0;
+ left: 0;
+ right: 0;
+ background: rgba(255, 255, 255, 0.1);
+ backdrop-filter: blur(10px);
+ z-index: 1000;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ text-transform: uppercase;
+ letter-spacing: 2px;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ transition: var(--animation-speed);
+ }
+
+ .cta-button {
+ background: white;
+ color: var(--primary-color) !important;
+ padding: 0.5rem 1rem;
+ border-radius: 25px;
+ font-weight: bold;
+ }
+
+ .pulse-button {
+ background: white;
+ color: var(--primary-color);
+ border: none;
+ padding: 1rem 2rem;
+ border-radius: 25px;
+ font-weight: bold;
+ cursor: pointer;
+ animation: pulse 2s infinite;
+ }
+
+ @keyframes pulse {
+ 0% { transform: scale(1); }
+ 50% { transform: scale(1.05); }
+ 100% { transform: scale(1); }
+ }
+
+ .inspiration-grid {
+ padding: 4rem 2rem;
+ }
+
+ .card-container {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .inspiration-card {
+ background: var(--card-bg);
+ padding: 2rem;
+ border-radius: 15px;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ transition: var(--animation-speed);
+ }
+
+ .inspiration-card:hover {
+ transform: translateY(-5px);
+ box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
+ }
+
+ .collection-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ padding: 4rem 2rem;
+ }
+
+ .collection-card {
+ background: var(--card-bg);
+ border-radius: 15px;
+ overflow: hidden;
+ transition: var(--animation-speed);
+ }
+
+ .image-placeholder {
+ background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
+ height: 200px;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ font-size: 3rem;
+ }
+
+ .random-inspiration {
+ text-align: center;
+ padding: 4rem 2rem;
+ background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
+ color: white;
+ }
+
+ .quote-container {
+ max-width: 800px;
+ margin: 2rem auto;
+ font-size: 1.5rem;
+ }
+
+ .refresh-button {
+ background: white;
+ color: var(--primary-color);
+ border: none;
+ padding: 1rem 2rem;
+ border-radius: 25px;
+ cursor: pointer;
+ transition: var(--animation-speed);
+ }
+
+ footer {
+ background: var(--text-primary);
+ color: white;
+ padding: 2rem;
+ text-align: center;
+ }
+
+ .footer-links {
+ display: flex;
+ justify-content: center;
+ gap: 2rem;
+ margin-bottom: 1rem;
+ }
+
+ .footer-links a {
+ color: white;
+ text-decoration: none;
+ }
+
+ @media (max-width: 768px) {
+ nav {
+ flex-direction: column;
+ gap: 1rem;
+ }
+
+ .nav-links {
+ flex-direction: column;
+ align-items: center;
+ }
+
+ .hero {
+ padding: 4rem 1rem;
+ }
+
+ .card-container {
+ grid-template-columns: 1fr;
+ }
+ }