diff --git a/app/globals.css b/app/globals.css index 180c1d6..5a58a18 100644 --- a/app/globals.css +++ b/app/globals.css @@ -1,13 +1,13 @@ @import "tailwindcss"; :root { - --bg-base: #0f172a; - --bg-surface: rgba(226, 232, 240, 0.08); - --bg-card: rgba(30, 41, 59, 0.4); + --bg-base: #1a1f35; + --bg-surface: rgba(226, 232, 240, 0.1); + --bg-card: rgba(255, 255, 255, 0.08); --text-primary: #f1f5f9; --text-secondary: #cbd5e1; - --border-default: rgba(148, 163, 184, 0.1); - --border-hover: rgba(148, 163, 184, 0.3); + --border-default: rgba(255, 255, 255, 0.2); + --border-hover: rgba(255, 255, 255, 0.3); --focus-ring: rgba(99, 102, 241, 0.5); --accent: #6366f1; --accent-light: #818cf8; @@ -56,14 +56,17 @@ body { z-index: 0; background: linear-gradient( 135deg, - #0f172a 0%, - #1e293b 25%, - #334155 50%, - #1e40af 75%, - #0f172a 100% + #1a1f35 0%, + #a78bfa 20%, + #60a5fa 40%, + #34d399 60%, + #f472b6 80%, + #1a1f35 100% ); background-size: 400% 400%; - animation: gradientShift 20s ease infinite; + animation: + gradientShift 20s ease infinite, + colorCycle 45s ease-in-out infinite; } @keyframes gradientShift { @@ -78,6 +81,24 @@ body { } } +@keyframes colorCycle { + 0% { + filter: hue-rotate(0deg) saturate(1); + } + 25% { + filter: hue-rotate(60deg) saturate(1.2); + } + 50% { + filter: hue-rotate(120deg) saturate(1.1); + } + 75% { + filter: hue-rotate(240deg) saturate(1.2); + } + 100% { + filter: hue-rotate(360deg) saturate(1); + } +} + /* Subtle overlay for depth */ .animated-gradient::after { content: ""; @@ -86,7 +107,7 @@ body { background: radial-gradient( ellipse at center, transparent 0%, - rgba(0, 0, 0, 0.3) 100% + rgba(0, 0, 0, 0.15) 100% ); pointer-events: none; } @@ -97,15 +118,16 @@ body { .coming-soon-card { position: relative; - background: rgba(30, 41, 59, 0.25); - backdrop-filter: blur(40px); - -webkit-backdrop-filter: blur(40px); - border: 1px solid rgba(148, 163, 184, 0.15); + background: rgba(255, 255, 255, 0.18); + backdrop-filter: blur(60px); + -webkit-backdrop-filter: blur(60px); + border: 1.5px solid rgba(255, 255, 255, 0.35); border-radius: 2.5rem; text-align: center; box-shadow: - 0 20px 40px -10px rgba(0, 0, 0, 0.2), - 0 0 0 1px rgba(255, 255, 255, 0.08) inset; + 0 25px 80px -15px rgba(0, 0, 0, 0.2), + 0 0 0 1px rgba(255, 255, 255, 0.3) inset, + 0 0 40px rgba(99, 102, 241, 0.1); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* Rectangle: wider than tall for hero feel */ width: clamp(300px, min(85vw, 85vh), 580px); @@ -119,11 +141,12 @@ body { } .coming-soon-card:hover { - background: rgba(30, 41, 59, 0.35); - border-color: rgba(148, 163, 184, 0.25); + background: rgba(255, 255, 255, 0.22); + border-color: rgba(255, 255, 255, 0.45); box-shadow: - 0 20px 40px -10px rgba(99, 102, 241, 0.15), - 0 0 0 1px rgba(148, 163, 184, 0.15) inset; + 0 30px 100px -15px rgba(99, 102, 241, 0.25), + 0 0 0 1.5px rgba(255, 255, 255, 0.4) inset, + 0 0 60px rgba(99, 102, 241, 0.15); } @media (max-width: 768px) { @@ -159,17 +182,13 @@ body { font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; - color: var(--text-primary); + color: #ffffff; margin-bottom: 1.25rem; - background: linear-gradient( - 135deg, - var(--accent-light) 20%, - var(--accent) 80% - ); - -webkit-background-clip: text; - -webkit-text-fill-color: transparent; - background-clip: text; - opacity: 0.95; + text-shadow: + 0 0 30px rgba(255, 255, 255, 0.3), + 0 0 60px rgba(99, 102, 241, 0.2), + 0 2px 10px rgba(0, 0, 0, 0.2); + opacity: 1; } @media (max-width: 768px) { @@ -283,9 +302,9 @@ body { .language-selector select { appearance: none; - background: rgba(30, 41, 59, 0.5); - backdrop-filter: blur(12px); - -webkit-backdrop-filter: blur(12px); + background: rgba(255, 255, 255, 0.12); + backdrop-filter: blur(20px); + -webkit-backdrop-filter: blur(20px); border: 1px solid var(--border-default); border-radius: 0.75rem; padding: 0.5rem 2.5rem 0.5rem 1rem; @@ -295,12 +314,12 @@ body { cursor: pointer; transition: all 0.2s ease-in-out; min-width: 120px; - background-color: rgba(30, 41, 59, 0.5); } .language-selector select:hover { border-color: var(--accent); - background: rgba(30, 41, 59, 0.6); + background: rgba(255, 255, 255, 0.18); + box-shadow: 0 0 20px rgba(99, 102, 241, 0.2); } .language-selector select:focus {