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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #006666;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #333;
}

.container {
    width: 100%;
    max-width: 800px;
}

.content {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.logo {
    font-size: 3.5rem;
    font-weight: 700;
    color: #006666;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.pro {
    color: #FFB800;
}

.status {
    margin-bottom: 30px;
}

.status-badge {
    display: inline-block;
    background: #FFB800;
    color: #006666;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 20px;
}

.description {
    font-size: 1.1rem;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.icon {
    width: 48px;
    height: 48px;
    color: #006666;
}

.feature span {
    font-weight: 500;
    color: #4a5568;
}

.coming-soon {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid #e2e8f0;
}

.coming-soon p {
    font-size: 1.2rem;
    color: #006666;
    font-weight: 600;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@media (max-width: 768px) {
    .content {
        padding: 40px 30px;
    }

    .logo {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .description {
        font-size: 1rem;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}
