Changed around line 1
+ :root {
+ --primary-color: #ff6b6b;
+ --secondary-color: #4ecdc4;
+ --dark-color: #2c3e50;
+ --light-color: #f7f9fc;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', system-ui, sans-serif;
+ line-height: 1.6;
+ background: var(--light-color);
+ color: var(--dark-color);
+ }
+
+ .hero-header {
+ min-height: 60vh;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ background: linear-gradient(135deg, #6c5ce7, #a363d9);
+ padding: 2rem;
+ text-align: center;
+ }
+
+ .rainbow-text {
+ font-size: 4rem;
+ background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
+ background-size: 200%;
+ -webkit-background-clip: text;
+ background-clip: text;
+ color: transparent;
+ animation: rainbow 2s linear infinite;
+ }
+
+ .bouncing-text {
+ font-size: 1.5rem;
+ color: white;
+ animation: bounce 1s ease infinite;
+ }
+
+ .glitch-text {
+ position: relative;
+ font-size: 3rem;
+ font-weight: bold;
+ text-transform: uppercase;
+ text-shadow: 0.05em 0 0 rgba(255,0,0,.75),
+ -0.025em -0.05em 0 rgba(0,255,0,.75),
+ 0.025em 0.05em 0 rgba(0,0,255,.75);
+ animation: glitch 500ms infinite;
+ }
+
+ .wave-text {
+ font-size: 3rem;
+ animation: wave 2s ease-in-out infinite;
+ }
+
+ .pop-text {
+ font-size: 3rem;
+ transform-style: preserve-3d;
+ animation: pop 1s ease infinite;
+ }
+
+ .text-playground {
+ padding: 4rem 2rem;
+ display: grid;
+ gap: 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .effect-container {
+ display: grid;
+ gap: 3rem;
+ text-align: center;
+ }
+
+ .interactive-demo {
+ background: white;
+ padding: 2rem;
+ border-radius: 1rem;
+ box-shadow: 0 10px 20px rgba(0,0,0,0.1);
+ margin: 2rem auto;
+ max-width: 800px;
+ }
+
+ .input-container {
+ display: flex;
+ flex-direction: column;
+ gap: 1rem;
+ }
+
+ .effect-buttons {
+ display: flex;
+ gap: 1rem;
+ flex-wrap: wrap;
+ justify-content: center;
+ }
+
+ .effect-btn {
+ padding: 0.5rem 1rem;
+ border: none;
+ border-radius: 0.5rem;
+ background: var(--primary-color);
+ color: white;
+ cursor: pointer;
+ transition: transform 0.2s;
+ }
+
+ .effect-btn:hover {
+ transform: translateY(-2px);
+ }
+
+ .preview-box {
+ margin-top: 2rem;
+ padding: 2rem;
+ border: 2px dashed var(--secondary-color);
+ border-radius: 1rem;
+ min-height: 100px;
+ }
+
+ @keyframes rainbow {
+ 0% { background-position: 0% 50%; }
+ 100% { background-position: 200% 50%; }
+ }
+
+ @keyframes bounce {
+ 50% { transform: translateY(-20px); }
+ }
+
+ @keyframes glitch {
+ 0% { text-shadow: 0.05em 0 0 rgba(255,0,0,.75),
+ -0.025em -0.05em 0 rgba(0,255,0,.75),
+ 0.025em 0.05em 0 rgba(0,0,255,.75); }
+ 14% { text-shadow: 0.05em 0 0 rgba(255,0,0,.75),
+ -0.025em -0.05em 0 rgba(0,255,0,.75),
+ 0.025em 0.05em 0 rgba(0,0,255,.75); }
+ 15% { text-shadow: -0.05em -0.025em 0 rgba(255,0,0,.75),
+ 0.025em 0.025em 0 rgba(0,255,0,.75),
+ -0.05em -0.05em 0 rgba(0,0,255,.75); }
+ 49% { text-shadow: -0.05em -0.025em 0 rgba(255,0,0,.75),
+ 0.025em 0.025em 0 rgba(0,255,0,.75),
+ -0.05em -0.05em 0 rgba(0,0,255,.75); }
+ 50% { text-shadow: 0.025em 0.05em 0 rgba(255,0,0,.75),
+ 0.05em 0 0 rgba(0,255,0,.75),
+ 0 -0.05em 0 rgba(0,0,255,.75); }
+ 99% { text-shadow: 0.025em 0.05em 0 rgba(255,0,0,.75),
+ 0.05em 0 0 rgba(0,255,0,.75),
+ 0 -0.05em 0 rgba(0,0,255,.75); }
+ 100% { text-shadow: -0.025em 0 0 rgba(255,0,0,.75),
+ -0.025em -0.025em 0 rgba(0,255,0,.75),
+ -0.025em -0.05em 0 rgba(0,0,255,.75); }
+ }
+
+ @keyframes wave {
+ 0%, 100% { transform: translateY(0); }
+ 50% { transform: translateY(-20px); }
+ }
+
+ @keyframes pop {
+ 0%, 100% { transform: scale(1); }
+ 50% { transform: scale(1.1); }
+ }
+
+ @media (max-width: 768px) {
+ .rainbow-text {
+ font-size: 2.5rem;
+ }
+
+ .effect-container > * {
+ font-size: 2rem;
+ }
+
+ .effect-buttons {
+ flex-direction: column;
+ }
+ }