/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2d3748;
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 800px;
    width: 90%;
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.8s ease-in;
}

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

/* Logo */
.logo-container {
    margin-bottom: 2rem;
    animation: fadeIn 0.8s ease-in;
}

.logo {
    width: 250px;
    height: 250px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05) rotate(2deg);
}

/* Typography */
.main-title {
    font-size: 3rem;
    font-weight: 700;
    color: #4a5568;
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
    animation: fadeIn 0.8s ease-in;
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: #718096;
    margin-bottom: 2rem;
    animation: fadeIn 0.8s ease-in;
}

.divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #4a5568, #718096);
    margin: 2rem auto;
    border-radius: 2px;
    animation: fadeIn 0.8s ease-in;
}

.coming-soon {
    font-size: 2rem;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 1.5rem;
    animation: fadeIn 0.8s ease-in;
}

.description {
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 0.8s ease-in;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    animation: fadeIn 0.8s ease-in;
}

.primary-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #4a5568;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 85, 104, 0.2);
}

.primary-button:hover {
    background: #2d3748;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 85, 104, 0.3);
}

/* Links Section */
.links-section {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: fadeIn 0.8s ease-in;
}

.text-link {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
}

.text-link:hover {
    color: #2d3748;
    border-bottom: 2px solid #4a5568;
}

.text-link.linktree {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Footer */
.footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    animation: fadeIn 0.8s ease-in;
}

.footer p {
    font-size: 0.9rem;
    color: #a0aec0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 2rem 1.5rem;
    }

    .main-title {
        font-size: 3rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .coming-soon {
        font-size: 1.5rem;
    }

    .description {
        font-size: 1rem;
    }

    .logo {
        width: 120px;
        height: 120px;
    }

    .action-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .primary-button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .links-section {
        flex-direction: column;
        gap: 0.8rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .logo {
        width: 100px;
        height: 100px;
    }
}