/* 기본 설정 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    overflow-y: auto;
    /* 전역 스크롤 허용 */
    overflow-x: auto;
}

/* 메뉴가 열려서 스크롤이 사라질 때, 강제로 오른쪽 여백을 주어 밀림 방지 */
body.x-no-scroll {
    padding-right: 17px; /* 윈도우 스크롤바 평균 너비 */
    overflow: hidden;
}

body {
    font-family: 'Pretendard Variable', 'Noto Sans KR', sans-serif;
    background-color: #f5f5f5;
    color: #333;

    /* Flexbox 중앙 정렬 */
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* 
   PC 배경 (Fixed)
   - xwap_bg-pc
*/
:root[data-menu] {
    --menu-bg: #ffffff;
    --menu-muted: #9aa0a6;
    --menu-divider: #e9ecef;
    --menu-accent: #ffb000;
    --menu-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Noto Sans KR', 'Helvetica Neue', Arial;
}

.xwap_bg-pc {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background: url('/img/allbg.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}

/* 
   중앙 정렬 컨테이너 (Centered Container)
   - xwap_container
   - 높이는 auto로 설정하여 컨텐츠만큼 늘어남
*/
.xwap_container {
    width: 1024px;
    /* 512px (Left) + 512px (Center) */
    min-height: 100%;
    position: relative;
    display: flex;
    align-items: flex-start;
    /* 자식들이 위쪽에 붙도록 */
    flex-shrink: 0;
}

/* 
   왼쪽 영역 (Left Area)
   - xwap_left-area
   - Sticky 포지셔닝으로 스크롤 시 고정됨
*/
.xwap_left-area {
    position: sticky;
    /* Sticky 고정 */
    top: 0;
    width: 512px;
    height: 100vh;
    /* 화면 전체 높이 */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding-right: 60px;
    text-align: left;
    color: #333;
    flex-shrink: 0;
    overflow: hidden;
}

.xwap_left-area>div {
    max-width: 500px;
    width: 100%;
}

/* 
   오른쪽 영역 (Right Area)
   - xwap_right-area
   - Sticky 포지셔닝으로 변경하여 세로 스크롤 시 고정됨
   - Flex 아이템으로 배치되어 가로 스크롤 시에는 컨테이너와 함께 이동
*/
.xwap_right-area {
    position: sticky;
    /* Sticky 고정 */
    top: 0;
    /* left: 100%; 제거 (Flex 흐름 따름) */
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
    padding-left: 50px;
    text-align: left;
    color: #555;
    font-weight: bold;
    pointer-events: auto;
    width: 300px;
    flex-shrink: 0;
    /* 크기 줄어들지 않도록 */
}

.xwap_right-box {
    background: rgba(255, 255, 255, 0.8);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* 
   중앙 래퍼 (Main Wrapper)
   - xwap_wrap
   - 컨텐츠에 따라 높이가 늘어남
*/
.xwap_wrap {
    width: 512px;
    min-height: 100vh;
    background: linear-gradient(to bottom, #FFFFFF 0%, #f1f1f1 100%);
    position: relative;
    /*box-shadow: 0 0 30px rgba(0, 0, 0, 0.1); 컨텐츠 그림자 */ 
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

/* 헤더 (Header) - Sticky */
.xwap_header {
    position: sticky;
    /* Sticky 고정 */
    top: 0;
    width: 100%;
    height: 60px;
    background-color: #fff;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    /* z-index: 900;*/
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid #e5e7eb;
}

/* 컨텐츠 (Content) - 일반 흐름 */
.xwap_content {
    flex: 1;
	width: 100%;
	max-width: 98%;              /* 본문만 폭 제한 */	
	min-height: 100vh;
	padding: 0 18px;
    overflow: visible;
	box-sizing: border-box;
	margin:0 auto;
}

/* 하단 고정 메뉴 (Footer) - Sticky */
.xwap_footer {
    position: sticky;
    /* Sticky 고정 */
    bottom: 0;
    width: 100%;
    height: 70px;
    background-color: #fff;
    color: #333;
    display: grid;
    grid-template-columns: 1fr 65px 1fr;
    align-items: stretch;
    padding: 0 12px;
    /*z-index: 900;*/
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.04);
}

.xwap_nav-group {
    display: flex;
    justify-content: space-evenly;
    align-items: stretch;
    gap: 8px;
    min-width: 0;
    align-self: stretch;
}

.xwap_nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    min-width: 56px;
    color: #0f172a;
}

.xwap_nav-btn i {
    font-size: 24px;
    margin-bottom: 4px;
}

.xwap_nav-btn span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

/* FAB (Floating Action Button) */
/* ========== 중앙 버튼 수정 스타일 (붙여넣기) ========== */

/* 1. 버튼 전체 영역 (위치 잡기용 투명 박스) */
.xwap_fab-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    background: none;
    border: none;
    cursor: pointer;
    width: 65px;
    height: 100%;
    
    /* 기존 2px -> 14px로 변경 (글자를 위로 올림) */
    padding-bottom: 13px; 
    
    z-index: 1001;
    overflow: visible;
}

/* 2. 분홍색 원 (아이콘만 감쌈) */
.xwap_fab-circle {
    position: absolute;
    top: -22px; /* 위로 툭 튀어나오게 위치 조정 */
    left: 50%;
    transform: translateX(-50%);
    width: 56px; /* 원 크기 (아이콘만 들어가니 기존 65보다 조금 작게) */
    height: 56px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ff4da6, #ff1a75 60%, #e6005c);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(52, 64, 84, 0.25);
    transition: transform 0.2s ease;
}

/* 클릭 시 눌리는 효과 */
.xwap_fab-wrapper:active .xwap_fab-circle {
    transform: translateX(-50%) scale(0.95);
}

.xwap_fab-circle i {
    font-size: 30px;
}

/* 3. 하단 텍스트 (다른 메뉴와 정렬 맞춤) */
.xwap_fab-text {
    font-size: 13px;
    font-weight: 700;
    color: #000; /* 옆 메뉴들과 같은 검은색 계열 */
    letter-spacing: -0.5px;
    margin-top: 4px;
    line-height: 1.2;
}

.xwap_box {
    background: #f9f9f9;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
}

.xwap_text-red {
    color: red;
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}

/* 
   반응형 1단계: 1519px 이하
   - 오른쪽 영역 숨김
*/
@media (max-width: 1519px) {
    .xwap_right-area {
        display: none;
    }
}

/* 
   반응형 2단계: 768px 이하 (모바일)
   - 왼쪽 영역 숨김
   - 중앙 컨텐츠만 보임 (width: 100%)
   - 스크롤바 숨김
*/
@media (max-width: 768px) {
    .xwap_bg-pc {
        display: none;
    }

    .xwap_container {
        width: 100%;
        display: block;
    }

    .xwap_left-area {
        display: none;
    }

    .xwap_wrap {
        width: 100%;
        box-shadow: none;
    }

    /* 모바일에서만 스크롤바 숨김 */
    body {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    body::-webkit-scrollbar {
        display: none;
    }
}

/* 태그 및 타이틀 스타일 */
.xwap_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.xwap_tag {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #d1d1d1;
    color: #ff4757;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.3s ease;
    cursor: pointer;
}

.xwap_tag:hover {
    background: #ff4757;
    color: white;
    transform: translateY(-2px);
}

.xwap_title-sub {
    font-size: 2.2rem;
    color: #333;
    font-weight: 300;
    letter-spacing: -1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.xwap_title-main {
    font-size: 3rem;
    font-weight: 900;
    color: #000000;
    letter-spacing: -2px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.xwap_desc {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    letter-spacing: -1px;
    margin-bottom: 40px;
    font-weight: 300;
}

/* ========== Right Drawer (전체 메뉴) ========== */
body.x-no-scroll {
    overflow: hidden;
}

.xwap_dim {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
    z-index: 2000;
}

.xwap_dim.is-show {
    opacity: 1;
    pointer-events: auto;
}

.xwap_drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 90vw);
    height: 100vh;
    background: #fff;
    box-shadow: -8px 0 20px rgba(0, 0, 0, .1);
    transform: translate3d(100%, 0, 0);
    transition: transform .28s ease;
    z-index: 2001;
    display: flex;
    flex-direction: column;
    visibility: hidden;
    pointer-events: none;
}

.xwap_drawer.is-open {
    transform: translate3d(0, 0, 0);
    visibility: visible;
    pointer-events: auto;
}

.xwap_drawer-close {
    position: absolute;
    top: 10px;
    right: 18px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 28px;
    color: #333;
    z-index: 10;
}

.xwap_userbox {
    padding: 16px 20px 14px;
    border-bottom: 1px solid #f3f4f6;
}

.xwap_user-inline {
    display: flex;
    align-items: center;
    gap: 12px;
}

.xwap_avatar {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: #ff4b93;
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.xwap_avatar-guest {
    background: #e5e7eb;
    color: #6b7280;
}

.xwap_user-meta {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.xwap_user-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.xwap_username {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #111827;
}

.xwap_admin span {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 11px;
    background: #111827;
    color: #fff;
}

.xwap_verify-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
}

.xwap_cert-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    border-radius: 999px;
    font-weight: 500;
}

.xwap_cert-ok {
    background: #ecfdf3;
    color: #15803d;
}

.xwap_cert-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 600;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    color: #374151;
    text-decoration: none;
    line-height: 1;
}

.xwap_user-point {
    margin-top: 10px;
    padding: 8px 10px;
    border-radius: 12px;
    background: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: #4b5563;
}

.xwap_point-value {
    font-size: 14px;
    font-weight: 800;
    color: #111827;
}

.xwap_drawer-nav {
    padding: 10px 8px 20px;
    overflow-y: auto;
    flex: 1;
}

.xwap_item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-bottom: 1px solid #e9ecef;
    font-size: 15px;
    color: #111;
    text-decoration: none;
    transition: background 0.2s ease;
}

.xwap_item:hover {
    background: #f2f3f5;
}

.xwap_item i {
    font-size: 22px;
    color: #555;
    min-width: 28px;
    text-align: center;
}

.xwap_label {
    flex: 1;
    color: #222;
}

.xwap_chev {
    font-size: 18px;
    color: #999;
}

.xwap_divider-line {
    height: 10px;
    background: #f6f7fb;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.xwap_drawer-bottom {
    padding: 12px 18px;
    border-top: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.xwap_info-edit {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    font-size: 15px;
    text-decoration: none;
}

.xwap_logout a {
    color: #666;
    font-size: 15px;
    text-decoration: none;
}

/*=================================================================================================
   클릭시 오른쪽 메뉴
==================================================================================================*/
/* ========== Right Drawer (fixed off-canvas) ========== */
body.x-no-scroll { overflow: hidden; }

.x-dim {
  position: fixed; inset: 0;
  /*background: rgba(0,0,0,.4);*/
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
  z-index: 1000;
}

.x-drawer {
  position: fixed; top: 0; right: 0;                  /* 필요하면 right:-1px; 로 미세 seam 제거 */
  width: min(360px, 90vw); height: 100vh;
  background: #fff;
  box-shadow: -8px 0 20px rgba(0,0,0,.1);
  transform: translate3d(100%, 0, 0);                 /* 화면 밖으로 완전히 */
  transition: transform .28s ease;
  z-index: 1001;
  display: flex; flex-direction: column;

  /* 닫힌 상태에서 아예 상호작용/페인트를 막아 가로 스크롤 & 가장자리 노출 방지 */
  visibility: hidden;
  pointer-events: none;
  will-change: transform;
}

.x-drawer.is-open {
  transform: translate3d(0, 0, 0);
  visibility: visible;             /* 열릴 때만 보이기 */
  pointer-events: auto;
}

.x-dim.is-show { opacity: 1; pointer-events: auto; }

.x-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px; border-bottom: 1px solid #f1f1f1;
  font-size: 16px;
}

.x-drawer-close {
  appearance: none; border: 0; background: transparent;
  font-size: 20px; line-height: 1; cursor: pointer; color: #555;
}

.x-drawer-nav {
  padding: 10px 8px 20px; overflow-y: auto; flex: 1;
}

.x-drawer-nav a {
  display: block; padding: 12px 12px; border-radius: 10px;
  color: #111; text-decoration: none; font-size: 15px;
}

.x-drawer-nav a:hover { background: #f6f7f9; }

.x-drawer-nav hr {
  border: 0; border-top: 1px solid #eee; margin: 10px 6px;
}

html, body { overflow-x: hidden; }
/* ========== /Right Drawer ========== */


/*=================================================================================================
   모바일 전용: 푸터 뷰포트 고정 & 패딩/세이프에어리어/체인 정리
==================================================================================================
@media (max-width: 767.98px){
  /* 그리드의 3번째 행은 사실상 비움 
  .con-r .mobile-app{
    grid-template-rows: 56px 1fr 0px !important;
  }

  /* 푸터를 뷰포트 하단에 고정 (width:100vw 제거) 
  .con-r .app-footer{
    position: fixed;
    left: 0; right: 0; bottom: 0;
    margin: 0;
    transform: none;
    z-index: 9999;

    /* 안전영역 보정 + 좌우 패딩 
    padding-left:  max(12px, env(safe-area-inset-left));
    padding-right: max(12px, env(safe-area-inset-right));
    padding-bottom: max(8px, env(safe-area-inset-bottom));
  }

  /* 본문 가려짐 방지(모바일에서만 적용) 
  .con-r .app-main{
    padding-bottom: calc(
      var(--footer-h)
      + (var(--fab-size) * (var(--fab-pop) / 100))
      + max(16px, env(safe-area-inset-bottom))
    ) !important;

    /* 네이티브 PTR/체인 살리기 
    overscroll-behavior-y: auto !important;
  }
}

/*=================================================================================================
   모달
==================================================================================================*/
.modal { position:fixed; inset:0; display:none; align-items:center; justify-content:center; z-index:9998; }
.modal.show { display:flex; }
.modal .backdrop { position:absolute; inset:0; background:rgba(0,0,0,.35); }
.modal .sheet {
	position:relative;
	width:calc(100% - 24px);
	max-width:768px;
	max-height:60vh;
	display:flex;
	flex-direction:column;
	background:#fff;
	border-radius:1rem;
	box-shadow:0 20px 40px rgba(0,0,0,.18);
	overflow:hidden;
}
.sheet-header { display:flex; align-items:center; justify-content:space-between; padding:14px 16px; border-bottom:1px solid #eee; }
.sheet-title { font-weight:800; color:#171717; }
.sheet-close { width:36px; height:36px; border-radius:9999px; }
.sheet-close:hover { background:#f5f5f5; }
.sheet-body { flex:1; overflow:auto; -webkit-overflow-scrolling:touch; padding:12px; }
.note { margin:8px 4px 14px; padding:10px 12px; border-radius:12px; background:#ffe8ee; color:#e11d48; font-weight:700; text-align:center; font-size:14px; }
.cat-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px;}

@media(min-width:768px){
	.cat-grid{grid-template-columns:repeat(3,minmax(0,1fr));}
}

.cat-item { display:flex; align-items:center; gap:12px; padding:12px; border:1px solid #eee; border-radius:14px; background:#fff; }
.cat-item i { font-size:26px;}
.cat-text { display:flex; flex-direction:column; text-align:left; }
.cat-title { font-size:16px; font-weight:800; color:#171717; }
.cat-sub { font-size:12px; color:#737373; margin-top:2px; }


/*=================================================================================================
   가이드
==================================================================================================*/
.guide_step			{background:#ff4d7e;color:#fff;height:22px;line-height:22px;}
.guide_right_txt	{padding:6px 10px;border:1px solid #ffd6e3;background:#fff1f2;color:#e11d48;line-height:1;}


.btn-none-bg-border  {background: none; border: none;}


/* =========================================
   왼쪽 영역: 탱크 및 텍스트 (원본 사이즈 적용)
   ========================================= */

/* 통합 컨테이너 */
.tank_box {
    width: 100%;
    text-align: right; 
    position: relative;
    overflow: visible; /* 이미지가 커도 잘리지 않게 설정 */

    /* 위치 조절 */
    margin-top: 10px;    
    margin-right: -60px;  
}

/* 1. 텍스트 이미지 ("꽝" 하고 떨어짐) */
.text_slam {
    display: block;
    
    /* 원본 사이즈 */
    width: auto;
    max-width: none; 
    height: auto;
    
    /* 기본 우측 정렬 */
    margin-left: auto;    
    
    /* ▼▼▼ [강제 좌표 이동] 이 숫자를 조절하세요 ▼▼▼ */
    position: relative;   /* 위치 이동 활성화 */
    right: 80px;         /* 숫자가 커질수록 [왼쪽]으로 이동합니다 */
    top: 150px;           /* 숫자가 커질수록 [아래]로 이동합니다 */
    
    /* 겹침 순서 (탱크 위) */
    z-index: 20; 

    /* 초기 상태 */
    opacity: 0; 
    
    /* 애니메이션 (낙하) */
    animation: slamDown 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.5s forwards;
}

/* 2. 탱크 이미지 (왼쪽 강제 이동 + 원본 사이즈) */
.tank_ani {
    /* 원본 크기 유지 */
    width: auto;
    max-width: none; 
    height: auto;
    
    display: inline-block;
    
    /* ▼▼▼ [강제 좌표 이동] 이 숫자를 조절하세요 ▼▼▼ */
    position: relative;
    right: 60px;       /* 숫자가 클수록 [왼쪽]으로 이동합니다 */
    
    z-index: 10;
    
    /* 초기 상태 */
    opacity: 0;
    
    /* 애니메이션 (오른쪽에서 등장) */
    animation: slideRightToLeft 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
/* ================= 키프레임 ================= */

/* 텍스트 낙하 동작 */
@keyframes slamDown {
    0% {
        opacity: 0;
        transform: translateY(-400px) scale(1.5);
    }
    70% {
        opacity: 1;
        transform: translateY(10px) scale(0.95); /* 바닥 충격 */
    }
    100% {
        opacity: 1; /* 사라지지 않음 */
        transform: translateY(0) scale(1); /* 제자리 고정 */
    }
}

/* 탱크 등장 동작 */
@keyframes slideRightToLeft {
    0% {
        opacity: 0;
        transform: translateX(150px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* =========================================
   [신규] 병력 이미지 스타일 (최상단 레이어)
   ========================================= */
.people_fade {
    display: block;
    /* 원본 사이즈 강제 적용 */
    width: auto; max-width: none; height: auto;

    position: relative;
    z-index: 30; /* 텍스트(20), 탱크(10)보다 높게 설정하여 가장 위에 표시 */
    
    /* 기본 우측 정렬 */
    margin-left: auto; 

    /* ▼▼▼ [위치 조절 좌표] 텍스트 위로 오도록 조정하세요 ▼▼▼ */
    right: 10px;  /* 텍스트와 비슷한 수평 위치 */
    top: 104px;     /* 텍스트보다 조금 더 위에 위치 */
    margin-bottom: -150px; /* 텍스트와 겹치도록 아래 여백을 당김 */

    /* 초기 상태: 투명 */
    opacity: 0;

    /* 애니메이션: 1.2초 딜레이 후 1초 동안 부드럽게 나타남 */
    animation: smoothFadeIn 1s ease-out 1.2s forwards;
}

/* 부드럽게 나타나는 효과 키프레임 */
@keyframes smoothFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* =========================================
   [신규] 헬기 이미지 스타일 (최상공 레이어)
   ========================================= */
.heli_fly {
    display: block;
    /* 원본 사이즈 */
    width: auto; max-width: none; height: auto;

    position: relative;
    z-index: 40; /* 사람(30)보다 높게 설정하여 가장 위에 표시 */
    
    /* 기본 우측 정렬 */
    margin-left: auto;

    /* ▼▼▼ [위치 조절 좌표] 사람 위로 오도록 조정하세요 ▼▼▼ */
    right: 50px;    /* 수평 위치 조절 (숫자가 클수록 왼쪽) */
    top: 0px;       /* 수직 위치 조절 (숫자가 클수록 아래) */
    margin-bottom: -120px; /* 아래 요소들과 겹치도록 당김 */

    /* 초기 상태: 투명하고 오른쪽에 위치 */
    opacity: 0;
    transform: translateX(400px);

    /* 애니메이션: 0.2초 딜레이 후 2.5초 동안 부드럽게 날아옴 */
    animation: flyInRight 2.5s ease-out 0.2s forwards;
}

/* 오른쪽에서 왼쪽으로 날아오는 키프레임 */
@keyframes flyInRight {
    0% {
        opacity: 0;
        /* 오른쪽 멀리, 약간 위에서 시작 */
        transform: translateX(400px) translateY(-50px);
    }
    100% {
        opacity: 1;
        /* 제자리 착륙 */
        transform: translateX(0) translateY(0);
    }
}