/* 기본 초기화 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: #0b071e;
    color: #ffffff;
    display: table;
    width: 100%;
}

.mobile-container {
    width: 100%;
    max-width: 450px;
    height: 100vh;
    margin: 0 auto;
    
    /* [수정] 배경 이미지 원본의 황금빛 그래픽이 전면으로 쨍하게 나오도록 오버레이 필터 완전 제거 */
    background: url("./images/back-image0.png") no-repeat center center;
    background-size: cover;
    
    display: block;
    padding: 5.5vh 20px 3vh 20px;
    overflow: hidden;
    position: relative;
}

/* 헤더 스타일 */
.intro-header {
    text-align: center;
    margin-bottom: 2.5vh;
}

.system-logo-img {
    max-width: 160px;
    height: auto;
    margin-bottom: 6px;
}

.sub-slogan {
    font-size: 11px;
    color: #b3a6ff;
    font-weight: 600;
    letter-spacing: -0.2px;
}

/* 메인 컨텐츠 */
.intro-main {
    margin-bottom: 2.5vh;
}

/* [수정] 배경이 밝고 화려해진 만큼 본문 가독성을 지키기 위해 투명도와 경계선을 최적화 단단하게 보정 */
.visual-card {
    background: rgba(11, 7, 30, 0.85); 
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 24px 18px;
    text-align: center;
    backdrop-filter: blur(15px);
}

.mystic-owl-box {
    width: 65px;
    height: 65px;
    margin: 0 auto 12px auto;
    animation: float 3s ease-in-out infinite;
}

.owl-img {
    width: 100%;
    height: auto;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}

.visual-card h2 {
    font-size: 22px;
    line-height: 1.4;
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
    
    /* [변경] 기기 불문하고 100% 똑같이 표출되는 고급스러운 황금색 고정 */
    color: #ffe066; 
    
    /* 어두운 배경 위에서 황금색 글씨가 더 묵직하고 선명하게 도드라지도록 음영 효과 추가 */
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6), 0 0 10px rgba(255, 224, 102, 0.2);
}

.desc-text {
    font-size: 13px;
    line-height: 1.7;
    color: #eeeeff;
    word-break: keep-all;
    font-weight: 400; /* 일반 글씨 굵기로 복원 */
}

/* 2. [여기서 처리!] '사주 코드'와 '꽃타로 5장'만 미치도록 두껍고 쨍하게 만듭니다 */
.highlight-tech {
    color: #ffd700;
    font-weight: 900 !important; /* 최고 수준의 굵기로 확실하게 강조 */
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); /* 은은한 야광 광원 효과 */
}

/* 3. 혹시 모를 폰트 충돌 방지 */
.desc-text strong.highlight-tech {
    font-weight: 900 !important;
}

/* 가로 태그 정렬 및 줄바꿈 방지 */
.keyword-tags {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
    flex-wrap: nowrap;
}

.keyword-tags span {
    display: inline-block;
    background: rgba(11, 7, 30, 0.8);
    border: 1px solid rgba(179, 166, 255, 0.4);
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 11px;
    color: #dfd9ff;
    font-weight: 500;
    white-space: nowrap;
}

/* 하단 고정 구역 */
.intro-footer {
    position: absolute;
    bottom: 3.5vh;
    left: 20px;
    right: 20px;
    text-align: center;
}

.benefit-tag {
    display: inline-block;
    background: rgba(11, 7, 30, 0.8);
    border: 1px solid rgba(179, 166, 255, 0.3);
    color: #ffffff;
    font-size: 11.5px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
    backdrop-filter: blur(5px);
}

.btn-kakao {
    display: block;
    text-align: center;
    background-color: #FEE500;
    color: #191919;
    text-decoration: none;
    font-size: 15.5px;
    font-weight: 700;
    padding: 14px 0;
    border-radius: 12px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(254, 229, 0, 0.4);
}

.btn-kakao i {
    margin-right: 6px;
    font-size: 17px;
}

.warning-text {
    font-size: 10.5px;
    color: #ffffff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
    margin-top: 10px;
}