Spaces:
Running
Running
File size: 3,547 Bytes
7a6aec8 6d8965e 7a6aec8 6d8965e 7a6aec8 6d8965e 7a6aec8 6d8965e 7a6aec8 6d8965e 7a6aec8 6d8965e 7a6aec8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 |
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Space Grotesk', sans-serif;
background: #000;
color: white;
overflow-x: hidden;
}
.psychedelic-bg {
background:
radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
animation: bgPulse 8s ease-in-out infinite alternate;
}
@keyframes bgPulse {
0% {
filter: hue-rotate(0deg);
transform: scale(1);
}
100% {
filter: hue-rotate(360deg);
transform: scale(1.1);
}
}
.psychedelic-text {
background: linear-gradient(45deg, #ff00ff, #00ffff, #ffff00, #ff00ff);
background-size: 400% 400%;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
animation: gradientShift 3s ease infinite;
}
@keyframes gradientShift {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
.psychedelic-btn {
background: linear-gradient(45deg, #ff00ff, #00ffff);
border: 2px solid transparent;
background-clip: padding-box;
position: relative;
color: white;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 2px;
}
.psychedelic-btn::before {
content: '';
position: absolute;
top: -2px;
left: -2px;
right: -2px;
bottom: -2px;
background: linear-gradient(45deg, #ff00ff, #00ffff, #ffff00, #ff00ff);
background-size: 400% 400%;
border-radius: inherit;
z-index: -1;
animation: gradientShift 3s ease infinite;
}
.illusion-card {
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 20px;
overflow: hidden;
transition: all 0.3s ease;
position: relative;
}
.illusion-card:hover {
transform: translateY(-10px) scale(1.02);
border-color: rgba(255, 255, 255, 0.3);
box-shadow: 0 20px 40px rgba(255, 0, 255, 0.3);
}
.illusion-card::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
transition: left 0.5s ease;
}
.illusion-card:hover::before {
left: 100%;
}
.floating {
animation: floating 6s ease-in-out infinite;
}
@keyframes floating {
0%, 100% { transform: translateY(0px) rotate(0deg); }
50% { transform: translateY(-20px) rotate(180deg); }
}
.spiral {
animation: spiral 4s linear infinite;
}
@keyframes spiral {
0% { transform: rotate(0deg) scale(1); }
50% { transform: rotate(180deg) scale(1.2); }
100% { transform: rotate(360deg) scale(1); }
}
.morphing-grid {
animation: morph 8s ease-in-out infinite;
}
@keyframes morph {
0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}
.glow {
filter: drop-shadow(0 0 20px rgba(255, 0, 255, 0.7));
}
.breathing {
animation: breathing 4s ease-in-out infinite;
}
@keyframes breathing {
0%, 100% { transform: scale(1); opacity: 1; }
50% { transform: scale(1.1); opacity: 0.8; }
} |