  /* 기본 리셋 */
  html {
    color-scheme: light;
    background-color: #fff;
    color: #333;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: sans-serif;
    line-height: 1.5;
    color: #333;
    background-color: #fff;
  }

  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #ccc;
  }

  .header-left {
    font-weight: bold;
    font-size: 1.2rem;
  }

  nav a {
    margin-left: 15px;
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
  }

  main {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
  }

  .title-link {
    text-decoration: none;  /* 밑줄 제거 */
    color: inherit;         /* 부모의 색상 계승 (div.header-left) */
  }

  /* h1, h2 스타일 조정 */
  h1 {
    font-size: 2rem;
    margin-bottom: 5px;
  }

  h2 {
    font-size: 1.2rem;
    margin-top: 1px;
    margin-bottom: 20px;
  }

  .sub-text {
    font-size: 1rem;
    margin: 10px 0;
  }

  .sub-text-color {
    font-size: 1rem;
    margin: 10px 0;
    color: hsl(0, 100%, 67%); /* 또는 color: #FF7F7F; */
  }

  .sub-text-bold {
    font-weight: bold;
    font-size: 1rem;
    margin: 1px 0;
  }

  /* 트윗 버튼 스타일 */
  .button-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
  }
  .generated-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 1.00);
    color: rgba(0, 0, 0, 1.00) !important;
    width: 200px;
    height: 50px;
    border: 1px solid rgba(199, 199, 199, 1.00);
    border-radius: 5px;
    transform-origin: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.025em;
  }
  /*.generated-button:hover {
    background: rgba(199, 199, 199, 0.60) !important;
    border-color: rgba(199, 199, 199, 1.00) !important;
    color: rgba(0, 0, 0, 1.00) !important;
  }
  */

  .generated-button:active {
    background: rgba(199, 199, 199, 0.60) !important;
    /* ... */
  }  

  /* 맨 아래 이미지용 footer 스타일 */
  footer {
    text-align: center;
    margin: 30px 0;
  }
  footer img {
    max-width: 100%;
    height: auto;
  }
  
  .footer-info {
    text-align: center;
    margin-top: 10px;
    font-weight: bold;
    font-size: 0.9em;
  }  

  /* 트위터 로고 링크 자체 스타일 */
  .twitter-logo {
    display: inline-block;
    margin-top: 10px;     /* 로고 위쪽 간격 띄우기 */
    text-decoration: none; 
    color: inherit;       /* 부모 색상 계승 (필요시) */
  }

  /* SVG 아이콘 색상, 투명도 등 */
  .twitter-logo svg {
    fill: hsl(0, 0%, 25%);           /* 원래 검정(#000)보다 밝은 회색 */
    opacity: 0.8;         /* 조금 흐리게(80% 불투명) */
    transition: none;     /* 호버 시 변화 없도록 */
    width: 13.5px;          /* 필요 시 크기 조절 */
    height: 13.5px;
  }

  /* 호버 효과 제거 (원한다면) */
  .twitter-logo:hover svg {
    opacity: 0.8;         /* 호버해도 동일하게 유지 */
    fill: hsl(0, 0%, 25);       /* 색상 동일 */
  }

  /* 인스타그램 로고 링크 자체 스타일 */
  .instagram-logo {
    display: inline-block;
    margin-top: 10px;     /* 로고 위쪽 간격 띄우기 */
    text-decoration: none; 
    color: inherit;       /* 부모 색상 계승 (필요시) */
  }

  /* SVG 아이콘 색상, 투명도 등 */
  .instagram-logo svg {
    fill: hsl(0, 0%, 25%);           /* 원래 검정(#000)보다 밝은 회색 */
    opacity: 0.8;         /* 조금 흐리게(80% 불투명) */
    transition: none;     /* 호버 시 변화 없도록 */
    width: 13.5px;          /* 필요 시 크기 조절 */
    height: 13.5px;
  }

  /* 호버 효과 제거 */
  .instagram-logo:hover svg {
    opacity: 0.8;         /* 호버해도 동일하게 유지 */
    fill: hsl(0, 0%, 25);       /* 색상 동일 */
  }  

  .social-logos {
    display: flex;
    align-items: center; /* 아이콘을 수직 중앙 정렬 */
    justify-content: center;    /* 수평 중앙 정렬 */
    gap: 8px;          /* 아이콘 간격 */
  }
  
  .social-logos a svg {
    width: 14px;     
    height: 14px;
  }