:root {
    --primary-color: #0095f6;
    --primary-hover: #1877f2;
    --bg-primary: #181818;
    --bg-secondary: #1e1e1e;
    --bg-tertiary: #242424;
    --bg-hover: rgba(255, 255, 255, 0.05);
    --text-primary: #e4e4e4;
    --text-secondary: #a1a1a1;
    --text-tertiary: #707070;
    --border-color: #2f2f2f;
    --divider-color: #2a2a2a;
    --error-color: #ed4956;
    --success-color: #00ba7c;
    --like-color: #ed4956;
    --shadow: 0 0 0 1px rgba(255,255,255,0.05);
    --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

/* App Container */
.app-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Hide top navbar completely */
.navbar {
    display: none;
}

.nav-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
}

.brand-icon {
    width: 30px;
    height: 30px;
    color: var(--text-primary);
}

.nav-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-badge {
    padding: 6px 14px;
    background-color: var(--bg-tertiary);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

.btn-logout {
    padding: 8px 16px;
    border-radius: 8px;
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-logout:hover {
    background-color: var(--bg-hover);
}

.nav-auth {
    display: flex;
    gap: 12px;
}

/* Main Content - Three Column Layout */
.main-content {
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    gap: 0;
    padding: 0;
}

/* Left Sidebar Navigation */
.sidebar-left {
    width: 300px;
    padding: 40px 32px;
    position: sticky;
    top: 0;
    height: 100vh;
    border-right: 1px solid rgba(47, 47, 47, 0.4);
    display: flex;
    flex-direction: column;
}

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 16px 40px;
    margin-bottom: 12px;
    justify-content: flex-start;
}

.sidebar-brand .brand-icon {
    width: 28px;
    height: 28px;
    color: var(--text-primary);
    flex-shrink: 0;
}

.sidebar-brand-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    border-radius: 10px;
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 400;
    transition: var(--transition);
    margin: 0 0 0 0;
}

.sidebar-link:hover {
    background-color: var(--bg-hover);
    color: var(--text-primary);
}

.sidebar-link.active {
    color: var(--text-primary);
    font-weight: 500;
}

.sidebar-icon {
    width: 28px;
    height: 28px;
    stroke-width: 1.5;
}

.sidebar-footer {
    margin-top: auto;
    padding-top: 32px;
}

.sidebar-user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    transition: var(--transition);
    cursor: pointer;
}

.sidebar-user:hover {
    background-color: var(--bg-hover);
}

.sidebar-user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--success-color) 0%, var(--text-tertiary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    color: white;
}

.sidebar-user-info {
    flex: 1;
    min-width: 0;
}

.sidebar-user-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

/* Center Feed */
.feed-column {
    flex: 1;
    max-width: 640px;
    border-right: 1px solid rgba(47, 47, 47, 0.4);
    min-height: 100vh;
}

/* Right Sidebar */
.sidebar-right {
    width: 380px;
    padding: 40px 32px;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

/* Messages Container */
.messages-container {
    max-width: 640px;
    margin: 0 auto 0;
    padding: 16px 32px 0;
}

.alert {
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid;
}

.alert-success {
    background-color: rgba(0, 186, 124, 0.1);
    color: var(--success-color);
    border-color: rgba(0, 186, 124, 0.3);
}

.alert-error {
    background-color: rgba(237, 73, 86, 0.1);
    color: var(--error-color);
    border-color: rgba(237, 73, 86, 0.3);
}

/* Feed Header */
.feed-header {
    padding: 24px 32px;
    border-bottom: 1px solid rgba(47, 47, 47, 0.5);
}

.feed-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.feed-subtitle {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Circles Quick Access */
.circles-quick-access {
    padding: 24px 32px;
    border-bottom: 1px solid rgba(47, 47, 47, 0.5);
    background-color: transparent;
}

.circles-quick-access h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.circles-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.circle-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-weight: 500;
    font-size: 13px;
    transition: var(--transition);
    color: var(--text-primary);
}

.circle-chip:hover {
    background-color: var(--bg-hover);
    border-color: var(--text-tertiary);
}

.circle-count {
    padding: 2px 6px;
    background-color: var(--bg-secondary);
    border-radius: 8px;
    font-size: 11px;
    color: var(--text-secondary);
}

/* Posts Feed */
.posts-feed,
.posts-list {
    display: flex;
    flex-direction: column;
}

.post-card {
    padding: 28px 32px;
    border-bottom: 1px solid rgba(47, 47, 47, 0.5);
    transition: var(--transition);
    background-color: transparent;
    cursor: pointer;
    border-left: 3px solid transparent;
}

.post-card:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.post-card.user-authored {
    border-left-color: var(--accent);
    background-color: rgba(29, 161, 242, 0.03);
}

.post-card.user-authored:hover {
    background-color: rgba(29, 161, 242, 0.05);
}

.post-card:first-child {
    padding-top: 20px;
}

.post-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.post-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--success-color) 0%, var(--text-tertiary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 15px;
    color: white;
    flex-shrink: 0;
}

.post-header-info {
    flex: 1;
    min-width: 0;
}

.post-author {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.author-badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    background: rgba(29, 161, 242, 0.15);
    color: var(--accent);
    font-size: 11px;
    font-weight: 600;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-meta,
.post-time {
    color: var(--text-secondary);
    font-size: 14px;
}

.post-circle {
    color: var(--success-color);
    font-weight: 500;
}

.post-circle:hover {
    text-decoration: underline;
}

.post-content {
    margin-bottom: 12px;
    margin-left: 52px;
}

.post-content p {
    color: var(--text-primary);
    font-size: 15px;
    line-height: 1.6;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.post-actions {
    display: flex;
    gap: 8px;
    margin-left: 52px;
    margin-top: 8px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 18px;
    background-color: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    font-size: 13px;
    font-weight: 500;
}

.action-btn:hover {
    background-color: var(--bg-hover);
}

.action-icon {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}

.like-btn:hover {
    color: var(--like-color);
}

.like-btn.liked {
    color: var(--like-color);
}

.like-btn.liked .action-icon {
    fill: var(--like-color);
}

/* Share/repost button styling */
.share-btn:hover {
    color: var(--success-color);
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    background-color: var(--text-primary);
    color: var(--bg-primary);
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--text-secondary);
    color: var(--bg-primary);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    background-color: transparent;
    color: var(--text-primary);
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    background-color: var(--bg-hover);
}

.btn-submit {
    width: 100%;
    padding: 14px 24px;
    background-color: var(--text-primary);
    color: var(--bg-primary);
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background-color: var(--text-secondary);
}

.landing-page-wrapper {
    width: 100%;
}

.landing-page-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 60px 24px;
    width: 100%;
    background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(24, 24, 24, 0.95) 100%);
}

.landing-content {
    max-width: 640px;
    width: 100%;
    text-align: center;
}

.landing-hush {
    font-size: 96px;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: -2px;
    line-height: 1;
}

.landing-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 64px;
    line-height: 1.6;
    font-weight: 400;
}

.landing-check-form {
    margin-bottom: 48px;
}

.landing-input-group {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.landing-input {
    flex: 1;
    padding: 18px 24px;
    background-color: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 16px;
    color: var(--text-primary);
    transition: var(--transition);
    font-family: inherit;
}

.landing-input:focus {
    outline: none;
    border-color: var(--text-primary);
    background-color: var(--bg-tertiary);
}

.landing-input::placeholder {
    color: var(--text-tertiary);
}

.landing-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 32px;
    background-color: var(--text-primary);
    color: var(--bg-primary);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.landing-button:hover {
    background-color: var(--text-secondary);
}

.landing-arrow {
    width: 20px;
    height: 20px;
    transition: var(--transition);
}

.landing-button:hover .landing-arrow {
    transform: translateX(4px);
}

.landing-hint {
    font-size: 13px;
    color: var(--text-tertiary);
    text-align: left;
    padding-left: 4px;
}

.landing-signin {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(47, 47, 47, 0.2);
}

.landing-signin-text {
    font-size: 15px;
    color: var(--text-secondary);
}

.landing-faq-section {
    width: 100%;
    background: rgba(24, 24, 24, 0.5);
    border-top: 1px solid rgba(47, 47, 47, 0.3);
    padding: 80px 24px 100px;
}

.landing-faq-content {
    max-width: 640px;
    margin: 0 auto;
    width: 100%;
}

.landing-faq-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: -0.5px;
}

.faq-item {
    margin-bottom: 32px;
    text-align: left;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-question {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.faq-answer {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.landing-link {
    color: var(--text-primary);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(228, 228, 228, 0.3);
    transition: var(--transition);
}

.landing-link:hover {
    text-decoration-color: var(--text-primary);
}

/* Auth Pages */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 24px;
    width: 100%;
    max-width: 100%;
}

.auth-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    width: 100%;
    max-width: 420px;
}

.auth-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
    color: var(--text-primary);
}

.auth-subtitle {
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 32px;
    font-size: 14px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
}

.form-input,
.form-textarea {
    padding: 12px 16px;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 15px;
    color: var(--text-primary);
    transition: var(--transition);
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--text-tertiary);
    background-color: var(--bg-tertiary);
}

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

.form-help {
    font-size: 13px;
    color: var(--text-tertiary);
}

.form-errors {
    margin-top: 4px;
}

.form-error {
    color: var(--error-color);
    font-size: 13px;
    font-weight: 500;
}

.auth-footer {
    margin-top: 24px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
}

.auth-link {
    color: var(--primary-color);
    font-weight: 600;
}

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

/* Create Post Section */
.create-post-section {
    padding: 28px 32px;
    border-bottom: 1px solid rgba(47, 47, 47, 0.5);
    background-color: transparent;
}

.post-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.posting-as {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Circle Detail */
.circle-page {
    width: 100%;
}

.circle-header {
    padding: 32px 32px 28px;
    border-bottom: 1px solid rgba(47, 47, 47, 0.5);
    background-color: transparent;
}

.circle-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.circle-desc {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.circle-meta {
    display: flex;
    gap: 16px;
}

.meta-item {
    color: var(--text-secondary);
    font-size: 13px;
}

/* Circles Grid */
.circles-container {
    padding: 32px;
}

.page-header {
    margin-bottom: 24px;
}

.page-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.page-subtitle {
    color: var(--text-secondary);
    font-size: 15px;
}

.circles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.circle-card {
    background-color: transparent;
    border: 1px solid rgba(47, 47, 47, 0.6);
    border-radius: 12px;
    padding: 28px;
    transition: var(--transition);
    display: block;
}

.circle-card:hover {
    background-color: rgba(255, 255, 255, 0.02);
    border-color: rgba(47, 47, 47, 0.9);
}

.circle-card-header {
    margin-bottom: 12px;
}

.circle-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.circle-type {
    display: inline-block;
    padding: 4px 10px;
    background-color: var(--bg-tertiary);
    border-radius: 6px;
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.circle-description {
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
    font-size: 14px;
}

.circle-stats {
    display: flex;
    gap: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(47, 47, 47, 0.4);
}

.stat {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    font-size: 13px;
}

.stat-icon {
    width: 16px;
    height: 16px;
}

/* Comments */
.comments-section {
    padding: 32px;
    border-top: 1px solid rgba(47, 47, 47, 0.5);
    margin-top: 0;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background-color: transparent;
    border: 1px solid rgba(47, 47, 47, 0.6);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.comment {
    padding: 24px 0;
    border-left: 3px solid transparent;
    padding-left: 12px;
    margin-left: -12px;
}

.comment.user-authored {
    border-left-color: var(--accent);
    background-color: rgba(29, 161, 242, 0.03);
    border-radius: 4px;
    padding-right: 12px;
}

.comment:last-child {
    padding-bottom: 0;
}

.comment:first-child {
    padding-top: 0;
}

/* Remove borders between comments for cleaner look */
.comment + .comment {
    border-top: 1px solid rgba(47, 47, 47, 0.3);
}

.comment-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
}

.comment-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.comment-author {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.comment-time {
    color: var(--text-tertiary);
    font-size: 13px;
}

.comment-content p {
    color: var(--text-primary);
    line-height: 1.5;
    font-size: 14px;
}

.comment-actions {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.replies {
    margin-top: 16px;
    padding-left: 32px;
    border-left: 2px solid rgba(47, 47, 47, 0.4);
}

/* Profile Page */
.profile-page {
    width: 100%;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(47, 47, 47, 0.5);
}

.profile-avatar-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #0d8bd9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 4px 0;
}

.profile-subtitle {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 24px 32px;
    border-bottom: 1px solid rgba(47, 47, 47, 0.5);
}

.stat-card {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    transition: var(--transition);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.04);
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tab-navigation {
    display: flex;
    border-bottom: 1px solid rgba(47, 47, 47, 0.5);
    padding: 0 32px;
    gap: 8px;
}

.tab-btn {
    padding: 16px 24px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
}

.tab-btn:hover {
    color: var(--text-primary);
}

.tab-btn.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.tab-content {
    display: none;
    padding: 0;
}

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

.comments-profile-list {
    display: flex;
    flex-direction: column;
}

.comment-profile-card {
    padding: 24px 32px;
    border-bottom: 1px solid rgba(47, 47, 47, 0.5);
    border-left: 3px solid transparent;
}

.comment-profile-card.user-authored {
    border-left-color: var(--accent);
    background-color: rgba(29, 161, 242, 0.03);
}

.comment-profile-context {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--text-secondary);
}

.comment-context-label {
    color: var(--text-tertiary);
}

.comment-context-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

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

.comment-context-time {
    color: var(--text-tertiary);
}

/* Post Detail */
.post-page {
    width: 100%;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 20px 32px;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
}

.back-link:hover {
    color: var(--text-primary);
}

.main-post {
    border-bottom: 1px solid rgba(47, 47, 47, 0.5);
}

/* Right Sidebar - Suggested */
.suggested-section {
    margin-bottom: 32px;
}

.suggested-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.suggested-user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
}

.suggested-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--success-color) 0%, var(--text-tertiary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 12px;
    color: white;
    flex-shrink: 0;
}

.suggested-info {
    flex: 1;
    min-width: 0;
}

.suggested-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.suggested-meta {
    font-size: 12px;
    color: var(--text-secondary);
}

.btn-follow {
    padding: 6px 16px;
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-follow:hover {
    background-color: var(--bg-hover);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 64px 24px;
    color: var(--text-secondary);
}

.empty-state p {
    margin-bottom: 16px;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 1024px) {
    .sidebar-right {
        display: none;
    }
    
    .feed-column {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .sidebar-left {
        display: none;
    }
    
    .main-content {
        flex-direction: column;
    }
    
    .feed-column {
        border-right: none;
    }
    
    .navbar {
        display: block !important;
    }
    
    .landing-hush {
        font-size: 64px;
    }
    
    .landing-description {
        font-size: 16px;
        margin-bottom: 48px;
    }
    
    .landing-input-group {
        flex-direction: column;
    }
    
    .landing-button {
        width: 100%;
        justify-content: center;
    }
    
    .landing-faq-section {
        padding: 60px 24px 80px;
    }
    
    .post-content {
        margin-left: 0;
    }
    
    .post-actions {
        margin-left: 0;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.2s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: var(--bg-secondary);
    border-radius: 16px;
    padding: 0;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.modal-close {
    font-size: 32px;
    font-weight: 300;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    background-color: var(--bg-hover);
    color: var(--text-primary);
}

.modal form {
    padding: 24px 28px;
}

.modal .form-group {
    margin-bottom: 20px;
}

.modal .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
    color: var(--text-primary);
}

.modal .form-group select,
.modal .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
}

.modal .form-group select:focus,
.modal .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--bg-secondary);
}

.modal .form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.modal-footer {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    padding: 20px 28px;
    border-top: 1px solid var(--border-color);
    background-color: rgba(255, 255, 255, 0.01);
}

.modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 24px;
}

.modal-footer .btn-secondary,
.modal-actions .btn-secondary {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.modal-footer .btn-secondary:hover,
.modal-actions .btn-secondary:hover {
    background-color: var(--bg-hover);
}

/* Report Button Styles */
.report-btn {
    color: var(--text-tertiary);
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    transition: var(--transition);
    border-radius: 6px;
}

.report-btn:hover {
    color: var(--error-color);
    background-color: rgba(237, 73, 86, 0.1);
}

.report-btn svg {
    width: 16px;
    height: 16px;
    stroke-width: 2;
}

/* Report button on posts - push to the right */
.post-actions .report-btn {
    margin-left: auto;
}

.comment .report-btn {
    font-size: 12px;
}

.comment .report-btn svg {
    width: 14px;
    height: 14px;
}

/* Delete Button Styles */
.delete-btn {
    color: var(--text-tertiary);
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    transition: var(--transition);
    border-radius: 6px;
}

.delete-btn:hover {
    color: var(--error-color);
    background-color: rgba(237, 73, 86, 0.1);
}

.delete-btn svg {
    width: 16px;
    height: 16px;
    stroke-width: 2;
}

/* Delete button on posts - push to the right */
.post-actions .delete-btn {
    margin-left: auto;
}

.comment .delete-btn {
    font-size: 12px;
}

.comment .delete-btn svg {
    width: 14px;
    height: 14px;
}

/* Danger button for delete confirmation */
.btn-danger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    background-color: var(--error-color);
    color: white;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-danger:hover {
    background-color: #d73948;
}

/* Modal body styles */
.modal-body {
    padding: 24px 28px;
}

.modal-body p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Settings Page */
.settings-page {
    width: 100%;
}

.settings-header {
    padding: 32px 32px 24px;
}

.settings-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.settings-section {
    padding: 0 32px 24px;
}

.settings-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
}

.settings-card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 20px 0;
}

.settings-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.settings-info-row:not(:last-child) {
    border-bottom: 1px solid rgba(47, 47, 47, 0.3);
}

.settings-info-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.settings-info-value {
    font-size: 14px;
    color: var(--text-primary);
}

.settings-form {
    max-width: 100%;
}

.settings-form .form-group {
    margin-bottom: 16px;
}

.settings-form .btn-primary {
    margin-top: 8px;
}

/* Danger Zone */
.danger-card {
    background: rgba(237, 73, 86, 0.03);
    border: 1px solid rgba(237, 73, 86, 0.15);
}

.danger-card .settings-card-title {
    color: var(--error-color);
}

.danger-description {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0 0 16px 0;
    line-height: 1.5;
}
