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

body {
    font-family: 'Press Start 2P', cursive;
    background-color: #f5f5f5;
    background-image: url('background.png');
    background-repeat: repeat;
    background-size: 200px 200px;
    image-rendering: pixelated;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    padding: 20px;
    overflow: hidden;
    position: relative;
}

.container {
    max-width: 600px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 10;
}

.logo {
    margin-bottom: 40px;
}

.logo img {
    width: 150px;
    height: auto;
    image-rendering: pixelated;
    border-radius: 20px;
}

h1 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #fff;
    line-height: 1.6;
}

.tagline {
    font-size: 0.875rem;
    margin-bottom: 50px;
    color: #666;
    line-height: 1.8;
}

.cta-section {
    margin-bottom: 60px;
}

.app-store-badge {
    width: 200px;
    height: auto;
    transition: opacity 0.3s ease;
}

.app-store-badge:hover {
    opacity: 0.8;
}

.coming-soon {
    font-size: 0.75rem;
    color: #999;
    margin-top: 20px;
    line-height: 1.8;
}

footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 0.5px solid #6666666e;
}

footer p {
    font-size: 0.625rem;
    color: #999;
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    .tagline {
        font-size: 0.75rem;
    }

    .app-store-badge {
        width: 160px;
    }

    .logo img {
        width: 120px;
    }
}
