/* ============================================
   PAGE-SPECIFIC STYLES
   Social Com's - Account, Feed, Messages, Mod
   ============================================ */

/* ============================================
   ACCOUNT PAGE
   ============================================ */

.account-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    padding: 2rem 0;
}

@media (max-width: 968px) {
    .account-layout {
        grid-template-columns: 1fr;
    }
}

/* Profile Sidebar */
.profile-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.profile-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    text-align: center;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    position: relative;
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.3);
}

.profile-avatar::after {
    content: '';
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    background: var(--accent-emerald);
    border-radius: 50%;
    border: 4px solid var(--neutral-900);
}

.profile-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.profile-email {
    color: var(--neutral-400);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.profile-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--primary-400);
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.profile-stat {
    text-align: center;
}

.profile-stat-value {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
}

.profile-stat-label {
    font-size: 0.75rem;
    color: var(--neutral-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Settings Sections */
.settings-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.settings-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.settings-header-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
}

.settings-header h2 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
}

.settings-body {
    padding: 1.5rem;
}

/* Theme Customization */
.theme-controls {
    display: grid;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.control-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.control-group label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.control-group label i {
    width: 20px;
    color: var(--primary-400);
}

.color-picker-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.color-picker-wrapper input[type="color"] {
    width: 48px;
    height: 36px;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    background: none;
    padding: 0;
}

.color-picker-wrapper input[type="color"]::-webkit-color-swatch-wrapper {
    padding: 0;
}

.color-picker-wrapper input[type="color"]::-webkit-color-swatch {
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
}

.color-value {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--neutral-400);
    min-width: 75px;
}

/* Theme Presets */
.preset-themes {
    margin-bottom: 1.5rem;
}

.preset-themes h4 {
    font-size: 0.9375rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--neutral-300);
}

.theme-presets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.75rem;
}

.preset-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    color: var(--neutral-300);
    font-size: 0.8125rem;
    transition: var(--transition-base);
}

.preset-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-2px);
}

.preset-colors {
    display: flex;
    gap: 0.25rem;
}

.preset-colors span {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

/* Preferences */
.preference-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.preference-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.preference-item:first-child {
    padding-top: 0;
}

.preference-info {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.preference-info>i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-400);
    flex-shrink: 0;
}

.preference-info h4 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.preference-info p {
    font-size: 0.875rem;
    color: var(--neutral-500);
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    width: 52px;
    height: 28px;
    cursor: pointer;
}

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

.toggle-switch .slider {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.toggle-switch .slider::before {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    left: 3px;
    top: 3px;
    background: white;
    border-radius: 50%;
    transition: var(--transition-base);
}

.toggle-switch input:checked+.slider {
    background: var(--gradient-primary);
}

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

/* File Upload */
.file-upload-area {
    border: 2px dashed rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    padding: 3rem;
    text-align: center;
    transition: var(--transition-base);
    cursor: pointer;
}

.file-upload-area:hover,
.file-upload-area.drag-over {
    border-color: var(--primary-500);
    background: rgba(99, 102, 241, 0.05);
}

.file-upload-area i {
    font-size: 3rem;
    color: var(--primary-400);
    margin-bottom: 1rem;
}

.file-upload-area h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.file-upload-area p {
    color: var(--neutral-500);
    font-size: 0.9375rem;
}

.file-list {
    margin-top: 1rem;
}

.file-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    margin-bottom: 0.5rem;
}

.file-item i {
    color: var(--primary-400);
}

.file-item span {
    flex: 1;
}

.file-size {
    color: var(--neutral-500);
    font-size: 0.875rem;
}

/* Reset Button */
.reset-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--radius-lg);
    color: var(--accent-red);
    font-weight: 500;
    transition: var(--transition-base);
}

.reset-btn:hover {
    background: rgba(239, 68, 68, 0.15);
}

/* ============================================
   FEED PAGE
   ============================================ */

.feed-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2rem;
    padding: 2rem 0;
}

@media (max-width: 1024px) {
    .feed-layout {
        grid-template-columns: 1fr;
    }

    .feed-sidebar {
        display: none;
    }
}

/* Create Post */
.create-post {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-2xl);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.create-post-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.create-post-header h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
}

.create-post textarea {
    width: 100%;
    min-height: 100px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    color: white;
    font-family: inherit;
    font-size: 1rem;
    resize: vertical;
    transition: var(--transition-fast);
}

.create-post textarea:focus {
    outline: none;
    border-color: var(--primary-500);
}

.create-post textarea::placeholder {
    color: var(--neutral-500);
}

.create-post-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.post-options {
    display: flex;
    gap: 0.5rem;
}

.option-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    color: var(--neutral-400);
    font-size: 0.9375rem;
    transition: var(--transition-fast);
}

.option-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: white;
}

/* Post Cards */
.post-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    margin-bottom: 1.5rem;
    transition: var(--transition-base);
}

.post-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

.post-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
}

.post-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.post-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
}

.post-user-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.125rem;
}

.post-time {
    font-size: 0.8125rem;
    color: var(--neutral-500);
}

.post-options-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-500);
    transition: var(--transition-fast);
}

.post-options-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.post-content {
    padding: 0 1.5rem 1.25rem;
}

.post-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--neutral-200);
    margin-bottom: 1rem;
}

.post-content p:last-child {
    margin-bottom: 0;
}

.post-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-top: 1rem;
}

.post-stats {
    display: flex;
    gap: 1.5rem;
    padding: 0.75rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.875rem;
    color: var(--neutral-500);
}

.post-stats span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.post-actions-bar {
    display: flex;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    color: var(--neutral-400);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.action-btn.liked {
    color: var(--accent-red);
}

.action-btn:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

/* Feed Sidebar */
.feed-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-2xl);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.sidebar-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.sidebar-card h3 i {
    color: var(--primary-400);
}

/* Trending */
.trending-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.trending-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.trending-item:first-child {
    padding-top: 0;
}

.trend-tag {
    font-weight: 500;
    color: var(--primary-400);
}

.trend-count {
    font-size: 0.8125rem;
    color: var(--neutral-500);
}

/* Suggestions */
.suggestion-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.suggestion-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.suggestion-item:first-child {
    padding-top: 0;
}

.suggestion-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

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

.suggestion-info h4 {
    font-size: 0.9375rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.suggestion-info span {
    font-size: 0.8125rem;
    color: var(--neutral-500);
}

.connect-btn {
    padding: 0.5rem 1rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    font-size: 0.8125rem;
    font-weight: 500;
    color: white;
    transition: var(--transition-fast);
}

.connect-btn:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

/* Search Bar */
.search-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    margin-bottom: 1.5rem;
}

.search-bar i {
    color: var(--neutral-500);
}

.search-bar input {
    flex: 1;
    background: none;
    border: none;
    color: white;
    font-size: 1rem;
}

.search-bar input:focus {
    outline: none;
}

.search-bar input::placeholder {
    color: var(--neutral-500);
}

/* ============================================
   MESSAGES PAGE
   ============================================ */

.messages-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    height: calc(100vh - 200px);
    min-height: 500px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-2xl);
    overflow: hidden;
}

@media (max-width: 768px) {
    .messages-layout {
        grid-template-columns: 1fr;
        height: auto;
        min-height: auto;
    }

    .conversations-sidebar {
        max-height: 400px;
    }

    .chat-area {
        min-height: 500px;
    }
}

/* Conversations Sidebar */
.conversations-sidebar {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sidebar-header h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-header h3 i {
    color: var(--primary-400);
}

.new-message-btn {
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition-fast);
}

.new-message-btn:hover {
    transform: scale(1.1);
}

.search-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
}

.search-box i {
    color: var(--neutral-500);
}

.search-box input {
    flex: 1;
    background: none;
    border: none;
    color: white;
    font-size: 0.9375rem;
}

.search-box input:focus {
    outline: none;
}

.search-box input::placeholder {
    color: var(--neutral-500);
}

.conversations-list {
    flex: 1;
    overflow-y: auto;
    padding: 0.5rem;
}

.conversation-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: var(--transition-fast);
}

.conversation-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.conversation-item.active {
    background: rgba(99, 102, 241, 0.15);
}

.conv-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    position: relative;
    flex-shrink: 0;
}

.conv-avatar.online::after {
    content: '';
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: var(--accent-emerald);
    border-radius: 50%;
    border: 2px solid var(--neutral-900);
}

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

.conv-info h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.125rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.conv-info p {
    font-size: 0.8125rem;
    color: var(--neutral-500);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.conv-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.375rem;
}

.conv-time {
    font-size: 0.75rem;
    color: var(--neutral-500);
}

.conv-unread {
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6875rem;
    font-weight: 600;
    color: white;
}

/* Chat Area */
.chat-area {
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.2);
}

.empty-state {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.empty-state i {
    font-size: 4rem;
    color: var(--neutral-700);
    margin-bottom: 1rem;
}

.empty-state h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: var(--neutral-500);
}

.chat-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
}

.chat-user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chat-avatar {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
}

.chat-user-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.125rem;
}

.chat-status {
    font-size: 0.8125rem;
    color: var(--accent-emerald);
}

.chat-actions {
    display: flex;
    gap: 0.5rem;
}

.chat-action-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-400);
    transition: var(--transition-fast);
}

.chat-action-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.chat-messages {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    display: flex;
    max-width: 70%;
}

.message.sent {
    margin-left: auto;
}

.message.received {
    margin-right: auto;
}

.message-content {
    padding: 0.875rem 1.25rem;
    border-radius: var(--radius-xl);
}

.message.sent .message-content {
    background: var(--gradient-primary);
    border-bottom-right-radius: 4px;
}

.message.received .message-content {
    background: rgba(255, 255, 255, 0.08);
    border-bottom-left-radius: 4px;
}

.message-content p {
    font-size: 0.9375rem;
    line-height: 1.5;
    margin-bottom: 0.25rem;
}

.message-time {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.6);
}

.message.received .message-time {
    color: var(--neutral-500);
}

.chat-input-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
}

.attach-btn,
.emoji-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-400);
    transition: var(--transition-fast);
}

.attach-btn:hover,
.emoji-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.message-input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    color: white;
    font-size: 0.9375rem;
}

.message-input:focus {
    outline: none;
    border-color: var(--primary-500);
}

.message-input::placeholder {
    color: var(--neutral-500);
}

.send-message-btn {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition-fast);
}

.send-message-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

/* ============================================
   MODERATORS PAGE
   ============================================ */

.intro-section {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.intro-section h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.intro-section p {
    color: var(--neutral-400);
    font-size: 1.125rem;
    line-height: 1.7;
}

.moderators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.mod-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: var(--transition-base);
}

.mod-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: var(--shadow-glow);
}

.mod-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.mod-avatar {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

.mod-card:nth-child(2) .mod-avatar {
    background: var(--gradient-accent);
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.3);
}

.mod-card:nth-child(3) .mod-avatar {
    background: var(--gradient-ocean);
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.3);
}

.mod-card:nth-child(4) .mod-avatar {
    background: var(--gradient-forest);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.mod-info h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.mod-role {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(99, 102, 241, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    color: var(--primary-400);
    margin-bottom: 1rem;
}

.mod-bio {
    color: var(--neutral-400);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.mod-stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.mod-stats .stat {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    color: var(--neutral-400);
}

.mod-stats .stat i {
    color: var(--primary-400);
}

/* Contact Section */
.contact-section {
    margin-bottom: 4rem;
}

.contact-card {
    background: var(--gradient-primary);
    border-radius: var(--radius-2xl);
    padding: 3rem;
    text-align: center;
}

.contact-card h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.contact-card p {
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.contact-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    color: white;
    font-weight: 500;
    transition: var(--transition-fast);
}

.contact-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* Mod Stats Section */
.mod-stats-section {
    text-align: center;
}

.mod-stats-section h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 2rem;
}

/* ============================================
   APP MOCKUP PAGE
   ============================================ */

.app-page-content {
    padding: 2rem 0 4rem;
}

.app-phones {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.phone-mockup-large {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .phone-mockup-large {
        transform: scale(1);
    }

    .app-phones {
        gap: 2rem;
    }
}

.app-screens-section {
    margin-top: 4rem;
}

.screens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.screen-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-2xl);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition-base);
}

.screen-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.3);
}

.screen-preview {
    background: var(--gradient-dark);
    border-radius: var(--radius-xl);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 3rem;
    color: var(--primary-400);
}

.screen-card h4 {
    font-family: var(--font-display);
    margin-bottom: 0.5rem;
}

.screen-card p {
    color: var(--neutral-500);
    font-size: 0.9375rem;
}