* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    height: 100vh;
    background: linear-gradient(120deg, #ff0080, #7928ca, #2afadf);
    background-size: 300% 300%;
    animation: gradientMove 8s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Animated gradient background */
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Floating colorful blur circles */
.background::before,
.background::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.7;
}

.background::before {
    background: #ffdd00;
    top: 10%;
    left: 15%;
}

.background::after {
    background: #00ffcc;
    bottom: 15%;
    right: 10%;
}

/* Card */
.card {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    color: #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

h1 {
    font-size: 42px;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(255,255,255,0.5);
}

.main-text {
    font-size: 20px;
    margin-bottom: 10px;
}

.sub-text {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 25px;
}

/* Color badge */
.badge {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: bold;
    background: linear-gradient(90deg, #ffcc00, #ff0066);
    color: #000;
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.7);
}
