* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
overflow: hidden;
background: #000;
}
.animated-bg {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(45deg, #000000, #001a1a, #00FFFF, #001a1a, #000000);
background-size: 400% 400%;
animation: gradientShift 15s ease infinite;
}
@keyframes gradientShift {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
.particles {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
}
.particle {
position: absolute;
width: 4px;
height: 4px;
background: #00FFFF;
border-radius: 50%;
box-shadow: 0 0 10px #00FFFF;
animation: float 20s infinite;
}
.particle:nth-child(1) {
left: 10%;
animation-duration: 12s;
animation-delay: 0s;
}
.particle:nth-child(2) {
left: 20%;
animation-duration: 15s;
animation-delay: 2s;
}
.particle:nth-child(3) {
left: 30%;
animation-duration: 18s;
animation-delay: 4s;
}
.particle:nth-child(4) {
left: 40%;
animation-duration: 14s;
animation-delay: 1s;
}
.particle:nth-child(5) {
left: 50%;
animation-duration: 16s;
animation-delay: 3s;
}
.particle:nth-child(6) {
left: 60%;
animation-duration: 13s;
animation-delay: 5s;
}
.particle:nth-child(7) {
left: 70%;
animation-duration: 17s;
animation-delay: 2s;
}
.particle:nth-child(8) {
left: 80%;
animation-duration: 19s;
animation-delay: 4s;
}
.particle:nth-child(9) {
left: 90%;
animation-duration: 15s;
animation-delay: 1s;
}
.particle:nth-child(10) {
left: 15%;
animation-duration: 14s;
animation-delay: 6s;
}
@keyframes float {
0% {
transform: translateY(100vh) scale(0);
opacity: 0;
}
10% {
opacity: 1;
}
90% {
opacity: 1;
}
100% {
transform: translateY(-100vh) scale(1);
opacity: 0;
}
}
.waves {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
height: 200px;
overflow: hidden;
}
.wave {
position: absolute;
bottom: 0;
left: 0;
width: 200%;
height: 100%;
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="%2300FFFF" fill-opacity="0.3"/></svg>');
background-size: 50% 100%;
animation: wave 25s linear infinite;
}
.wave:nth-child(2) {
opacity: 0.5;
animation-duration: 15s;
animation-direction: reverse;
}
.wave:nth-child(3) {
opacity: 0.3;
animation-duration: 20s;
}
@keyframes wave {
0% { transform: translateX(0); }
100% { transform: translateX(-50%); }
}
.content {
position: relative;
z-index: 10;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
padding: 20px;
text-align: center;
}
h1 {
font-size: 64px;
font-weight: 700;
color: #00FFFF;
text-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
margin-bottom: 16px;
animation: glow 2s ease-in-out infinite alternate;
}
@keyframes glow {
from { text-shadow: 0 0 20px rgba(0, 255, 255, 0.5); }
to { text-shadow: 0 0 40px rgba(0, 255, 255, 1), 0 0 60px rgba(0, 255, 255, 0.5); }
}
.subtitle {
font-size: 24px;
color: #fff;
margin-bottom: 40px;
opacity: 0.9;
}
.card {
background: rgba(0, 26, 26, 0.7);
backdrop-filter: blur(10px);
border: 2px solid #00FFFF;
border-radius: 20px;
padding: 40px;
max-width: 600px;
box-shadow: 0 20px 60px rgba(0, 255, 255, 0.3);
animation: cardFloat 6s ease-in-out infinite;
}
@keyframes cardFloat {
0%, 100% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
}
.card h2 {
color: #00FFFF;
font-size: 28px;
margin-bottom: 16px;
}
.card p {
color: #ccc;
font-size: 16px;
line-height: 1.8;
margin-bottom: 12px;
}
.features {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 16px;
margin-top: 24px;
}
.feature {
background: rgba(0, 255, 255, 0.1);
border: 1px solid #00FFFF;
border-radius: 12px;
padding: 16px;
transition: all 0.3s;
}
.feature:hover {
background: rgba(0, 255, 255, 0.2);
transform: scale(1.05);
box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}
.feature-icon {
font-size: 32px;
margin-bottom: 8px;
}
.feature-text {
color: #00FFFF;
font-size: 14px;
font-weight: 600;
}
@media (max-width: 768px) {
h1 { font-size: 40px; }
.subtitle { font-size: 18px; }
.card { padding: 24px; }
.features { grid-template-columns: 1fr; }
}
No comments yet. Be the first!