/* Ashway.com - Pure Chaos Cute-Chaotic Contrast Theme */ body { margin: 0; font-family: 'Comic Sans MS', cursive, sans-serif; background: linear-gradient(135deg, #f8c8dc, #e3d4ff, #fff5f7); color: #222; overflow-x: hidden; } a { text-decoration: none; color: #6a0dad; font-weight: bold; position: relative; } a:hover { color: #ff1a75; } header { background: linear-gradient(90deg, #ff9de2, #d1c4ff); padding: 2rem; text-align: center; position: relative; overflow: hidden; } header h1 { font-size: 3rem; margin: 0; color: #222; } header p { font-size: 1.2rem; color: #ff1a75; } nav { background: #fff0ff; display: flex; justify-content: center; gap: 2rem; padding: 1rem; border-bottom: 2px solid #ff1a75; } nav a:hover::after { content: '🤩🤯🤡👹💋❤💜🖤👁👑🐭'; position: absolute; left: 0; bottom: -1.2rem; font-size: 0.9rem; animation: glitch 0.5s infinite; } @keyframes glitch { 0% {text-shadow: 2px 0 #ff1a75, -2px 0 #6a0dad;} 20% {text-shadow: -2px 0 #ff1a75, 2px 0 #6a0dad;} 40% {text-shadow: 2px 0 #ff1a75, -2px 0 #6a0dad;} 60% {text-shadow: -2px 0 #ff1a75, 2px 0 #6a0dad;} 80% {text-shadow: 2px 0 #ff1a75, -2px 0 #6a0dad;} 100% {text-shadow: 0 0 #222;} } main { padding: 2rem; max-width: 900px; margin: auto; } section { margin-bottom: 4rem; } h2 { font-size: 2rem; margin-bottom: 1rem; color: #ff1a75; } p, li { font-size: 1.1rem; line-height: 1.6; } ul { list-style: none; padding-left: 0; } li::before { content: '👁 '; } .emoji-float { position: absolute; font-size: 2rem; animation: floaty 6s infinite; opacity: 0.6; } @keyframes floaty { 0% {transform: translateY(0) rotate(0deg);} 50% {transform: translateY(-30px) rotate(20deg);} 100% {transform: translateY(0) rotate(0deg);} } .glitch-hover:hover { color: #ff1a75; animation: glitch 0.3s infinite; } .hidden-quote { opacity: 0; transition: opacity 0.3s; color: #6a0dad; } .hidden-quote.show { opacity: 1; }