/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden; /* Prevent scrolling caused by circles */
}

/* Container Styling */
.container {
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Name and Title Styling */
.name {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
    letter-spacing: 2px;
    background: linear-gradient(45deg, #00ff87, #60efff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(96, 239, 255, 0.3);
    /* animation: textFloat 3s ease-in-out infinite; */
}

.title {
    font-size: 1.5rem;
    color: #ffffffcc;
    margin-bottom: 30px;
    animation: fadeIn 2.5s ease-in-out;
}

/* Construction Text Styling */
.construction-text {
    font-size: 2rem;
    margin-bottom: 20px;
    /* animation: bounce 2s infinite; */
}

/* Description Styling */
.description {
    color: #ffffffcc;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.6;
    animation: fadeIn 3s ease-in-out;
}

/* Social Links Styling */
.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-5px);
}

/* Background Circles */
.circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1; /* Ensure circles are behind content */
}

.circle {
    position: absolute;
    background: linear-gradient(45deg, #00ff8855, #60efff55);
    border-radius: 50%;
    filter: blur(40px);
    animation: float 20s infinite ease-in-out;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: 20%;
    left: 20%;
}

.circle-2 {
    width: 250px;
    height: 250px;
    top: 60%;
    left: 70%;
}

.circle-3 {
    width: 200px;
    height: 200px;
    top: 80%;
    left: 40%;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes textFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(10vw, 10vh);
    }
    50% {
        transform: translate(-5vw, -10vh);
    }
    75% {
        transform: translate(-10vw, 5vh);
    }
    100% {
        transform: translate(0, 0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .name {
        font-size: 2.5rem;
    }

    .title {
        font-size: 1.2rem;
    }

    .description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .circle-1 {
        width: 200px;
        height: 200px;
    }

    .circle-2 {
        width: 150px;
        height: 150px;
    }

    .circle-3 {
        width: 100px;
        height: 100px;
    }
}