body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    background-color: #f5f5f5;
    color: #333;
}

/*
.site-header {
    background: linear-gradient(to bottom right, #29b6f6, #0277bd);
    padding: 10px 0;
    text-align: center;
    border-bottom: 1px solid #ddd;
    color: white;
}
*/
.site-header {
    background: linear-gradient(to bottom right, #29b6f6, #0277bd);
    padding: 10px 20px;
    border-bottom: 1px solid #ddd;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 15px auto;
    position: relative;
}

.ci-box {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.ci-logo {
    max-height: 50px;
    display: block;
}

.email-box {
    margin-left: auto;
}

.email-button {
    background-color: white;
    color: #0277bd;
    font-weight: bold;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 14px;
    transition: background-color 0.2s;
}

.email-button:hover {
    background-color: #e0f2ff;
}




.promo-wrapper {
    margin-top: 0;
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
}


.promo-blur-bg {
    position: absolute;
    inset: 0;
    background: url('/asset/img/devkrona/app01/main_promotion.png') center center / cover no-repeat;
    filter: blur(40px);
    transform: scaleX(1.2);
    z-index: 0;
}


.promo-image {
    position: relative;
    z-index: 1;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}


.store-button-group {
    position: absolute;
    bottom: 30px;
    /* 이미지 하단 기준 간격 */
    z-index: 2;
    display: flex;
    gap: 16px;
    background: rgba(0, 0, 0, 0.3);
    /* 살짝 어두운 배경 (선택) */
    padding: 10px 20px;
    border-radius: 12px;
    margin-bottom: 150px;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-weight: bold;
    font-size: 14px;
    border-radius: 6px;
    text-decoration: none;
    color: white;
    background-color: #3ddc84;
    /* 기본 Android 스타일 */
    transition: opacity 0.3s;
}

.store-button img {
    height: 80px;
}

/* iOS 버튼 스타일 */
.store-button.ios {
    background-color: #007aff;
}

/* 비활성화 처리 */
.store-button.disabled {
    pointer-events: none;
    opacity: 0.4;
    filter: grayscale(1);
    cursor: not-allowed;
}

.screenshot-section {
    margin: 40px 20px;
}

.screenshot-section h3 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

.screenshot-scroll {
    display: flex;
    justify-content: center;
    /* ✅ 중앙 정렬 추가 */
    overflow-x: auto;
    gap: 20px;
    /* ✅ 간격 넉넉히 */
    padding: 20px;
}


.screenshot-scroll img {
    height: 350px;
    /* ✅ 기존보다 확대 (예: 200 → 260) */
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    /* ✅ 줄어들지 않게 */
}

@media (max-width: 600px) {
    .screenshot-scroll img {
        height: 180px;
    }
}

.game-description {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.game-description h4 {
    margin-top: 24px;
    font-size: 18px;
    color: #222;
}

.game-description ul {
    padding-left: 20px;
    margin-top: 10px;
}

.game-description li {
    margin-bottom: 8px;
}