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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #da303e 30%, #d8822e 100%);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container {
    text-align: center;
    color: white;
}

.loading-spinner {
    width: 120px;
    height: 120px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.logo {
    width: 180px;
    height: 180px;
    background: white;
    border-radius: 20px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #667eea;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    background-image: url('/logo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.loading-text {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.loading-subtext {
    font-size: 14px;
    opacity: 0.8;
}

.redirect-content {
    display: none;
    max-width: 400px;
    padding: 20px;
    text-align: center;
    margin: 0 auto;
}

.redirect-content h2 {
    margin-bottom: 20px;
    font-size: 24px;
}

.redirect-content p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.store-button {
    display: inline-block;
    padding: 12px 24px;
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    margin: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.store-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.app-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 15px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: #667eea;
} 