/* nuxr.css - Updated with Solana-inspired colors */

/* Base styling */
body {
    background-color: #0d1117;
    color: #e0e0e0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Container adjustments */
.container {
    max-width: 1200px;
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Main content area to push footer down */
main {
    flex: 1 0 auto;
}

/* Text styling */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.display-4 {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(45deg, #00ffbd, #9945ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(153, 69, 255, 0.3);
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    color: #a8a8a8;
    line-height: 1.8;
}

/* Link styling */
a {
    color: #9945ff;
    transition: all 0.2s ease;
    text-decoration: none;
}

a:hover {
    color: #00ffbd;
    text-decoration: none;
    filter: brightness(120%);
}

/* Button styling */
.btn {
    border-radius: 25px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary {
    background: linear-gradient(45deg, #9945ff, #14f195);
    border: none;
    box-shadow: 0 4px 12px rgba(153, 69, 255, 0.3);
}

.btn-primary:hover, .btn-primary:focus {
    background: linear-gradient(45deg, #a35bff, #2dffa0);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(153, 69, 255, 0.4);
}

.btn-special1 {
	background: linear-gradient(45deg, #06011b, #07020a);
    border: 1px solid #a9f9e !important;
	color: #faffe6;
}

.btn-outline-light {
    border: 2px solid #3b4252;
    color: #e0e0e0;
    background: transparent;
}

.btn-outline-light:hover, .btn-outline-light:focus {
    background-color: rgba(153, 69, 255, 0.1);
    color: #ffffff;
    transform: translateY(-2px);
    border-color: #9945ff;
}

.btn-lg {
    font-size: 1.1rem;
    padding: 0.8rem 1.8rem;
}

/* Card styling */
.card {
    background-color: #1a1d24;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(5px);
    margin-bottom: 1.5rem;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border-color: rgba(153, 69, 255, 0.3);
}

.card-header {
    background-color: rgba(26, 29, 36, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.25rem;
    backdrop-filter: blur(10px);
}

.card-body {
    padding: 1.75rem;
}

.bg-dark {
    background-color: #1a1d24 !important;
}

.border-secondary {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Form controls */
.form-control {
    background-color: #242830;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    color: #e0e0e0;
    padding: 0.75rem 1rem;
    transition: all 0.2s ease;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
}

.form-control:focus {
    background-color: #2a2f3a;
    border-color: #9945ff;
    box-shadow: 0 0 0 3px rgba(153, 69, 255, 0.25), inset 0 1px 2px rgba(0, 0, 0, 0.1);
    color: #ffffff;
}

.form-label {
    color: #a8a8a8;
    font-weight: 500;
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}

.form-check-input {
    background-color: #242830;
    border: 1px solid rgba(255, 255, 255, 0.5);
    width: 1.1em;
    height: 1.1em;
    margin-top: 0.25em;
}

.form-check-input:checked {
    background-color: #9945ff;
    border-color: #9945ff;
}

.form-check-label {
    font-size: 0.95rem;
    padding-left: 0.3rem;
    user-select: none;
}

/* Feature boxes */
.feature {
    padding: 2rem;
    border-radius: 16px;
    background-color: #1e212a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(153, 69, 255, 0.05), transparent);
    z-index: 0;
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(153, 69, 255, 0.3);
}

.feature i {
    color: #14f195;
    margin-bottom: 1.25rem;
    filter: drop-shadow(0 0 10px rgba(20, 241, 149, 0.5));
    position: relative;
    z-index: 1;
}

.feature h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.feature p {
    color: #a8a8a8;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
    line-height: 1.7;
}

/* Alert styling */
.alert {
    border-radius: 12px;
    border: none;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}

.alert-danger {
    background-color: rgba(220, 38, 38, 0.15);
    color: #ef4444;
    border-left: 4px solid #ef4444;
}

.alert-success {
    background-color: rgba(20, 241, 149, 0.15);
    color: #14f195;
    border-left: 4px solid #14f195;
}

/* Navigation */
.navbar {
    background-color: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.75rem 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar.scrolled {
    background-color: rgba(13, 17, 23, 0.98);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.75rem;
    background: linear-gradient(45deg, #9945ff, #14f195);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    padding: 0;
}

.navbar-brand:hover {
    filter: brightness(120%);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.7)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
    color: #9945ff;
    background-color: rgba(153, 69, 255, 0.1);
}

/* Footer styling */
footer {
    background-color: #191c23;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #6b7280;
    padding: 2rem 0;
    margin-top: auto;
    flex-shrink: 0;
}

footer a {
    color: #9ca3af;
    transition: color 0.2s ease;
    padding: 0.25rem;
}

footer a:hover {
    color: #d1d5db;
    text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2.2rem;
    }
    
    .feature {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .card-body {
        padding: 1.25rem;
    }
    
    .btn {
        padding: 0.5rem 1.25rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
}

/* Mobile-specific adjustments */
@media (max-width: 576px) {
    .display-4 {
        font-size: 1.8rem;
    }
    
    .card {
        margin-left: 0;
        margin-right: 0;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .btn-lg {
        font-size: 1rem;
        padding: 0.7rem 1.5rem;
    }
}

/* Custom animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animated-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.navbar-brand {
    animation: pulse 4s infinite ease-in-out;
}

/* Post/tweet styling */
.post-card {
    background-color: #1a1d24;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    transition: all 0.2s ease;
}

.post-card:hover {
    background-color: #242830;
    border-color: rgba(153, 69, 255, 0.2);
}

.post-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.post-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-right: 0.75rem;
    object-fit: cover;
    border: 2px solid rgba(153, 69, 255, 0.3);
}

.post-username {
    font-weight: 700;
    margin-bottom: 0;
    color: #ffffff;
}

.post-handle {
    color: #6b7280;
    font-size: 0.9rem;
}

.post-content {
    margin-bottom: 1rem;
    word-break: break-word;
    line-height: 1.5;
}

.post-actions {
    display: flex;
    justify-content: space-between;
    color: #6b7280;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 0.75rem;
    margin-top: 0.75rem;
}

.post-action {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: color 0.2s ease;
    padding: 0.5rem;
    border-radius: 50px;
}

.post-action:hover {
    color: #9945ff;
    background-color: rgba(153, 69, 255, 0.1);
}

.post-action i {
    margin-right: 0.3rem;
    font-size: 1.1rem;
}

/* Form validation styling */
.was-validated .form-control:valid, .form-control.is-valid {
    border-color: #14f195;
    background-image: none;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
    border-color: #ef4444;
    background-image: none;
}

.invalid-feedback, .valid-feedback {
    font-size: 0.875em;
    margin-top: 0.25rem;
}

.invalid-feedback {
    color: #ef4444;
}

.valid-feedback {
    color: #14f195;
}

/* Password strength meter */
.password-strength-meter {
    height: 5px;
    background-color: #242830;
    border-radius: 3px;
    margin-top: 5px;
    overflow: hidden;
}

.password-strength-meter-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.password-strength-text {
    font-size: 0.8em;
    margin-top: 5px;
    color: #6b7280;
}

/* Password visibility toggle */
.password-toggle-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6b7280;
}

.password-field-wrapper {
    position: relative;
}

/* Badge improvements */
.badge {
    padding: 0.4em 0.8em;
    font-weight: 600;
    border-radius: 6px;
    letter-spacing: 0.01em;
}

.badge-primary {
    background-color: rgba(153, 69, 255, 0.2);
    color: #9945ff;
}

.badge-notification {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(25%, -25%);
    padding: 0.25em 0.6em;
    font-size: 0.75em;
    background-color: #ef4444;
    color: white;
    border-radius: 50%;
}

/* Custom dropdown styling */
.dropdown-menu {
    background-color: #242830;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    padding: 0.5rem;
    min-width: 10rem;
}

.dropdown-item {
    color: #e0e0e0;
    border-radius: 6px;
    padding: 0.6rem 1rem;
    margin-bottom: 0.2rem;
}

.dropdown-item:hover, .dropdown-item:focus {
    background-color: rgba(153, 69, 255, 0.1);
    color: #ffffff;
}

.dropdown-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin: 0.5rem 0;
}

/* Logo special styling */
.logo-container {
    display: inline-block;
    position: relative;
}

.logo-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(153, 69, 255, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
    border-radius: 50%;
    filter: blur(10px);
}

.nuxr-logo-text {
    background: linear-gradient(45deg, #9945ff, #14f195);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
	 letter-spacing: -0.05em;
}

/* Loading effects */
.loading-shimmer {
    background: linear-gradient(90deg, #242830 0%, #2a2f3a 50%, #242830 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 10px;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Focus outlines for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, 
.form-control:focus-visible, .dropdown-item:focus-visible {
    outline: 2px solid #9945ff;
    outline-offset: 2px;
}

/* Custom scrollbar refinements */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #191c23;
}

::-webkit-scrollbar-thumb {
    background: #323845;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3b4252;
}

/* Input placeholders styling */
::placeholder {
    color: #6b7280;
    opacity: 0.6;
}

/* Login/Signup card improvements */
.auth-card {
    max-width: 450px;
    margin: 0 auto;
    border-radius: 20px;
}

.auth-card .card-header {
    text-align: center;
    padding: 1.5rem;
}

.auth-card .card-title {
    margin-bottom: 0;
}

/* Show password toggle button */
.password-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
}

.password-field-container {
    position: relative;
}

/* Hero section modifications */
.hero-section {
    padding: 4rem 0;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(153, 69, 255, 0.2), transparent 70%),
                radial-gradient(circle at bottom left, rgba(20, 241, 149, 0.1), transparent 70%);
    z-index: -1;
}

/* Split layout for index page */
.split-layout {
    display: flex;
    flex-direction: column;
}

@media (min-width: 992px) {
    .split-layout {
        flex-direction: row;
    }
    
    .split-layout-left,
    .split-layout-right {
        flex: 1;
    }
    
    .split-layout-left {
        padding-right: 2rem;
    }
    
    .split-layout-right {
        padding-left: 2rem;
    }
}

/* Solana-inspired gradients and elements */
.solana-gradient-text {
    background: linear-gradient(45deg, #9945ff, #14f195);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solana-card {
    background: linear-gradient(145deg, rgba(153, 69, 255, 0.1), rgba(20, 241, 149, 0.05));
    border: 1px solid rgba(153, 69, 255, 0.2);
    backdrop-filter: blur(5px);
}

.solana-glow {
    position: relative;
}

.solana-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(153, 69, 255, 0.4), transparent 70%);
    filter: blur(40px);
    z-index: -1;
    opacity: 0.6;
}

/* Add to explore.php style section */
.post-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    position: relative;
    overflow: hidden;
}

.post-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #9945FF, #14F195);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(153, 69, 255, 0.3);
}

.post-card:hover::after {
    transform: translateY(0);
}

.post-action {
    padding: 8px 12px;
    border-radius: 20px;
    transition: all 0.2s ease;
}

.post-action:hover {
    background-color: rgba(153, 69, 255, 0.1);
    color: #9945FF;
}

/* Add to nuxr.css */
@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .navbar .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .navbar-toggler {
        border-color: rgba(255, 255, 255, 0.1);
        padding: 4px 8px;
    }
    
    .dropdown-menu {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        animation: fadeInDown 0.3s ease;
    }
    
    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}


.youtube-embed-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin: 15px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.youtube-embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Styles for the inline comment form */
.inline-comment-form {
    margin-top: 15px;
    animation: fadeIn 0.3s ease-in-out;
}

.inline-comment-form .card {
    border: 1px solid rgba(153, 69, 255, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.inline-comment-form .card-header {
    background-color: rgba(153, 69, 255, 0.1);
    padding: 10px 15px;
}

.inline-comment-form textarea {
    background-color: rgba(30, 33, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
    resize: vertical;
}

.inline-comment-form textarea:focus {
    background-color: rgba(30, 33, 42, 0.9);
    border-color: rgba(153, 69, 255, 0.5);
    box-shadow: 0 0 0 0.25rem rgba(153, 69, 255, 0.25);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Make post cards look clickable */
.post-card, .post-content {
	cursor: pointer;
}

.post-card:hover, .post-content:hover {
    background-color: rgba(153, 69, 255, 0.05);
}

.profile-stats {
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.profile-stats h5 {
    font-size: 1.2rem;
    margin-bottom: 2px;
    color: #fff;
}

.profile-stats small {
    font-size: 0.8rem;
}

#follow-btn {
    transition: all 0.3s ease;
}

#follow-btn:hover {
    transform: translateY(-2px);
}

/* Fix notification badge positioning for all screen sizes */
/* Add this to your nuxr.css file */

/* For desktop view */
.nav-link .notification-badge {
  margin-left: 5px;
  vertical-align: middle;
}

/* For mobile view */
.navbar .btn-sm .position-absolute.badge {
  position: absolute !important;
  top: -5px !important;
  right: -5px !important;
  transform: none !important;
  font-size: 0.6rem;
  z-index: 5;
}

/* Override Bootstrap's positioning classes for our specific case */
.navbar .position-absolute.top-0.start-100.translate-middle.badge {
  top: -5px !important;
  right: -5px !important;
  left: auto !important;
  transform: none !important;
}

/* Ensure the container has proper positioning */
.navbar .btn-sm.position-relative {
  overflow: visible;
}

/* Add to nuxr.css */

.account-card {
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.account-card.active {
    border-color: #9945FF;
}

.account-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.account-switcher {
    position: relative;
}

.account-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #9945FF;
    color: white;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.account-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.account-list-item {
    padding: 10px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.account-list-item:hover {
    background-color: rgba(153, 69, 255, 0.1);
}

.hashtag {
    color: #9945FF;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.hashtag:hover {
    color: #8330ff;
    text-decoration: underline;
}

.replies-container {
    margin-left: 25px;
    padding-left: 15px;
    border-left: 2px solid rgba(153, 69, 255, 0.2);
    margin-top: 12px;
}

.comment-reply {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comment-reply:last-child {
    border-bottom: none;
}

@media (max-width: 576px) {
    .replies-container {
        margin-left: 15px;
        padding-left: 10px;
    }
}

.nested-replies-container {
    margin-left: 30px;
    padding-left: 15px;
    border-left: 2px solid rgba(153, 69, 255, 0.15);
    margin-top: 8px;
    margin-bottom: 12px;
}

.nested-reply {
    padding: 8px 0;
}

@media (max-width: 576px) {
    .nested-replies-container {
        margin-left: 20px;
        padding-left: 10px;
    }
}

/* Floating Post Button */
.floating-post-btn-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.floating-post-btn {
    border-radius: 50px;
    padding: 12px 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.floating-post-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(153, 69, 255, 0.5);
}

/* Image upload preview container */
.image-preview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.image-preview-item {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.image-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-preview-delete {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
}

.image-preview-delete:hover {
    background: rgba(220, 53, 69, 0.8);
}

/* Post modal for mobile */
@media (max-width: 768px) {
    .modal-fullscreen-md-down {
        padding: 0 !important;
    }
    
    .modal-fullscreen-md-down .modal-dialog {
        max-width: none;
        margin: 0;
        height: 100%;
    }
    
    .modal-fullscreen-md-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }
    
    .modal-fullscreen-md-down .modal-body {
        overflow-y: auto;
    }
}

/* Post images styling */
.post-images {
    margin-top: 15px;
}

.post-image-single {
    display: block;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s ease;
  //  border: 1px solid rgba(255,255,255,0.1);
}

.post-image-single:hover {
    transform: scale(1.02);
}

.post-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    margin-bottom: 10px;
}

.post-image-item {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1/1;
    transition: transform 0.2s ease;
  
}

.post-image-item:hover {
    transform: scale(1.05);
}

.post-image-item img,
.post-image-single img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* For 2 images */
.post-images-grid:has(.post-image-item:nth-child(2):last-child) {
    grid-template-columns: repeat(2, 1fr);
}

/* For 3 images */
.post-images-grid:has(.post-image-item:nth-child(3):last-child) {
    grid-template-columns: repeat(3, 1fr);
}

/* For 4 images */
.post-images-grid:has(.post-image-item:nth-child(4):last-child) {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
}

.bg-community-badge{
	background-color: #4d4051;
}

a.cashtag{
	color: #98fab3;
}
a.hashtag{
	color: #dffa98;
}
a.linktag{
	color: #faf298;
}

/* Retweet styling */
.retweet-header {
    display: flex;
    align-items: center;
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.retweet-header i {
    margin-right: 6px;
}

.retweet-container {
    background-color: rgba(30, 33, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.retweet-author {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.retweet-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 8px;
    object-fit: cover;
}

.retweet-avatar-placeholder {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #2a2f3a;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    font-size: 12px;
}

.retweet-username {
    font-weight: 600;
    font-size: 0.9rem;
}

.retweet-content {
    font-size: 0.95rem;
    color: #e0e0e0;
}

.post-retweet-btn.retweeted {
    color: #00c851;
}

/* Retweet modal */
.retweet-modal-options {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.retweet-option {
    flex: 1;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.retweet-option:hover {
    background-color: rgba(153, 69, 255, 0.1);
    border-color: rgba(153, 69, 255, 0.3);
}

.retweet-option.active {
    background-color: rgba(153, 69, 255, 0.15);
    border-color: rgba(153, 69, 255, 0.5);
}

.retweet-option i {
    display: block;
    font-size: 24px;
    margin-bottom: 10px;
}

.retweet-preview {
    margin-top: 15px;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(26, 29, 36, 0.5);
}

/* Add to nuxr.css */
.retweet-container {
    transition: all 0.2s ease;
    position: relative;
    cursor: pointer;
}

.retweet-container:hover {
    background-color: rgba(40, 44, 52, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Add a subtle indicator that this is clickable */
.retweet-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    pointer-events: none;
    transition: all 0.2s ease;
}

.retweet-container:hover::after {
    box-shadow: inset 0 0 0 1px rgba(153, 69, 255, 0.3);
}

