body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    background-color: #F5F5F5;
    margin: 0;
    padding: 0;
    color: #495057;
    -webkit-font-smoothing: antialiased;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    padding: 24px;
    box-sizing: border-box;
}

.container {
    text-align: center;
    max-width: 800px;
    width: 90vw;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.logo-wrapper {
    margin-bottom: 24px;
}

.logo {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 28px;
}

h1 {
    font-size: 32px;
    font-weight: 700;
    color: #30B6FE;
    /* Primary Blue */
    margin: 0 0 12px;
}

.subtitle {
    font-size: 16px;
    line-height: 1.5;
    color: #6c757d;
    margin: 0 0 40px;
    font-weight: 400;
}

.actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.store-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.1s, box-shadow 0.2s, background-color 0.2s;
    border: none;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background-color: #0096FF;
    /* Secondary Blue */
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
    padding: 16px 24px;
    box-shadow: 0 4px 6px rgba(0, 150, 255, 0.25);
}

.btn-primary:hover {
    background-color: #007acc;
    box-shadow: 0 6px 8px rgba(0, 150, 255, 0.3);
}

.btn-store {
    background-color: #000000;
    color: #ffffff;
    padding: 10px 24px;
    justify-content: center;
    /* Center content */
    gap: 12px;
}

.btn-store:hover {
    background-color: #212529;
}

.icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.btn-primary .icon {
    margin-right: 12px;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
    text-align: left;
}

.btn-text .small {
    font-size: 10px;
    opacity: 0.8;
    text-transform: uppercase;
    font-weight: 500;
}

.btn-text .large {
    font-size: 16px;
    font-weight: 600;
}

.hidden {
    display: none !important;
}

.footer {
    margin-top: 32px;
    color: #adb5bd;
    font-size: 12px;
}

.footer p {
    margin: 0;
}

/* Mobile optimizations */
@media (max-width: 480px) {
    body {
        background-color: #ffffff;
        /* Use white background on mobile for full screen feel */
    }

    .page-wrapper {
        padding: 24px;
        justify-content: center;
    }

    .container {
        padding: 0;
        box-shadow: none;
        background: transparent;
        max-width: 100%;
    }

    h1 {
        font-size: 28px;
    }

    .subtitle {
        font-size: 16px;
        margin-bottom: 48px;
        padding: 0 16px;
    }

    .btn {
        padding: 16px 24px;
    }
}