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

body {
    font-family: 'Blinker', Arial, sans-serif;
    background-color: #f0f2f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0 25px;
    text-align: center;
}

.container {
    background: white;
    padding: 30px 30px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    max-width: 400px;
    width: 85%;
    transition: all 0.3s ease;
}

.logo {
    margin-bottom: 20px;
    object-fit: cover;
}

h1 {
    color: #1a1a1a;
    margin: 0 0 10px 0;
    font-size: 22px;
    font-weight: 700;
}

p {
    color: #65676b;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.5;
}

.badges-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    width: 100%;
}

.store-badge img {
    height: 55px;
    width: auto;
    transition: transform 0.2s;
}

.store-badge:hover img {
    transform: scale(1.02);
}

.qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 16px;
    border: 1px dashed #ccc;
    margin-bottom: 20px;
}

.qr-code {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 15px;
    border-radius: 8px;
}

.qr-text {
    font-size: 14px;
    color: #555;
    font-weight: 500;
    margin-bottom: 15px;
}

.qr-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qr-title {
    font-weight: bold;
    margin-bottom: 5px; 
    color: #333;
    font-size: 16px;
}

.hidden {
    display: none !important;
}

.backup-links {
    font-size: 13px;
}

.backup-links a {
    color: #007bff;
    text-decoration: none;
    margin: 0 5px;
}

.img-qr {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
}

.mobile-divider {
    border: none;
    height: 0.7px;
    background-color: #d1d5db;
    width: 80%;
    margin: 10px 0;
}

.btn-pdf,
.btn-pdf-desktop {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background-color: #3fc8eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
	font-weight: bold;
    text-align: center;     
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn-pdf:hover,
.btn-pdf-desktop:hover {
    background-color: #33adcc;
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(14, 115, 140, 0.3);
}

.btn-pdf svg,
.btn-pdf-desktop svg {
    flex-shrink: 0;
}

.btn-pdf {
    width: 185.625px;
    min-height: 60px;
    margin: 0 auto;
    padding: 0.5rem 12px;
    gap: 8px;
    font-size: 0.9rem;
    line-height: 1.15;
}

.btn-pdf-desktop {
    width: 80%;
    margin: 0 auto;
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .btn-pdf svg {
        width: 28px !important;
        height: 28px !important;
    }
}
