* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: #f0f0f0;
    font-family: sans-serif;
}

.app-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    height: 100vh;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

img {
    display: block;
}

.logo-tl {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 150px;
    z-index: 50;
}

.logo-tl img {
    width: 100% !important;
    height: auto !important;
}

.style1-content {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.style1-content img {
    width: 100%;
    height: 100vh;
    object-fit: fill;
}

.bottom-btn-wrapper {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    z-index: 60;
    pointer-events: none;
}

.download-btn-img {
    width: 60%;
    height: 40vh;
    object-fit: contain;
    margin: 0 auto;
    display: block;
    pointer-events: auto;
    transition: transform 0.1s;
}

.download-btn-img:active {
    transform: scale(0.95);
}

.download-btn-img1 {
    width: 80%;
    height: 25vh;
    object-fit: contain;
    margin: 0 auto;
    display: block;
    pointer-events: auto;
    transition: transform 0.1s;
}

.download-btn-img1:active {
    transform: scale(0.95);
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    width: 320px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.modal-content h3 {
    margin-bottom: 20px;
    font-size: 18px;
    color: #333;
    font-weight: bold;
}

.qr-box {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content p {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
}