@font-face {
    font-family: 'BayerUniversalMine';
    src: url('./BayerUniversal-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
    overflow: hidden;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    height: 100vh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.welcome-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    margin: auto 0;
}

.logo {
    width: 180px;
    height: 180px;
    border-radius: 24px;
    object-fit: contain;
}

.app-name-mine {
    font-size: 80px;
    font-family: 'BayerUniversalMine', sans-serif;
    margin: 8px 0 16px 0;
}

.subtitle {
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    font-size: 18px;
    margin-bottom: 24px;
    opacity: 0.8;
    line-height: 24px;
    color: #000;
}

.cta-button {
    display: flex;
    justify-content: center;
}

.button {
    display: inline-block;
    padding: 16px 32px;
    background-color: #007AFF;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.2s ease;
}

.button:hover {
    background-color: #0056CC;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.content h1 {
    font-size: 32px;
    font-weight: 600;
    margin: 24px 0 16px 0;
    color: #000;
}

.content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.5;
}

.app-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.app-link {
    display: inline-block;
    padding: 16px 32px;
    background-color: #007AFF;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.2s ease;
    min-width: 200px;
}

.app-link:hover {
    background-color: #0056CC;
}

.app-link.android {
    background-color: #34A853;
}

.app-link.android:hover {
    background-color: #2D8A47;
}

footer {
    text-align: center;
    padding: 1rem 0;
    color: #000;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: auto;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

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

    .app-name-mine {
        font-size: 56px;
        margin: 4px 0 12px 0;
    }

    .subtitle {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 16px;
    }

    footer {
        font-size: 0.8rem;
        padding: 0.5rem 0;
    }

    footer p {
        margin: 0.25rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0.75rem 0.75rem 0.5rem 0.75rem;
    }

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

    .app-name-mine {
        font-size: 48px;
        margin: 2px 0 8px 0;
    }

    .subtitle {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 12px;
    }

    .welcome-content {
        margin: auto 0 0.5rem 0;
    }

    footer {
        font-size: 0.7rem;
        padding: 0.25rem 0 0.5rem 0;
    }

    footer p {
        margin: 0.2rem 0;
    }
}

@media (max-height: 700px) {
    .logo {
        width: 100px;
        height: 100px;
    }

    .app-name-mine {
        font-size: 48px;
        margin: 4px 0 8px 0;
    }

    .subtitle {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 12px;
    }

    footer {
        font-size: 0.7rem;
        padding: 0.5rem 0;
    }
}

@media (max-height: 600px) {
    .container {
        padding: 0.5rem 0.5rem 0.25rem 0.5rem;
    }

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

    .app-name-mine {
        font-size: 40px;
        margin: 2px 0 6px 0;
    }

    .subtitle {
        font-size: 12px;
        line-height: 18px;
        margin-bottom: 8px;
    }

    .welcome-content {
        padding: 0 10px;
        margin: auto 0 0.25rem 0;
    }

    footer {
        font-size: 0.65rem;
        padding: 0 0 0.25rem 0;
    }

    footer p {
        margin: 0.1rem 0;
    }
}
