/* 기본 리셋 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html,
  body {
    width: 100%;
    min-height: 100vh;
    font-family: 'Linik Sans', sans-serif;
    line-height: 1.5;
    /* 상단은 진한 보라파랑, 중간은 연한 보라, 하단은 연한 파스텔 보라파랑 */
    background: linear-gradient(180deg, #7868f9 0%, #f5f4ff 40%, #e8eaff 100%);
    color: #444;
    position: relative;
  }
  
  /* 브라우저 하단에 검은 그라데이션 오버레이 */
  body::after {
    content: "";
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    pointer-events: none;
    z-index: 100;
  }
  
  /* ---------- 프로필 헤더 ---------- */
  .profile-header {
    text-align: center;
    margin: 2rem 1rem;
    color: #fff;
    font-family: 'Kite One', sans-serif;
  }
  
  .profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
  }
  
  .profile-header h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  
  .profile-desc {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 1rem 1rem;
  }
  
  /* 프로필 아이콘 (인라인 중앙정렬: flex 사용) */
  .profile-icons {
    /* inline-block 부모로 두거나 text-align:center; 이미 헤더에 있음 */
  }
  
  .profile-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 0.3rem;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    transition: background 0.3s ease;
  }
  
  .profile-icon:hover {
    background-color: rgba(255, 255, 255, 0.4);
  }
  
  /* ---------- 배너 섹션 (둥근 카드) ---------- */
  .banner-section {
    max-width: 600px;
    background: #ffffff;
    border-radius: 26px; /* 하단 버튼과 동일 */
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
  }
  
  .banner-img {
    width: 100%;
    display: block;
  }
  
  .banner-text {
    padding: 1rem 1.5rem 1.5rem;
  }
  
  .banner-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #a96bf9;
    margin-top: 0.5rem;
  }
  
  .banner-period {
    font-size: 0.95rem;
    margin-top: 0.3rem;
    color: #666;
  }
  
  /* ---------- 하단 링크 버튼 (컨테이너 없이 개별 배치, flex로 아이콘+텍스트 중앙정렬) ---------- */
  .link-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    max-width: 600px;
    width: 90%;
    margin: 0.5rem auto;
    text-align: center;
    padding: 1.0rem 1.6rem;
    border-radius: 26px;
    background: #fff;
    color: rgb(58, 56, 148);
    text-decoration: none;
    font-family: 'Kite One', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.3s ease, transform 0.3s ease;
    border: 1px solid #e0e0e8;
    box-shadow: rgba(123, 86, 179, 0.24) 0px 2px 8px 0px;
  }
  
  .link-btn:hover {
    background: #e8e8f0;
    transform: translateY(-2px);
  }
  
  /* ---------- 푸터 ---------- */
  footer {
    text-align: center;
    padding: 1rem;
    color: #fff;
    z-index: 999;
  }
  
  .join-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    background: linear-gradient(135deg, #9d8cff, #c6b8ff);
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  
  .join-btn:hover {
    opacity: 0.9;
    transform: scale(1.03);
  }
  
  .cookie-pref {
    text-decoration: underline;
    cursor: pointer;
    margin-top: 0.5rem;
    font-size: 0.9rem;
  }
  
  /* ---------- 반응형 디자인 ---------- */
  /* 모든 해상도에서 단일 열 배치 유지 */
  @media (min-width: 768px) {
    /* 추가 반응형 스타일 필요 시 여기에 작성 */
  }
  