@font-face {
    font-family: 'LINESeedSans';
    src: url('../fonts/LINESeedSans_W_Rg.woff2') format('woff2'), url('../fonts/LINESeedSans_W_Rg.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'LINESeedSans';
    src: url('../fonts/LINESeedSans_W_Bd.woff2') format('woff2'), url('../fonts/LINESeedSans_W_Bd.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'LINESeedSans';
    src: url('../fonts/LINESeedSans_W_Th.woff2') format('woff2'), url('../fonts/LINESeedSans_W_Th.woff') format('woff');
    font-weight: 100;
    font-style: normal;
}

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

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'LINESeedSans', sans-serif;
    font-weight: 400;
}

h1, h2, h3 {
    font-family: 'LINESeedSans', sans-serif;
    font-weight: 700;
}

a {
    color: #000;
    text-decoration: none;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    background-color: #fff;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 120px;
    height: auto;
    margin-right: 10px;
}

.search-container {
    flex-grow: 1;
    max-width: 600px;
    margin: 0 20px;
}

.search-box {
    width: 100%;
    padding: 8px 15px 8px 40px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
    background: #f5f5f5 url('../images/search.svg') no-repeat 15px center;
    background-size: 18px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.connect-btn {
    padding: 8px 15px;
    padding-right: 40px;
    background-color: #000000;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    position: relative;
    margin: 0 10px;
}

.connect-btn:hover {
    background: #464646;
}

.connect-btn::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: url('../images/wallet.svg') no-repeat center;
    background-size: contain;
    filter: brightness(0) invert(1);
}

.notification-icon {
    position: relative;
    width: 24px;
    height: 24px;
    background: url('../images/notification.svg') no-repeat center;
    background-size: contain;
    cursor: pointer;
    display: none;
}

.notification-icon.active::after {
    content: '';
    position: absolute;
    top: 3px;
    right: 4px;
    width: 6px;
    height: 6px;
    background-color: #FF0000;
    border-radius: 50%;
}

.main-container {
    display: flex;
    flex-grow: 1;
}

.left-nav {
    width: 240px;
    background-color: #fff;
    border-right: 1px solid #eee;
    padding: 20px 0;
    transition: transform 0.3s ease;
}

.nav-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    cursor: pointer;
    color: #333;
}

.nav-item:hover {
    background-color: #f5f5f5;
}

.nav-item:first-child:hover {
    background: none;
}

.nav-close-btn {
    display: none;
    position: absolute;
    top: 10px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1002;
    font-weight: bold;
}

.nav-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.user-info {
    display: flex;
    align-items: center;
    margin-top: auto;
    cursor: pointer;
}

.user-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
}

.content-area {
    flex-grow: 1;
    padding: 20px;
    background-color: #fff;
    overflow-y: auto;
    overflow-x: hidden;
    max-width: 100%;
}

.content-area h2 {
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.content-area .title-border {
    border-bottom: 1px solid #eee;
}

.content-container {
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 40px;
}

.tab-navigation {
    display: flex;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    align-items: center;
}

.tab-navigation::-webkit-scrollbar {
    height: 4px;
}

.tab-navigation::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.tab {
    padding: 10px 20px;
    cursor: pointer;
    color: #777;
    flex-shrink: 0;
}

.tab.active {
    color: #333;
    border-bottom: 2px solid #000;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}


.tab-counter {
    margin-left: 5px;
    color: #6c757d;
}

/* 탭 우측 메뉴 */
.tab-right-menu {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.tab-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.tab-icon-btn img {
    width: 23px;
    height: 23px;
}

/* 메시지 리스트 스타일 */
.message-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.message-item {
    display: flex;
    padding: 15px;
    align-items: center;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.message-item:hover {
    background-color: #f8f8f8;
}

.message-item.unread {
    background-color: #f3f3f3;
}

.message-checkbox {
    margin-right: 10px;
    position: relative;
}

.message-select {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    border-radius: 40px;
}

.message-select + label {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 3px;
    position: relative;
    cursor: pointer;
}

.message-select:checked + label {
    background-color: #007bff;
    border-color: #007bff;
}

.message-select:checked + label:after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.message-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.message-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.message-avatar-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(155, 89, 182, 0.7);
    color: white;
    padding: 2px 5px;
    font-size: 10px;
    border-radius: 3px;
    z-index: 1;
    text-align: center;
    width: 80%;
    font-weight: bold;
}

.message-content {
    flex: 1;
    min-width: 0; /* 텍스트 줄임표 처리를 위해 필요 */
}

.message-sender {
    font-weight: 600;
    margin-bottom: 4px;
}

.message-preview {
    color: #6c757d;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.content-card {
    background: #FFFFFF;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #EAEAEA;
    padding: 24px;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.collect-container {
    display: flex;
    margin-top: 15px;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

.collect-btn {
    background-color: #000;
    border: none;
    border-radius: 15px;
    padding: 6px 15px;
    font-size: 12px;
    cursor: pointer;
    display: block;
    align-items: center;
    gap: 5px;
    color: #fff;
}

.collect-btn:hover {
    background-color: #919191;
}

.content-view {
    display: block;
    padding: 0 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.post-view {
    word-break: break-all;
    line-height: 180%;
}

.post-view img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 20px;
}

.post-interaction {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    margin-top: 15px;
}

.interaction-buttons {
    display: flex;
    align-items: center;
    gap: 30px;
}

.interaction-btn {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
    position: relative;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 25px 25px;
    min-height: 25px;
    min-width: 25px;
}

.interaction-btn:hover {
    opacity: 0.7;
}

.comment-btn {
    background-image: url('../images/comment.svg');
    padding-right: 30px;
}

.like-btn {
    background-image: url('../images/like.svg');
    padding-right: 30px;
}

.like-btn.active {
    background-image: url('../images/like-filled.svg');
}

.bookmark-btn {
    background-image: url('../images/bookmark.svg');
}

.share-btn {
    background-image: url('../images/share.svg');
}

.count {
    font-size: 14px;
    color: #666;
    margin-left: 26px;
}

.comment-input-container {
    display: flex;
    padding: 16px 0;
    margin-top: 10px;
    border-top: 1px solid #eee;
}

.user-avatar {
    width: 36px;
    height: 36px;
    margin-right: 12px;
    flex-shrink: 0;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.comment-input-area {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.comment-textarea {
    width: 100%;
    min-height: 60px;
    padding: 12px;
    border: 1px solid #eee;
    border-radius: 8px;
    resize: none;
    font-family: 'LINESeedSans', sans-serif;
    font-size: 14px;
    background-color: #f9f9f9;
    transition: border-color 0.2s;
}

.comment-textarea:focus {
    outline: none;
    border-color: #000;
    background-color: #fff;
}

.comment-textarea::placeholder {
    color: #999;
}

.comment-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

.action-icons {
    display: flex;
    gap: 8px;
}

.action-btn {
    width: 24px;
    height: 24px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 20px;
    transition: opacity 0.2s;
}

.action-btn:hover {
    opacity: 0.7;
}

.emoji-btn {
    background-image: url('../images/emoji.svg') no-repeat;
}

.image-btn {
    background-image: url('../images/image.svg');
}

.mention-btn {
    background-image: url('../images/mention.svg');
}

.post-comment-btn {
    padding: 8px 16px;
    background-color: #000;
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.post-comment-btn:hover {
    background-color: #333;
}

.post-comment-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-profile img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #E8EAFB;
    object-fit: cover;
}

.user-profile img.md {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #E8EAFB;
}


.profile-image-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
}

.user-name {
    font-size: 14px;
    color: #333;
}

.post-date {
    color: #666;
    font-size: 14px;
    margin-left: auto;
}

.card-body {
    display: flex;
    flex-direction: column;
}

.card-image-container {
    width: 100%;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000;
}

.card-description {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.explorer-content {
    padding: 0;
}

.explorer-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.explorer-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: #fff;
    border-radius: 12px;
    justify-content: space-between;
}

.explorer-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.right-sidebar {
    width: 300px;
    padding: 20px;
    background-color: #fff;
    border-left: 1px solid #eee;
    overflow-y: auto;
}

.sidebar-section {
    margin-bottom: 40px;
}

.sidebar-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.post-item {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.post-item img {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    margin-right: 10px;
}

.post-info {
    flex-grow: 1;
}

.post-title {
    font-size: 14px;
    margin-bottom: 5px;
}

.post-meta {
    font-size: 12px;
    color: #777;
}

.recent-posts .post-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.recent-posts .post-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0;
    border: none;
}

.recent-posts .post-item h3 {
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    color: #000;
}

.recent-posts .user-profile img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #E8EAFB;
}

.recent-posts .user-profile {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 12px;
}

.recent-posts .time {
    color: #666;
    font-size: 12px;
}

.recent-comments .comment-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.recent-comments .comment-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-comment {
    width: 16px;
    height: 16px;
    display: inline-block;
    background: url('../images/comment.svg') no-repeat center;
    background-size: contain;
}

.recent-comments .comment-item span {
    color: #000;
    font-size: 14px;
}

.featured-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.featured-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.featured-thumbnail {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    overflow: hidden;
}

.featured-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.featured-info h3 {
    font-size: 13px;
    font-weight: 700;
    margin: 0;
    color: #000;
}

.featured-info p {
    font-size: 12px;
    color: #666;
    margin: 4px 0 0 0;
}

.add-btn {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background: #E8EAFB;
    border: none;
    color: #000;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.add-btn:hover {
    background: #D8DAEB;
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
}

.mobile-menu-btn .material-icons {
    font-size: 24px;
    vertical-align: middle;
}

.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #FFFFFF;
    border-top: 1px solid #eee;
    padding: 8px 0;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
}

.mobile-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #333;
    font-size: 12px;
    padding: 10px 0;
    width: 20%;
}

.mobile-nav-item .nav-icon {
    width: 24px;
    height: 24px;
}

.mobile-nav-item .profile-icon {
    border-radius: 50%;
}

.modal {
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    opacity: 0;
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal.active {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.modal.active .modal-overlay {
    opacity: 1;
}

.modal-container {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 24px;
    width: 90%;
    max-width: 400px;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.25s ease;
    z-index: 1001;
}

.modal.active .modal-container {
    opacity: 1;
    transform: translateY(0);
}

.modal-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding: 4px 0;
}

.modal-title {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin: 0;
}

.modal-content {
    max-height: calc(70vh - 120px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding: 15px;
}

.modal-close {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #000;
}

.wallet-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.wallet-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: #F5F5F5;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    transition: background-color 0.2s;
}

.wallet-item:hover {
    background: #EBEBEB;
}

.wallet-item img {
    width: 24px;
    height: 24px;
}

.wallet-icons {
    display: flex;
    gap: 4px;
}

.modal-footer {
    text-align: center;
    font-size: 14px;
    color: #666;
}

.link {
    color: #000;
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
}

.collect-count {
    display: flex;
    align-items: center;
    font-size: 11px;
    color: #666;
    position: relative;
    padding-left: 52px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.collect-count img {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    position: absolute;
    top: -3px;
    border: 1px solid #fff;
}

.collect-count img:nth-child(1) {
    left: 0;
    z-index: 1;
}

.collect-count img:nth-child(2) {
    left: 15px;
    z-index: 2;
}

.collect-count img:nth-child(3) {
    left: 27px;
    z-index: 3;
}

.profile-edit-container {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 40px;
}

.profile-cover {
    position: relative;
    width: 100%;
    height: 170px;
    border-radius: 20px;
    overflow: visible;
    margin-bottom: 50px;
    background: #ccc;
    display: flex;
    justify-content: center;
}

.profile-name {
    font-weight: bold;
}

.profile-desc {
    font-size: 12px;
}

.cover-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.edit-cover-btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

.edit-cover-btn:hover {
    background-color: white;
}

.edit-cover-btn img {
    width: 20px;
    height: 20px;
}

.profile-image-container {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.profile-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 4px solid white;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.edit-profile-btn {
    position: absolute;
    right: -5px;
    bottom: -5px;
    background-color: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.edit-profile-btn:hover {
    background-color: #f5f5f5;
}

.white-btn {
    background-color: transparent;
    border: 1px solid #ddd;
    border-radius: 15px;
    padding: 6px 15px;
    font-size: 12px;
    cursor: pointer;
}

.white-btn:hover {
    background-color: #f5f5f5;
}

.gray-btn {
    background-color: #dfdfdf;
    border: 1px solid #ddd;
    border-radius: 15px;
    padding: 6px 15px;
    font-size: 12px;
    cursor: pointer;
}

.gray-btn:hover {
    background-color: #ccc;
}

.w100 {
    width: 100%;
}

.edit-profile-btn img {
    width: 18px;
    height: 18px;
}

.profile-form {
    padding: 0 20px;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 16px;
}

.required {
    color: #FF5722;
    font-weight: 400;
    font-size: 14px;
}

.optional {
    color: #9E9E9E;
    font-weight: 400;
    font-size: 14px;
}

.form-helper {
    color: #757575;
    margin: 5px 0 10px;
    font-size: 14px;
}

.form-input {
    width: 100%;
    padding: 15px;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'LINESeedSans', sans-serif;
}

.form-input:focus {
    outline: none;
    border-color: #000;
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.save-btn {
    width: 100%;
    padding: 14px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 20px;
}

.save-btn:hover {
    background-color: #333;
}

.groups-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.groups-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    width: 100%;
    border-bottom: 1px solid #e8e8e8;
    padding: 0 0 10px;
}

.groups-tab {
    margin-bottom: 0;
    border-bottom: none;
}

.group-info-container {
    text-align: center;
    padding: 0 0 50px 0;
    max-width: 1100px;
    margin: 0 auto;
}

/* Step Indicators Styling */
.step-indicators {
    display: flex;
    justify-content: space-between;
    margin: 0 auto 30px auto;
    position: relative;
    max-width: 80%;
}

.step-indicators::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 10px;
    right: 0;
    height: 1px;
    background-color: #e0e0e0;
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #f5f5f5;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 8px;
    color: #666;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background-color: #000;
    border-color: #000;
    color: #fff;
}

.step-label {
    font-size: 14px;
    color: #666;
    transition: color 0.3s ease;
}

.step.active .step-label {
    color: #000;
    font-weight: 700;
}

.step-content {
    display: none;
}

.step-content.active {
    display: block;
}

.profile-info-container {
    text-align: center;
    padding: 0 0 50px 0;
    max-width: 1100px;
    margin: 0 auto;
}

.group-name {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 5px 0 !important;
    padding: 0 !important;
}

.group-id {
    color: #666;
    font-size: 14px;
}

.group-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #999;
    font-size: 14px;
    margin-bottom: 10px;
}

.group-link img {
    width: 16px;
    height: 16px;
}

.group-members {
    font-size: 14px;
    margin-bottom: 20px;
}

.count-badge {
    display: inline-block;
    margin-left: 5px;
    font-weight: normal;
    text-align: center;
    font-size: 13px;
}

.create-group-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    background-color: transparent;
    color: #000;
    border: 1px solid #e1e1e1;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.create-group-btn:hover {
    background-color: #f5f5f5;
}

.plus-icon {
    font-size: 18px;
    font-weight: 700;
}

.groups-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}

.group-card {
    border-radius: 16px;
    overflow: hidden;
    background: #FFFFFF;
    border: 1px solid #EAEAEA;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.group-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.group-cover {
    position: relative;
    height: 130px;
    background-size: cover;
    background-position: center;
    border-radius: 16px 16px 0 0;
    background-color: #ccc;
}

.group-avatar {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 3px solid white;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.group-info {
    padding: 40px 20px 20px;
    text-align: center;
}

.group-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.group-activity {
    color: #777;
    font-size: 13px;
    margin-bottom: 15px;
}

.group-members {
    margin: 0;
}

.stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 10px;
}

.stats-item {
    margin: 0 10px;
    padding: 10px;
    flex: 1;
    max-width: 100px;
    font-size: 12px;
    color: #5f5f5f;
    white-space: nowrap;
}

.stats-item strong {
    margin-left: 5px;
}

.member-avatars {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.member-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -8px;
    object-fit: cover;
}

.member-avatar:first-child {
    margin-left: 0;
}

.member-avatars span {
    display: flex;
    align-items: center;
    font-size: 11px;
    color: #666;
}

.group-meta {
    color: #777;
    font-size: 13px;
    margin-bottom: 15px;
}

.leave-group-btn {
    width: 100%;
    padding: 10px;
    background-color: transparent;
    color: #333;
    border: 1px solid #e1e1e1;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.leave-group-btn:hover {
    background-color: #f5f5f5;
}

.notify-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.notify-header {
    margin: 20px 0 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.time-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.notify-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.notify-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: background-color 0.2s ease;
}

.notify-item:hover {
    background-color: #f9f9f9;
}

.notify-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 15px;
    flex-shrink: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 22px 22px;
}

.notify-icon.comment {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234A90E2'%3E%3Cpath d='M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z'/%3E%3C/svg%3E");
}

.notify-icon.like {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FF5252'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z'/%3E%3C/svg%3E");
}

.notify-icon.follow {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%235C6BC0'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='8.5' cy='7' r='4'/%3E%3Cline x1='20' y1='8' x2='20' y2='14' stroke='%235C6BC0' stroke-width='1'/%3E%3Cline x1='23' y1='11' x2='17' y2='11' stroke='%235C6BC0' stroke-width='1'/%3E%3C/svg%3E");
}

.notify-icon.new-post {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2326A69A'%3E%3Cpath d='M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-2 10h-4v4h-2v-4H7v-2h4V7h2v4h4v2z'/%3E%3C/svg%3E");
}

.notify-icon.mention {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFA726'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10h5v-2h-5c-4.34 0-8-3.66-8-8s3.66-8 8-8 8 3.66 8 8v1.43c0 .79-.71 1.57-1.5 1.57s-1.5-.78-1.5-1.57V12c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5c1.38 0 2.64-.56 3.54-1.47.65.89 1.77 1.47 2.96 1.47 1.97 0 3.5-1.6 3.5-3.57V12c0-5.52-4.48-10-10-10zm0 13c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z'/%3E%3C/svg%3E");
}

.notify-icon.group {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2366BB6A'%3E%3Cpath d='M12 12.75c1.63 0 3.07.39 4.24.9 1.08.48 1.76 1.56 1.76 2.73V18H6v-1.61c0-1.18.68-2.26 1.76-2.73 1.17-.52 2.61-.91 4.24-.91zM4 13c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm1.13 1.1c-.37-.06-.74-.1-1.13-.1-.99 0-1.93.21-2.78.58A2.01 2.01 0 0 0 0 16.43V18h4.5v-1.61c0-.83.23-1.61.63-2.29zM20 13c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm1.13 1.1c.37-.06.74-.1 1.13-.1.99 0 1.93.21 2.78.58.86.37 1.96.9 1.96 2.02V18h-4.5v-1.61c0-.83-.23-1.61-.63-2.29zM12 6c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3z'/%3E%3C/svg%3E");
}

.notify-content {
    flex-grow: 1;
    min-width: 0;
}

.notify-text {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 5px;
    color: #333;
    word-break: break-word;
}

.notify-text strong {
    font-weight: 700;
    color: #000;
}

.post-title {
    color: #0066cc;
}

.notify-time {
    font-size: 12px;
    color: #999;
}

.notify-action {
    margin-left: 10px;
    flex-shrink: 0;
}

.notify-btn {
    padding: 6px 12px;
    background-color: transparent;
    border: 1px solid #ddd;
    border-radius: 15px;
    font-size: 12px;
    cursor: pointer;
    color: #333;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.notify-btn:hover {
    background-color: #f5f5f5;
}

.notify-btn.accept {
    background-color: #000;
    color: #fff;
    border-color: #000;
    margin-right: 5px;
}

.notify-btn.accept:hover {
    background-color: #333;
}

.notify-btn.decline {
    color: #666;
}

.toggle-wrapper {
    padding: 12px 15px;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    background-color: #fff;
}

.toggle-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.toggle-label {
    font-size: 16px;
    color: #333;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    border-radius: 24px;
    transition: .3s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: .3s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

input:checked + .slider {
    background-color: #00ce21;
}

input:checked + .slider:before {
    transform: translateX(24px);
}

/* 토글 호버 효과 */
.toggle-switch:hover .slider {
    box-shadow: 0 0 1px #00ce21;
}

.toggle-switch:hover .slider:before {
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.editor-container {
    width: 100%;
    padding: 15px;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    min-height: 150px;
    margin-bottom: 30px;
    background: #fff
}

.image-upload-container {
    width: 100%;
}

.image-upload-area {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px dashed #ccc;
    border-radius: 8px;
    min-height: 100px;
    cursor: pointer;
}

.upload-icon {
    margin-bottom: 10px;
}

.upload-icon img {
    width: 30px;
    height: 30px;
}

.upload-text {
    color: #888;
    font-size: 14px;
}

.action-buttons {
    display: flex;
}

.private-account-notice {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 24px;
    border: 1px solid #EAEAEA;
    width: 100%;
    max-width: 500px;
    margin: -50px auto 0 auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.lock-icon {
    width: 70px;
    height: 70px;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #333;
}

.private-account-notice h3 {
    font-family: 'LINESeedSans', sans-serif;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 10px;
    color: #000;
}

.private-account-notice p {
    font-family: 'LINESeedSans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.btn-primary {
    min-width: 75px;
    padding: 10px 20px;
    background-color: #000;
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background-color: #333;
}

.chat-header {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
    background-color: #f4f4f4;
}

.chat-header-actions {
    display: flex;
    align-items: center;
    gap: 20px
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-header-actions .icon-btn img {
    width: 30px;
    height: 30px;
}

/* Messages Container */
.messages-container {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    margin-bottom: 70px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background-color: #fff;
    min-height: 150px;
}

.message-row {
    display: flex;
    width: 100%;
}

.my-message-row {
    justify-content: flex-end;
}

.message {
    max-width: 70%;
    border-radius: 16px;
    padding: 12px 16px;
    position: relative;
}

.other-message {
    background-color: #f0f0f0;
    border-top-left-radius: 4px;
    align-self: flex-start;
}

.my-message {
    background-color: #e3f2fd;
    border-top-right-radius: 4px;
    align-self: flex-end;
}

.message-content {
    font-size: 14px;
    line-height: 1.5;
    word-wrap: break-word;
}

.message-time {
    font-size: 11px;
    color: #999;
    margin-top: 4px;
    text-align: right;
}

/* Message Input */
.message-input-container {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-top: 1px solid #eee;
    background: #fff;
    position: fixed;
    width: calc(100% - 275px);
    bottom: 0;
}

.message-input {
    flex: 1;
    border: 1px solid #d7d7d7;
    padding: 10px;
    border-radius: 20px;
    background-color: #f5f5f5;
    margin: 0 10px;
    outline: none;
}

.attachment-btn, .emoji-btn {
    padding: 8px;
}

.message-recipient-container {
    padding: 10px 0;
}

.recipient-label {
    margin-bottom: 10px;
    font-weight: 500;
}

.selected-recipients {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

.recipient-tag {
    display: flex;
    align-items: center;
    background: #f0f0f0;
    border-radius: 16px;
    padding: 5px 10px;
    margin-right: 8px;
    margin-bottom: 5px;
}

.remove-recipient {
    background: none;
    border: none;
    margin-left: 5px;
    font-size: 14px;
    cursor: pointer;
    color: #666;
}

.recipient-search-box {
    border: none;
    outline: none;
    flex-grow: 1;
    min-width: 100px;
    padding: 5px;
}

.user-list-container {
    max-height: 300px;
    overflow-y: auto;
    padding: 10px 0;
}

.section-title {
    color: #666;
    font-size: 14px;
    margin: 5px 0 10px 5px;
}

.user-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    cursor: pointer;
    border-radius: 8px;
}

.user-item:hover {
    background-color: #f5f5f5;
}

.selected-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkmark {
    color: white;
    font-size: 12px;
}

.message-modal-footer {
    text-align: center;
    margin-top: 20px;
}

/*comment */
.comment-container {
    margin: 20px 0;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.comment-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.comment-modal-title {
    font-weight: 700;
    font-size: 18px;
}

.comment-container .comment-list {
    flex: 1;
    overflow-y: auto;
    padding: 15px 20px;
    max-height: calc(90vh - 130px);
}

.comment-container .comment-item {
    margin-bottom: 20px;
    position: relative;
}

.comment-user {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-right: 10px;
    overflow: hidden;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.username {
    font-weight: 600;
    font-size: 14px;
}

.comment-text {
    padding-left: 46px;
    margin-bottom: 5px;
    font-size: 14px;
    line-height: 1.4;
    word-break: break-all;
}

.comment-actions {
    padding-left: 46px;
    display: flex;
    font-size: 12px;
    color: #777;
}

.comment-time {
    margin-right: 15px;
}

.reply-toggle {
    cursor: pointer;
}

.reply-toggle:hover {
    text-decoration: underline;
}

.reply-list {
    display: none;
    margin-top: 10px;
    padding-left: 46px;
}

.reply-list.active {
    display: block;
}

.reply-item {
    margin-bottom: 15px;
}

.reply-count {
    color: #777;
    font-size: 13px;
    margin-left: 5px;
}

.like-info {
    margin-right: 15px;
}

.like-icon {
    width: 20px;
    height: 20px;
    background: url('../images/like.svg') no-repeat center;
    background-size: contain;
    cursor: pointer;
    margin-left: auto;
    position: relative;
}

.like-icon.active {
    background-image: url('../images/like-filled.svg');
}

.comment-input-container {
    padding: 15px 0;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    position: relative;
    background: white;
}

.comment-input-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    background-color: #f5f5f5;
    border-radius: 20px;
    padding: 0 15px;
    border: 1px solid #eee;
}

.comment-input {
    flex: 1;
    border: none;
    padding: 10px 0;
    font-family: 'LINESeedSans', sans-serif;
    font-size: 14px;
    background-color: transparent;
    outline: none;
}

.comment-emoji-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 0;
}

.comment-emoji-btn img {
    width: 20px;
    height: 20px;
    opacity: 0.7;
}

.comment-emoji-btn:hover img {
    opacity: 1;
}

.comment-input::placeholder {
    color: #999;
}

.modal-content .comment-container {
    padding: 0;
    margin: 0;
    border: 0;
}

.modal-footer .comment-input-container {
    padding: 0;
    margin: 0;
    border: 0;
}

@media (max-width: 992px) {
    .header-actions {
        gap: 0;
    }

    .notification-icon {
        display: block;
    }

    .user-info {
        display: none;
    }

    .mobile-nav {
        display: flex;
    }

    .nav-item {
        border-bottom: 1px solid #f0f0f0;
    }

    .main-container {
        flex-direction: column;
        padding-bottom: 60px;
    }

    .content-grid {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 16px;
    }

    .content-card {
        border: 0;
        border-radius: 0;
        border-bottom: 1px solid #EAEAEA;
        padding: 0 0 24px 0;
    }

    .card-body {
        flex-direction: row;
        gap: 16px;
    }

    .card-image-container {
        width: 120px;
        height: 120px;
        margin-bottom: 0;
        order: 2;
    }

    .card-content {
        flex: 1;
        order: 1;
    }

    .card-title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .card-description {
        font-size: 13px;
    }

    .group-cover {
        height: 100px;
    }

    .left-nav {
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        z-index: 1000;
        transform: translateX(-100%);
    }

    .left-nav.active {
        transform: translateX(0);
        width: 100%;
        z-index: 1001;
    }

    .mobile-menu-btn {
        display: block;
    }

    .right-sidebar {
        width: 100%;
        border-left: none;
        border-top: 1px solid #eee;
    }

    .sidebar-section {
        padding: 0;
    }

    .search-box {
        display: none;
    }

    .modal-container {
        position: fixed;
        bottom: -100%;
        left: 0;
        width: 100%;
        max-width: 100%;
        margin: 0;
        border-radius: 24px 24px 0 0;
        transform: none;
        transition: bottom 0.3s ease-out;
    }

    .modal.active .modal-container {
        bottom: 0;
        transform: none;
    }

    .message-input-container {
        display: flex;
        align-items: center;
        padding: 12px 16px;
        border-top: 1px solid #eee;
        background: #fff;
        position: fixed;
        width: 100%;
        left: 0;
        bottom: 0;
    }

    .nav-close-btn {
        display: block;
    }

    .message-item {
        padding: 12px 10px;
    }

    .message-avatar {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }

    .message-preview {
        font-size: 13px;
    }

    .message-avatar-label {
        font-size: 8px;
    }

    .profile-image-box {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .explorer-item {
        padding: 15px 0;
    }
}

.flex {
    display: flex;
}

.jutify-center {
    justify-content: center;
}

.m5 {
    margin: 5px;
}

.mb-5 {
    margin-bottom: 5px;
}

.mt-5 {
    margin-top: 5px;
}

.w120 {
    min-width: 120px;
}

.footer {
    padding-top: 20px;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    color: #666;
}

.footer a {
    color: #666;
    display: block;
}

.policy-section {
    margin-bottom: 24px;
    word-break: break-word;
}

.policy-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
}

.policy-content {
    word-break: break-word;
}

.policy-content ul {
    padding-left: 20px;
}

.policy-content li {
    margin-bottom: 8px;
}

.definition-term {
    font-weight: bold;
}

.whitepaper-title {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 24px;
}

.whitepaper-subtitle {
    font-size: 20px;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 16px;
}

.bullet-point {
    margin-left: 20px;
    margin-bottom: 10px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

th, td {
    border: 1px solid #000;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f0f0f0;
}

.problem-solution {
    margin-bottom: 12px;
    word-wrap: break-word;
}