* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
}

body {
    background-color: #ffffff;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    max-width: 500px;
    width: 100%;
    padding: 20px;
    text-align: center;
}

.logo {
    margin-bottom: 20px;
}

#logo-img {
    width: 120px;
    height: auto;
    margin: 0 auto;
}

h1 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #444;
}

h2 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 30px;
    color: #1a56db;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 30px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 260px;
    height: 80px;
}

.download-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.store-button {
    width: 115%;
    height: auto;
    object-fit: contain;
    max-height: 115%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Google Play 버튼 특정 수정 */
.google-play .store-button {
    width: 100%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* App Store 버튼 너비 조정 */
.app-store .store-button {
    width: 80%;
}

.qr-section {
    margin-top: 20px;
}

.qr-section p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.5;
}

.qr-code img {
    width: 180px;
    height: 180px;
    margin: 0 auto;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 5px;
}

@media (max-width: 480px) {
    .container {
        padding: 15px;
    }
    
    h1 {
        font-size: 20px;
    }
    
    h2 {
        font-size: 18px;
    }
    
    #logo-img {
        width: 100px;
    }
    
    .download-btn {
        width: 220px;
        height: 70px;
    }
    
    .qr-code img {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 360px) {
    #logo-img {
        width: 80px;
    }
    
    .download-btn {
        width: 200px;
        height: 65px;
    }
}

.kepick {
    color: #1a56db;
} 