:root {
    --bg-gradient: linear-gradient(135deg, #ffffff 0%, #e6e9f0 100%);
    --text-color: #1a202c;
    --accent-color: #0d9488;
    --secondary-text: #4a5568;
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-gradient);
    height: 100vh;
    overflow: hidden;
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

/* Background Particles */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: floatParticle 10s infinite ease-in-out;
}

/* Hardcoded random positions for CSS-only particles */
.particle:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-duration: 12s;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 30%;
    left: 80%;
    animation-duration: 15s;
    animation-delay: 1s;
    width: 6px;
    height: 6px;
}

.particle:nth-child(3) {
    top: 70%;
    left: 10%;
    animation-duration: 8s;
    animation-delay: 2s;
}

.particle:nth-child(4) {
    top: 40%;
    left: 40%;
    animation-duration: 14s;
    animation-delay: 0.5s;
    width: 3px;
    height: 3px;
}

.particle:nth-child(5) {
    top: 80%;
    left: 70%;
    animation-duration: 18s;
    animation-delay: 3s;
}

.particle:nth-child(6) {
    top: 15%;
    left: 60%;
    animation-duration: 11s;
    animation-delay: 1.5s;
}

.particle:nth-child(7) {
    top: 60%;
    left: 30%;
    animation-duration: 16s;
    animation-delay: 2.5s;
    width: 5px;
    height: 5px;
}

.particle:nth-child(8) {
    top: 90%;
    left: 90%;
    animation-duration: 20s;
    animation-delay: 4s;
}

.particle:nth-child(9) {
    top: 25%;
    left: 15%;
    animation-duration: 13s;
    animation-delay: 0.8s;
}

.particle:nth-child(10) {
    top: 50%;
    left: 50%;
    animation-duration: 17s;
    animation-delay: 3.5s;
    width: 2px;
    height: 2px;
}

.particle:nth-child(11) {
    top: 85%;
    left: 25%;
    animation-duration: 10s;
    animation-delay: 1.2s;
}

.particle:nth-child(12) {
    top: 5%;
    left: 95%;
    animation-duration: 22s;
    animation-delay: 0.2s;
}

.particle:nth-child(13) {
    top: 35%;
    left: 5%;
    animation-duration: 14s;
    animation-delay: 2.8s;
}

.particle:nth-child(14) {
    top: 65%;
    left: 85%;
    animation-duration: 19s;
    animation-delay: 4.5s;
}

.particle:nth-child(15) {
    top: 95%;
    left: 45%;
    animation-duration: 11s;
    animation-delay: 1.8s;
}

@keyframes floatParticle {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-50px) translateX(20px);
        opacity: 0.6;
    }
}

/* Main Content */
.content-wrapper {
    z-index: 10;
    max-width: 800px;
    padding: 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    margin: 1rem;
}

/* Antigravity Text Effect */
.main-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: transparent;
    -webkit-text-stroke: 1px var(--text-color);
    position: relative;
    letter-spacing: 2px;
    animation: antigravity 6s ease-in-out infinite;
}

.main-title::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    width: 100%;
    color: var(--accent-color);
    opacity: 0.8;
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
    animation: glitch 4s infinite reverse;
}

@keyframes antigravity {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(1deg);
    }
}

.sub-title {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.description {
    color: var(--secondary-text);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Progress Bar */
.progress-container {
    width: 100%;
    max-width: 400px;
    height: 6px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin: 0 auto 3rem;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    width: 30%;
    /* Initial width */
    height: 100%;
    background: var(--accent-color);
    border-radius: 10px;
    position: relative;
    animation: progressLoading 3s ease-in-out infinite;
    box-shadow: 0 0 10px var(--accent-color);
}

@keyframes progressLoading {
    0% {
        width: 30%;
        transform: translateX(-10%);
    }

    50% {
        width: 60%;
        transform: translateX(10%);
    }

    100% {
        width: 30%;
        transform: translateX(-10%);
    }
}

/* Social Icons */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--secondary-text);
    border-radius: 50%;
    color: var(--secondary-text);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.social-icon:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(100, 255, 218, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
        -webkit-text-stroke: 0.5px var(--text-color);
    }

    .sub-title {
        font-size: 1.2rem;
    }

    .content-wrapper {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
}