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

body {
    font-family: 'Poppins', sans-serif;
    background-color: white;
    color: black;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    z-index: 1;
}

.container {
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.app-icon {
    width: 160px;
    height: auto;
    margin-bottom: 20px;
}

.title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 0px;
    margin-top: -15px;
}

.subtitle {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 40px;
}

.app-store-link {
    display: inline-block;
}

.app-store-badge {
    height: 50px;
    width: auto;
    display: none;
}

@media (max-width: 768px) {
    .title {
        font-size: 36px;
    }
    
    .subtitle {
        font-size: 18px;
    }
    
    .app-store-badge {
        height: 50px;
    }
}