/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    background-color: #050505;
    color: #ffffff;
}

/* Abstract Animated Background */
.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    filter: blur(60px);
}

.shape {
    position: absolute;
    border-radius: 50%;
    animation: float 20s infinite ease-in-out alternate;
    opacity: 0.6;
}

.shape-1 {
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, #ff3366, #ff9933);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 35vw;
    height: 35vw;
    background: radial-gradient(circle, #33ccff, #9933ff);
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
}

.shape-3 {
    width: 30vw;
    height: 30vw;
    background: radial-gradient(circle, #00ffcc, #3366ff);
    top: 40%;
    left: 40%;
    animation-delay: -10s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(10vw, 10vh) scale(1.2);
    }
    100% {
        transform: translate(-10vw, 5vh) scale(0.9);
    }
}

/* Main Content Container */
.container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    padding: 20px;
}

/* Glassmorphism Content Box */
.content {
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 600px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeUp 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Typography */
.title {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #a3a3a3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #a3a3a3;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 768px) {
    .title {
        font-size: 3rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .content {
        padding: 2rem;
    }
    
    .shape {
        filter: blur(40px);
    }
    
    .shape-1 {
        width: 60vw;
        height: 60vw;
    }
    
    .shape-2 {
        width: 55vw;
        height: 55vw;
    }
    
    .shape-3 {
        width: 50vw;
        height: 50vw;
    }
}
