        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        }
        
        body {
            background-color: #fff;
            color: #333;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 20px;
            text-align: center;
        }
        
        .container {
            max-width: 500px;
            width: 100%;
            padding: 40px 20px;
        }
        
        .logo {
            width: 120px;
            height: auto;
            margin-bottom: 30px;
        }
        
        h1 {
            font-size: 24px;
            margin-bottom: 20px;
            color: #222;
            font-weight: 600;
        }
        
        p {
            font-size: 16px;
            color: #666;
            line-height: 1.5;
        }
        
        .store-link {
            color: #666;
        }

        .cta-button {
            display: inline-block;
            background-color: #10072d;
            color: white;
            text-decoration: none;
            font-size: 18px;
            font-weight: 500;
            padding: 16px 32px;
            border-radius: 10px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            width: 100%;
            max-width: 280px;
/*            box-shadow: 0 4px 12px rgba(0, 122, 255, 0.2); */
        }
        
        .cta-button:hover {
            background-color: #10072d;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(0, 122, 255, 0.3);
        }
        
        .cta-button:active {
            transform: translateY(0);
        }
        
        @media (max-width: 480px) {
            .container {
                padding: 30px 15px;
            }
            
            .logo {
                width: 150px;
                margin-bottom: 25px;
            }
            
            h1 {
                font-size: 22px;
            }
            
            p {
                font-size: 15px;
            }
            
            .cta-button {
                font-size: 17px;
                padding: 14px 24px;
            }
        }
