:root {
    --primary-color: #77b02b;
    --secondary-color: #8e8e8e;
    --bg-color: #f8f9fa;
    --text-color: #333;
    --soft-blue: #4a90e2; /* 부드러운 파란색 정의 */
}

body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.main-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1100px;
    width: 100%;
}

.container, .info-panel {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.container { text-align: center; }

.version-tag {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(119, 176, 43, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.update-info {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 30px;
}

.download-box {
    display: grid;
    gap: 12px;
    margin-bottom: 20px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    text-decoration: none;
    color: white;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-text {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.btn-setup { background-color: var(--primary-color); }
.btn-setup:hover { background-color: #669a24; transform: translateY(-2px); }
.btn-portable { background-color: var(--secondary-color); }
.btn-portable:hover { background-color: #7a7a7a; transform: translateY(-2px); }

.btn span {
    font-size: 0.8rem;
    font-weight: normal;
    opacity: 0.8;
    margin-top: 4px;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    min-width: 40px;
    height: 35px;
    padding: 0 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    margin-left: 10px;
}

.main-img {
    max-width: 100%; 
    height: auto;
    border-radius: 5px;
    margin: 20px auto 10px auto;
    display: block;
    border: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.info-panel {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.info-title {
    font-size: 13pt;
    line-height: 25px;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

/* 추가된 파란색 타이틀 클래스 */
.section-blue {
    color: var(--soft-blue);
}

hr {
    border: 0;
    border-top: 1px solid #eee;
    margin: 15px 0;
}

.info-content {
    font-size: 11pt;
    line-height: 2.2;
    color: #444;
}

.patch-list {
    font-size: 10pt;
    line-height: 1.8;
    color: #666;
}

.brand-footer {
    margin-top: auto;
    padding-top: 30px;
    text-align: center;
    border-top: 1px solid #eee;
}

.brand-name {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #aaa;
}

.visit-count {
    display: inline-block;
    margin-left: 8px;
    font-size: 0.8rem;
    font-weight: normal;
    color: var(--primary-color);
    background: #f0f7e8;
    padding: 2px 10px;
    border-radius: 12px;
    vertical-align: middle;
}

.brand-email {
    display: block;
    font-size: 0.85rem;
    color: #ccc;
    text-decoration: none;
    margin-top: 5px;
}

@media (max-width: 900px) {
    .main-wrapper {
        grid-template-columns: 1fr;
        padding-bottom: 40px;
    }
}