/* Discord Web App Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #0d0d0d;
    color: #cccccc;
    overflow: hidden;
    height: 100vh;
}

.discord-app {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
}

/* Top Bar */
.top-bar {
    height: 30px;
    background-color: #0d0d0d;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 16px;
}

.top-bar-content {
    display: flex;
    align-items: center;
    width: 100%;
}

.app-title {
    font-size: 14px;
    font-weight: 500;
    color: #cccccc;
    letter-spacing: 0.3px;
}

.app-content {
    display: flex;
    flex: 1;
    overflow: hidden;
}

/* Server Sidebar */
.server-sidebar {
    width: 72px;
    background-color: #0d0d0d;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 0;
    overflow-y: auto;
}

.server-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    background-color: #2d2d30;
    color: #cccccc;
}

.server-icon:hover {
    background-color: #37373d;
    border-radius: 16px;
}

.server-icon.active {
    background-color: #37373d;
    border-radius: 16px;
}

.server-icon.active::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 40px;
    background-color: #007acc;
    border-radius: 0 2px 2px 0;
}

.main-nav-icon.active {
    background-color: #007acc;
    color: #ffffff;
}

.main-nav-icon.active:hover {
    background-color: #0e639c;
}

/* Channel Sidebar */
.channel-sidebar {
    width: 260px;
    background-color: #252526;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 8px;
    margin: 8px 8px 8px 0;
}

.server-header {
    position: relative;
    height: 16px;
    background-color: #252526;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.header-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.background-pattern {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(circle at 30% 20%, rgba(88, 101, 242, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(114, 137, 218, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(88, 101, 242, 0.06) 0%, transparent 70%);
    animation: backgroundFloat 8s ease-in-out infinite;
}

.background-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(88, 101, 242, 0.04) 0%, 
        rgba(114, 137, 218, 0.03) 25%, 
        rgba(88, 101, 242, 0.05) 50%, 
        rgba(114, 137, 218, 0.04) 75%, 
        rgba(88, 101, 242, 0.03) 100%);
    background-size: 400% 400%;
    animation: gradientShift 12s ease-in-out infinite;
}

.header-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.server-header:hover {
    background-color: #2a2d2e;
}

.server-name {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.chevron-icon {
    color: #cccccc;
    transition: all 0.2s ease;
    padding: 4px;
    border-radius: 4px;
}

.server-header:hover .chevron-icon {
    transform: rotate(180deg);
    color: #ffffff;
    background-color: #3e3e42;
}

@keyframes backgroundFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-8px) rotate(1deg);
        opacity: 1;
    }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Channel Categories */
.channel-category {
    margin-bottom: 16px;
    margin-top: 0px;
}

.category-header {
    height: 40px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    background-color: #252526;
}

.category-header:hover {
    background-color: #2a2d2e;
}

.category-icon {
    color: #cccccc;
    margin-right: 8px;
}

.category-header:hover .category-icon {
    color: #ffffff;
}

.category-name {
    font-size: 16px;
    font-weight: 600;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.category-header:hover .category-name {
    color: #ffffff;
}

/* Channel List */
.channel-list {
    padding: 8px 16px;
    background-color: #252526;
}

.channel-item {
    height: 36px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    margin: 2px 0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #cccccc;
}

.channel-item:hover {
    background-color: #2a2d2e;
    color: #ffffff;
}

.channel-item.active {
    background-color: #094771;
    color: #ffffff;
}

.channel-hash {
    font-size: 16px;
    margin-right: 6px;
    font-weight: 300;
}

.channel-name {
    font-size: 16px;
    font-weight: 500;
}

.voice-icon {
    margin-right: 6px;
    color: #cccccc;
}

.channel-item:hover .voice-icon {
    color: #ffffff;
}

/* User Info */
.user-info {
    height: 52px;
    background-color: #252526;
    border-top: 1px solid #3e3e42;
    padding: 8px;
    display: flex;
    align-items: center;
    margin-top: auto;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 8px;
    cursor: pointer;
    transition: border-radius 0.2s ease;
}

.user-avatar:hover {
    border-radius: 8px;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

.user-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.username {
    font-size: 14px;
    font-weight: 600;
    color: #cccccc;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-status {
    font-size: 12px;
    color: #858585;
}

.user-controls {
    display: flex;
    gap: 4px;
}

.control-icon {
    width: 16px;
    height: 16px;
    color: #cccccc;
    cursor: pointer;
    transition: color 0.2s ease;
}

.control-icon:hover {
    color: #ffffff;
}

/* Main Chat Area */
.main-chat {
    flex: 1;
    background-color: #1e1e1e;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    margin: 8px 8px 8px 0;
    position: relative;
}

.developers-container {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    background-color: #1e1e1e;
}

.developers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 100%;
}

.developer-card {
    background-color: #252526;
    border: 1px solid #3e3e42;
    border-radius: 8px;
    overflow: hidden;
    height: fit-content;
    transition: all 0.2s ease;
}

.developer-card:hover {
    border-color: #007acc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 122, 204, 0.2);
}

.developer-banner {
    width: 100%;
    height: 60px;
    position: relative;
}

.banner-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    align-items: flex-start;
    padding: 8px 12px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    position: relative;
}

.banner-text {
    position: absolute;
    top: 8px;
    left: 12px;
}

.developer-profile-header {
    display: flex;
    align-items: flex-start;
    padding: 8px 12px;
    gap: 8px;
    position: relative;
    background-color: #252526;
}

.developer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    border: 3px solid #252526;
    margin-top: -24px;
    flex-shrink: 0;
}

.developer-info {
    flex: 1;
    padding-top: 4px;
    min-width: 0;
}

.developer-name {
    font-size: 14px;
    font-weight: 700;
    color: #cccccc;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.developer-username {
    font-size: 11px;
    color: #858585;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.developer-engagement {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-end;
    padding-top: 4px;
}

.engagement-stat {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #cccccc;
    font-size: 11px;
    font-weight: 500;
}

.developer-middle-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 8px 12px;
    background-color: #252526;
    border-top: 1px solid #3e3e42;
}

.username-input-box {
    background-color: #2d2d30;
    border: 1px solid #3e3e42;
    border-radius: 4px;
    padding: 6px 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #858585;
    font-size: 11px;
}

.username-input-box svg {
    cursor: pointer;
    flex-shrink: 0;
    color: #858585;
}

.username-input-box:hover {
    border-color: #007acc;
}

.about-section {
    flex: 1;
}

.about-title {
    font-size: 10px;
    font-weight: 700;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.about-text {
    font-size: 11px;
    color: #cccccc;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.crypto-communities-section {
    padding: 8px 12px;
    background-color: #252526;
    border-top: 1px solid #3e3e42;
}

.communities-title {
    font-size: 12px;
    font-weight: 700;
    color: #cccccc;
    margin-bottom: 8px;
}

.communities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}

.community-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px;
    background-color: #2d2d30;
    border-radius: 4px;
    border: 1px solid #3e3e42;
    cursor: pointer;
    transition: all 0.2s ease;
}

.community-item:hover {
    background-color: #37373d;
    border-color: #007acc;
}

.community-icon {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 11px;
    flex-shrink: 0;
}

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

.community-name {
    font-size: 10px;
    font-weight: 600;
    color: #cccccc;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.community-status {
    font-size: 9px;
    font-weight: 500;
    padding: 1px 4px;
    border-radius: 3px;
    width: fit-content;
}

.community-status.launched {
    background-color: #2d7d32;
    color: #4caf50;
}

.community-status.launching-soon {
    background-color: #7c3aed;
    color: #a855f7;
}

.community-status.launching-later {
    background-color: #f59e0b;
    color: #fbbf24;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-dot.launched {
    background-color: #4caf50;
}

.status-dot.launching-soon {
    background-color: #a855f7;
}

.status-dot.launching-later {
    background-color: #fbbf24;
}

/* Crypto Community Page Styles */
.crypto-community-container {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    background-color: #1e1e1e;
    display: none;
}

.crypto-community-page {
    max-width: 1200px;
    margin: 0 auto;
}

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

.crypto-banner {
    width: 100%;
    height: 120px;
    background: #252526;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid #3e3e42;
}

.banner-pixel-art {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 100%;
    padding: 20px;
}

.pixel-element {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 24px;
}

.crypto-profile-section {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.crypto-profile-picture {
    flex-shrink: 0;
}

.crypto-avatar-large {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #007acc, #0e639c);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 36px;
    border: 4px solid #252526;
}

.crypto-main-info {
    flex: 1;
}

.crypto-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.crypto-title-info {
    flex: 1;
}

.crypto-project-name {
    font-size: 32px;
    font-weight: 700;
    color: #cccccc;
    margin: 0 0 8px 0;
}

.crypto-status-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.crypto-status-badge {
    font-size: 14px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 4px;
}

.crypto-status-badge.launched {
    background-color: #0e639c;
    color: #ffffff;
}

.crypto-status-badge.launching-soon {
    background-color: #7c3aed;
    color: #ffffff;
}

.crypto-status-badge.launching-later {
    background-color: #f59e0b;
    color: #ffffff;
}

.crypto-countdown {
    font-size: 14px;
    color: #cccccc;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
}

.crypto-creator-info {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #252526;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #3e3e42;
}

.creator-avatar-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #4caf50;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

.creator-details {
    flex: 1;
    min-width: 0;
}

.creator-name {
    font-size: 14px;
    font-weight: 600;
    color: #cccccc;
    margin-bottom: 2px;
}

.creator-username {
    font-size: 12px;
    color: #858585;
    margin-bottom: 4px;
}

.creator-stats {
    display: flex;
    gap: 8px;
    font-size: 11px;
    color: #858585;
}

.creator-engagement {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.engagement-stat-small {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #cccccc;
    font-size: 12px;
    font-weight: 500;
}

.crypto-features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-top: 16px;
}

.feature-item {
    background: #2d2d30;
    border: 1px solid #3e3e42;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 12px;
    color: #cccccc;
    text-align: center;
    transition: all 0.2s ease;
}

.feature-item:hover {
    background: #37373d;
    border-color: #007acc;
}

.crypto-content-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.crypto-left-column,
.crypto-right-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.crypto-section {
    background: #252526;
    border: 1px solid #3e3e42;
    border-radius: 8px;
    padding: 20px;
}

.section-title {
    font-size: 16px;
    font-weight: 700;
    color: #cccccc;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #2d2d30;
    border: 1px solid #3e3e42;
    border-radius: 6px;
    color: #cccccc;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
}

.social-link:hover {
    background: #37373d;
    border-color: #007acc;
    color: #ffffff;
}

.social-link svg {
    flex-shrink: 0;
    color: #858585;
}

.social-link:hover svg {
    color: #007acc;
}

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

.comment-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: #2d2d30;
    border: 1px solid #3e3e42;
    border-radius: 6px;
}

.comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f44336;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

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

.comment-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.comment-author {
    font-size: 14px;
    font-weight: 600;
    color: #cccccc;
}

.comment-username {
    font-size: 12px;
    color: #858585;
}

.comment-stats {
    font-size: 11px;
    color: #858585;
}

.comment-text {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.5;
}

.biography-text {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.6;
}

/* Developer Profile Page Styles */
.developer-profile-container {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    background-color: #1e1e1e;
    display: none;
}

.developer-profile-page {
    max-width: 1200px;
    margin: 0 auto;
}

.developer-profile-header {
    margin-bottom: 24px;
}

.developer-banner-large {
    width: 100%;
    height: 150px;
    background: #252526;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid #3e3e42;
}

.banner-pixel-art-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 100%;
    padding: 30px;
}

.pixel-element-large {
    width: 80px;
    height: 80px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 32px;
}

.developer-profile-info {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.developer-avatar-profile {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff9800, #ff5722);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 48px;
    border: 6px solid #252526;
    margin-top: -60px;
    flex-shrink: 0;
}

.developer-name-section {
    flex: 1;
}

.developer-name-large {
    font-size: 36px;
    font-weight: 700;
    color: #cccccc;
    margin: 0 0 8px 0;
}

.developer-username-large {
    font-size: 18px;
    color: #858585;
}

.developer-engagement-large {
    display: flex;
    gap: 20px;
    align-items: center;
}

.engagement-stat-large {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cccccc;
    font-size: 16px;
    font-weight: 500;
}

.developer-profile-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.developer-left-section,
.developer-right-section {
    display: flex;
    flex-direction: column;
}

.username-button-box {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #2d2d30;
    border: 1px solid #3e3e42;
    border-radius: 6px;
    color: #858585;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.username-button-box:hover {
    background: #37373d;
    border-color: #007acc;
    color: #cccccc;
}

.about-me-section-profile {
    background: #252526;
    border: 1px solid #3e3e42;
    border-radius: 8px;
    padding: 20px;
}

.about-title-profile {
    font-size: 12px;
    font-weight: 700;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.about-text-profile {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 8px;
}

.crypto-communities-created-section {
    background: #252526;
    border: 1px solid #3e3e42;
    border-radius: 8px;
    padding: 24px;
}

.communities-created-title {
    font-size: 18px;
    font-weight: 700;
    color: #cccccc;
    margin-bottom: 20px;
}

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

.created-project-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: #2d2d30;
    border: 1px solid #3e3e42;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.created-project-item:hover {
    background: #37373d;
    border-color: #007acc;
}

.project-icon-small {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: linear-gradient(135deg, #007acc, #0e639c);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 24px;
    flex-shrink: 0;
}

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

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

.project-name-small {
    font-size: 18px;
    font-weight: 700;
    color: #cccccc;
}

.project-status-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.project-status-badge {
    font-size: 12px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 4px;
}

.project-status-badge.launched {
    background-color: #0e639c;
    color: #ffffff;
}

.project-status-badge.launching-soon {
    background-color: #7c3aed;
    color: #ffffff;
}

.project-status-badge.launching-later {
    background-color: #f59e0b;
    color: #ffffff;
}

.project-time-small {
    font-size: 12px;
    color: #cccccc;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
}

.project-socials-small {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.project-socials-small svg {
    color: #858585;
    cursor: pointer;
    transition: color 0.2s ease;
}

.project-socials-small svg:hover {
    color: #007acc;
}

.project-description-small {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.5;
    margin-bottom: 12px;
}

.project-features-small {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.feature-check-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #cccccc;
}

.feature-check-item svg {
    flex-shrink: 0;
}

.project-engagement-small {
    display: flex;
    gap: 16px;
}

/* Clickable elements */
.clickable-project {
    cursor: pointer;
}

.clickable-creator {
    cursor: pointer;
    transition: all 0.2s ease;
}

.clickable-creator:hover {
    background-color: #37373d;
    border-color: #007acc;
}

.clickable-user {
    cursor: pointer;
    transition: color 0.2s ease;
}

.clickable-user:hover {
    color: #007acc;
    text-decoration: underline;
}

.clickable-comment {
    cursor: pointer;
    transition: all 0.2s ease;
}

.clickable-comment:hover {
    background-color: #37373d;
    border-color: #007acc;
}

/* Chat Header */
.chat-header {
    height: 48px;
    background-color: #1e1e1e;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
}

.channel-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.channel-hash {
    font-size: 20px;
    color: #858585;
    font-weight: 300;
}

.channel-title {
    font-size: 16px;
    font-weight: 600;
    color: #cccccc;
}

.channel-description {
    font-size: 14px;
    color: #858585;
    margin-left: 8px;
}

.chat-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.threads-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: #2d2d30;
    border: 1px solid #3e3e42;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    color: #cccccc;
    font-size: 14px;
    font-weight: 500;
}

.threads-button:hover {
    background-color: #37373d;
    color: #ffffff;
}

/* Crypto Content Styles */
.hero-banner {
    background: #252526;
    padding: 48px 24px;
    position: relative;
    overflow: hidden;
    margin: -4px 0 8px 16px;
    border-radius: 12px;
    min-height: 280px;
    border: 1px solid #3e3e42;
}

.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.banner-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.banner-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.search-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 16px 50px 16px 20px;
    border: 1px solid #3e3e42;
    border-radius: 8px;
    background: #1e1e1e;
    font-size: 14px;
    color: #cccccc;
}

.search-input::placeholder {
    color: #858585;
}

.search-input:focus {
    outline: none;
    background: #1e1e1e;
    border-color: #007acc;
    box-shadow: 0 0 0 1px #007acc;
}

.search-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #858585;
    font-size: 16px;
}

.banner-graphics {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.floating-island {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    animation: float 6s ease-in-out infinite;
}

.floating-island:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-island:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-island:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.filters-section {
    padding: 24px;
    background: #1e1e1e;
    border-bottom: 1px solid #3e3e42;
    margin-left: 16px;
}

.filters-title {
    font-size: 16px;
    font-weight: 600;
    color: #cccccc;
    margin-bottom: 16px;
}

.filter-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-dropdown {
    position: relative;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid #3e3e42;
    border-radius: 6px;
    background: #2d2d30;
    color: #cccccc;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    justify-content: space-between;
}

.filter-btn:hover {
    border-color: #007acc;
    background-color: #2a2d2e;
    color: #ffffff;
}

.filter-btn.active {
    background-color: #094771;
    border-color: #007acc;
    color: #ffffff;
}

.dropdown-arrow {
    width: 12px;
    height: 12px;
    color: #858585;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.filter-btn.active .dropdown-arrow {
    transform: rotate(180deg);
    color: #ffffff;
}

.filter-options {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 4px;
    background: #2d2d30;
    border: 1px solid #3e3e42;
    border-radius: 6px;
    padding: 8px;
    min-width: 180px;
    z-index: 100;
    display: none;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.filter-dropdown.active .filter-options {
    display: flex;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    color: #cccccc;
    font-size: 13px;
    transition: background-color 0.2s ease;
}

.filter-option:hover {
    background-color: #37373d;
    color: #ffffff;
}

.filter-option input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #007acc;
}

.filter-option input[type="checkbox"]:checked {
    accent-color: #007acc;
}

.filter-btn:disabled,
.filter-btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.filter-icon {
    width: 16px;
    height: 16px;
    color: currentColor;
    flex-shrink: 0;
}

.count {
    background: #3e3e42;
    color: #cccccc;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

.table-container {
    flex: 1;
    overflow: auto;
    background: #1e1e1e;
    margin-left: 16px;
}

.crypto-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.crypto-table thead {
    background: #252526;
    position: sticky;
    top: 0;
    z-index: 10;
}

.crypto-table th {
    padding: 16px 12px;
    text-align: left;
    font-weight: 600;
    color: #cccccc;
    border-bottom: 1px solid #3e3e42;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.crypto-table td {
    padding: 16px 12px;
    border-bottom: 1px solid #3e3e42;
    vertical-align: top;
    border-left: none;
    border-right: none;
}

.crypto-row {
    background-color: #1e1e1e;
    color: #cccccc;
}

.crypto-row:hover {
    background-color: #2a2d2e;
    color: #ffffff;
}

.crypto-row:hover .pair-name,
.crypto-row:hover .bio,
.crypto-row:hover .launch-time,
.crypto-row:hover .time-icon,
.crypto-row:hover .social-icon,
.crypto-row:hover .engagement-item,
.crypto-row:hover .plan-item,
.crypto-row:hover .check-icon {
    color: #ffffff;
}

.pair-info {
    min-width: 200px;
}

.drag-handle {
    display: inline-flex;
    flex-direction: column;
    color: #858585;
    font-size: 12px;
    line-height: 1;
    margin-right: 12px;
    cursor: grab;
}

.crypto-avatar-small {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #007acc;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 12px;
    margin-right: 12px;
}

.pair-details {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    vertical-align: top;
}

.pair-name {
    font-weight: 600;
    color: #cccccc;
    font-size: 14px;
}

.pair-status {
    font-size: 11px;
    font-weight: 500;
    padding: 2px 6px;
    border-radius: 4px;
    width: fit-content;
}

.pair-status.launched {
    background-color: #0e639c;
    color: #ffffff;
}

.pair-status.launching-soon {
    background-color: #7c3aed;
    color: #ffffff;
}

.pair-status.launching-later {
    background-color: #f59e0b;
    color: #ffffff;
}

.launch-time {
    min-width: 120px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cccccc;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
}

.time-icon {
    width: 16px;
    height: 16px;
    color: #858585;
    flex-shrink: 0;
}

.socials {
    min-width: 80px;
}

.social-icon {
    width: 16px;
    height: 16px;
    color: #858585;
    margin-right: 8px;
    cursor: pointer;
    transition: color 0.2s ease;
    flex-shrink: 0;
}

.social-icon:hover {
    color: #007acc;
}

.bio {
    min-width: 250px;
    max-width: 300px;
    color: #cccccc;
    line-height: 1.5;
}

.developer-plans {
    min-width: 300px;
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}

.plan-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #cccccc;
    cursor: pointer;
    transition: color 0.2s ease;
}

.plan-item:hover {
    color: #ffffff;
}

.plan-item.checked {
    color: #4ec9b0;
}

.check-icon {
    width: 12px;
    height: 12px;
    color: #4ec9b0;
    flex-shrink: 0;
}

.engagement {
    text-align: center;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.engagement-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #cccccc;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s ease;
}

.engagement-item:hover {
    color: #ffffff;
}

.heart-icon {
    width: 16px;
    height: 16px;
    color: #f44336;
    flex-shrink: 0;
}

.comment-icon {
    width: 16px;
    height: 16px;
    color: #007acc;
    flex-shrink: 0;
}

.crypto-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #007acc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 12px;
}

.crypto-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.crypto-name {
    font-size: 14px;
    font-weight: 500;
    color: #cccccc;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.crypto-status {
    font-size: 12px;
    font-weight: 500;
    padding: 2px 6px;
    border-radius: 4px;
    width: fit-content;
}

.crypto-status.launched {
    background-color: #0e639c;
    color: #ffffff;
}

.crypto-status.launching-soon {
    background-color: #7c3aed;
    color: #ffffff;
}

.crypto-status.launching-later {
    background-color: #f59e0b;
    color: #ffffff;
}

.channel-icon {
    width: 16px;
    height: 16px;
    color: #858585;
    margin-right: 6px;
}

.tab-btn {
    padding: 8px 16px;
    background: #2d2d30;
    border: 1px solid #3e3e42;
    border-radius: 4px;
    color: #cccccc;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-btn.active {
    background-color: #094771;
    color: #ffffff;
    border-color: #007acc;
}

.tab-btn:hover {
    background-color: #37373d;
    color: #ffffff;
}

.tab-btn.active:hover {
    background-color: #0e639c;
    color: #ffffff;
}

.message-group {
    margin-bottom: 16px;
}

.message {
    display: flex;
    padding: 8px 16px;
    position: relative;
    transition: background-color 0.2s ease;
}

.message:hover {
    background-color: #2a2d2e;
}

.message-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 16px;
    cursor: pointer;
    transition: border-radius 0.2s ease;
    flex-shrink: 0;
}

.message-avatar:hover {
    border-radius: 12px;
}

.message-avatar img {
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

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

.message-header {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 4px;
}

.message-username {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    cursor: pointer;
}

.message-username:hover {
    text-decoration: underline;
}

.message-timestamp {
    font-size: 12px;
    color: #858585;
    font-weight: 400;
}

.message-text {
    font-size: 16px;
    line-height: 1.375;
    color: #cccccc;
    word-wrap: break-word;
    white-space: pre-wrap;
}

/* Message Input */
.message-input-container {
    padding: 24px;
    background-color: #1e1e1e;
    border-top: 1px solid #3e3e42;
}

.message-input-wrapper {
    display: flex;
    align-items: center;
    background-color: #2d2d30;
    border-radius: 8px;
    padding: 11px 16px;
    border: 1px solid #3e3e42;
    transition: border-color 0.2s ease;
}

.message-input-wrapper:focus-within {
    border-color: #007acc;
}

.attach-icon {
    color: #858585;
    cursor: pointer;
    transition: color 0.2s ease;
    margin-right: 8px;
}

.attach-icon:hover {
    color: #cccccc;
}

.message-input {
    flex: 1;
    min-width: 0;
}

.message-input input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-size: 16px;
    color: #cccccc;
    font-family: inherit;
}

.message-input input::placeholder {
    color: #858585;
}

.input-controls {
    display: flex;
    gap: 8px;
    margin-left: 8px;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #424242;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4e4e4e;
}

/* Messages container specific scrollbar */
.messages-container::-webkit-scrollbar-thumb {
    background: #424242;
}

.messages-container::-webkit-scrollbar-thumb:hover {
    background: #4e4e4e;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .channel-sidebar {
        width: 200px;
    }
}

@media (max-width: 768px) {
    .server-sidebar {
        width: 60px;
    }
    
    .channel-sidebar {
        width: 180px;
    }
    
    .message-input-container {
        padding: 16px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message {
    animation: fadeIn 0.2s ease-out;
}

/* Focus styles for accessibility */
.message-input input:focus {
    outline: none;
}

.server-icon:focus,
.channel-item:focus,
.message-username:focus {
    outline: 2px solid #007acc;
    outline-offset: 2px;
}

/* Selection styling */
::selection {
    background-color: #094771;
    color: #ffffff;
}

::-moz-selection {
    background-color: #094771;
    color: #ffffff;
}