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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #1e8e3e 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    padding: 40px 20px;
    z-index: 10;
}

.content {
    text-align: center;
    color: white;
    animation: fadeInUp 1s ease-out;
}

.logo {
    margin-bottom: 30px;
    position: relative;
}

.company-name {
    font-size: 4.5rem;
    font-weight: 700;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
    background: linear-gradient(45deg, #ffffff, #90ee90, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s infinite;
}

.leaf-decoration {
    font-size: 3rem;
    animation: float 3s ease-in-out infinite;
    display: inline-block;
}

.tagline {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.coming-soon {
    margin: 50px 0;
}

.coming-text {
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 8px;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s ease-in-out infinite, shimmer 3s infinite;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    display: inline-block;
}

.features {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.feature-item {
    text-align: center;
    animation: fadeInUp 1s ease-out;
    animation-delay: 0.3s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.feature-item:nth-child(2) {
    animation-delay: 0.5s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.7s;
}

.feature-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
    animation: float 2s ease-in-out infinite;
}

.feature-item p {
    font-size: 1.1rem;
    font-weight: 500;
}

.background-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.leaf {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: floatAround 15s infinite ease-in-out;
}

.leaf-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.leaf-2 {
    top: 20%;
    right: 15%;
    animation-delay: 3s;
}

.leaf-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 6s;
}

.leaf-4 {
    bottom: 15%;
    right: 10%;
    animation-delay: 9s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

@keyframes floatAround {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(50px, -50px) rotate(90deg);
    }
    50% {
        transform: translate(-30px, -100px) rotate(180deg);
    }
    75% {
        transform: translate(-50px, -50px) rotate(270deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@media (max-width: 768px) {
    .company-name {
        font-size: 3rem;
    }
    
    .tagline {
        font-size: 1.5rem;
    }
    
    .coming-text {
        font-size: 2rem;
        letter-spacing: 4px;
    }
    
    .features {
        gap: 40px;
    }
    
    .description {
        font-size: 1rem;
        padding: 0 20px;
    }
}

