:root {
    --primary-color: #039D55;
    --bg-color: #ffffff;
    --text-color: #000000;
    --font-family: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-family);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 2rem;
}

.logo-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    animation: float 6s ease-in-out infinite;
}

.logo {
    width: 100%;
    max-width: 300px;
    height: auto;
    position: relative;
    z-index: 2;
}

.content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #000000, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.content p {
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.8s forwards;
}

.loader {
    width: 50px;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.2s forwards;
}

.loader::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--primary-color);
    animation: loading 2s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes loading {
    0% {
        left: 0;
        width: 0;
    }

    50% {
        left: 0;
        width: 100%;
    }

    100% {
        left: 100%;
        width: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content h1 {
        font-size: 2.5rem;
    }

    .logo {
        max-width: 200px;
    }
}