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

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

.container {
    width: 100%;
    max-width: 600px;
    padding: 40px 20px;
}

.content {
    text-align: center;
}

.app-icon {
    margin-bottom: 32px;
}

.app-icon img {
    width: 120px;
    height: 120px;
    border-radius: 26px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.app-title {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1d1d1f;
}

.app-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: #6e6e73;
    margin-bottom: 16px;
}

.app-description {
    font-size: 16px;
    color: #6e6e73;
    margin-bottom: 32px;
    line-height: 1.5;
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #000000;
    color: #ffffff;
    padding: 14px 40px;
    border-radius: 24px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    margin-bottom: 40px;
}

.download-button:hover {
    background-color: #1d1d1f;
}

.apple-icon {
    width: 20px;
    height: 20px;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 32px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-dot.blue {
    background-color: #007AFF;
}

.feature-dot.green {
    background-color: #34C759;
}

.feature-dot.purple {
    background-color: #AF52DE;
}

.feature-dot.red {
    background-color: #FF3B30;
}

.feature-text {
    font-size: 14px;
    color: #6e6e73;
}

.compatibility {
    font-size: 13px;
    color: #86868b;
}

@media (max-width: 480px) {
    .app-title {
        font-size: 36px;
    }
    
    .app-subtitle {
        font-size: 18px;
    }
    
    .features {
        gap: 12px 24px;
    }
}

