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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: #000;
    color: #fff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    max-width: 600px;
    padding: 40px 20px;
    text-align: center;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.logo {
    width: 550px;
    height: auto;
    margin-bottom: 16px;
    display: block;
}

.subtitle {
    font-size: 1.25rem;
    color: #888;
    margin-bottom: 48px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.tagline {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 500;
    margin-bottom: 32px;
}

.hero {
    margin-bottom: 48px;
}

.download-section {
    margin-bottom: 48px;
}

.download-button {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.download-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

.coming-soon {
    margin-top: 16px;
    font-size: 0.875rem;
    color: #666;
}

footer {
    color: #444;
    font-size: 0.875rem;
}

footer .contact {
    margin-top: 8px;
}

footer .contact a {
    color: #666;
    text-decoration: none;
}

footer .contact a:hover {
    color: #fff;
}

/* Deep link page styles */
.redirect-container {
    text-align: center;
    padding: 60px 20px;
}

.redirect-container h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.redirect-container p {
    color: #888;
    margin-bottom: 24px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #333;
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 24px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.manual-link {
    display: inline-block;
    color: #888;
    text-decoration: underline;
    font-size: 0.875rem;
}

.manual-link:hover {
    color: #fff;
}
