/**
 * Ideas Page Styles - Self-Contained
 * JKUAT Innovation and Entrepreneurship Club
 */

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

html {
    scroll-behavior: smooth;
}

/* ===== IDEAS PAGE SCOPED STYLES ===== */
.ideas-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #f9fafb;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    padding-top: 110px !important;
    background: #0f172a url('/pages/shared/assets/images/backgrounds/tech-meeting-flatlay.jpg') center/cover fixed !important;
}

@media (max-width: 768px) {
    .ideas-page {
        padding-top: 65px !important;
    }
}

/* Add dark overlay to background */
.ideas-page::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85);
    z-index: -1;
    opacity: 1;
    pointer-events: none;
}

/* Enhanced background with subtle overlay */
.ideas-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    z-index: -1;
    opacity: 0.3;
}

/* Background pattern class */
.ideas-page.bg-pattern::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 25% 25%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

/* body::before handled by inline style in HTML */

/* Container */
.container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
    text-align: center !important;
}

/* ===== HERO SECTION ===== */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff, #e5e7eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text.accent {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-heading {
    font-size: clamp(3rem, 8vw, 5rem) !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    margin-bottom: 2rem !important;
    text-align: center !important;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3) !important;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3.5vw, 1.75rem) !important;
    line-height: 1.5 !important;
    color: rgba(255, 255, 255, 0.95) !important;
    max-width: 55rem !important;
    margin: 0 auto 3rem auto !important;
    font-weight: 500 !important;
    text-align: center !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

/* ===== STATS SECTION ===== */
.stats-container {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 2rem !important;
    max-width: 70rem !important;
    margin: 0 auto !important;
    background: transparent !important;
    backdrop-filter: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
}

.stats-container>div {
    text-align: center !important;
    min-width: 140px !important;
    flex: 0 0 auto !important;
    padding: 1rem !important;
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(20px) !important;
    border-radius: 15px !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
}

.stats-container>div:hover {
    transform: translateY(-2px) !important;
    background: rgba(255, 255, 255, 0.25) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2) !important;
}

.stat-number {
    font-size: 2rem !important;
    font-weight: 800 !important;
    margin-bottom: 0.5rem !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.stat-label {
    font-size: 0.875rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}

/* Buttons */
.btn,
.btn-primary {
    background: linear-gradient(135deg, #10b981, #059669);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.875rem;
}

.btn:hover,
.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    color: white;
    text-decoration: none;
}

/* Glass Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Ideas Hub Specific Styles */

/* ===== HERO SECTION ===== */
.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 40rem;
    margin: 0 auto;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-number.active {
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-number.collaborations {
    background: linear-gradient(135deg, #f472b6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* ===== FILTERS SECTION ===== */
.filters-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.search-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-input:focus {
    outline: none;
    border-color: rgba(16, 185, 129, 0.5);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.sort-select {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    min-width: 150px;
    cursor: pointer;
}

.sort-select option {
    background: rgba(0, 0, 0, 0.9);
    color: white;
}

/* ===== CATEGORY FILTERS ===== */
.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.filter-chip {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.filter-chip:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.filter-chip.active {
    background: rgba(16, 185, 129, 0.3);
    border-color: rgba(16, 185, 129, 0.5);
    color: #10b981;
}

.filter-chip i {
    font-size: 0.875rem;
}

/* ===== IDEAS GRID ===== */
.ideas-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem !important;
    margin-bottom: 0 !important;
}

/* ===== IDEA CARDS ===== */
.idea-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.idea-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--card-gradient, linear-gradient(135deg, #8b5cf6, #7c3aed));
    border-radius: 16px 16px 0 0;
}

.idea-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.idea-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.idea-category {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.idea-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
}

.idea-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.idea-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.idea-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    justify-content: space-between;
}

.idea-stat {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
}

.idea-stat i {
    margin-right: 0.5rem;
    width: 16px;
}

.idea-stat.likes i {
    color: #f472b6;
}

.idea-stat.views i {
    color: #10b981;
}

.idea-stat.comments i {
    color: #3b82f6;
}

.idea-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: nowrap;
    justify-content: space-between;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    white-space: nowrap;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
}

.btn-primary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
}

/* Liked button state */
.btn.liked {
    background: linear-gradient(135deg, #ef4444, #dc2626) !important;
    border-color: rgba(239, 68, 68, 0.3) !important;
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3) !important;
}

.btn.liked:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
    box-shadow: 0 15px 35px rgba(239, 68, 68, 0.4) !important;
}

.btn-secondary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
}

.btn-glass,
.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-glass:hover,
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

/* ===== FLOATING ACTION BUTTON ===== */
.fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fab:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.6);
}

/* ===== MODALS ===== */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 999;
    display: none;
    /* Hidden by default */
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow-y: auto;
}

.modal-content {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    width: 100%;
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.modal-title {
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: white;
}

/* ===== FORM ELEMENTS ===== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: rgba(16, 185, 129, 0.5);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

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

.form-select option {
    background: rgba(0, 0, 0, 0.9);
    color: white;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    accent-color: #10b981;
}

/* ===== LOADING STATES ===== */
.loading-container {
    text-align: center;
    padding: 4rem 0;
    position: relative;
    z-index: 10;
}

.loading-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 3rem;
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #10b981;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-text {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
}

.loading-subtext {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* ===== NO CONTENT STATES ===== */
.no-content {
    text-align: center;
    padding: 4rem 0;
    grid-column: 1 / -1;
    /* Span all columns in grid */
}

.no-content-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 3rem;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.no-content-icon {
    width: 80px;
    height: 80px;
    background: rgba(245, 158, 11, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

.no-content-icon i {
    font-size: 2rem;
    color: #f59e0b;
}

.no-content-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.no-content-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* No ideas message styling */
.no-votes-message {
    text-align: center;
    padding: 4rem 2rem;
    grid-column: 1 / -1;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    margin: 2rem 0;
}

.no-votes-icon {
    font-size: 4rem;
    color: rgba(139, 92, 246, 0.3);
    margin-bottom: 1.5rem;
}

.no-votes-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    margin: 0;
}



/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    /* Prevent horizontal overflow */
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    
    .ideas-page {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        /* padding-top handled by body in HTML inline style */
    }
    
    .container {
        max-width: 100% !important;
        overflow-x: hidden !important;
        padding: 0 1rem !important;
    }
    
    .ideas-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
        max-width: 100%;
        overflow-x: hidden;
    }

    .form-row {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .filters-container {
        padding: 1.5rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .category-filters {
        gap: 0.5rem;
    }

    .filter-chip {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .idea-card {
        padding: 1.5rem;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .idea-title {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .idea-description {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .fab {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .modal-backdrop {
        padding: 1rem;
    }

    .modal-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    /* Prevent horizontal overflow on small screens */
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    
    .ideas-page {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
        /* padding-top handled by body in HTML inline style */
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
    
    .container {
        max-width: 100% !important;
        padding: 0 0.5rem !important;
        overflow-x: hidden !important;
    }
    
    .ideas-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        max-width: 100%;
        overflow-x: hidden;
    }

    .form-row {
        grid-template-columns: 1fr !important;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .idea-stats {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .idea-stat {
        justify-content: center;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.4s ease-out;
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 0.75rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

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

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

/* ===== HERO SECTION ENHANCEMENTS ===== */
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 40rem;
    margin: 0 auto;
}

/* ===== IDEAS SECTION ===== */
.ideas-section {
    padding: 2rem 0 4rem 0;
    position: relative;
    z-index: 10;
}

/* ===== GLASS CARDS ===== */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
}

.filters-card {
    margin-bottom: 3rem;
}

.filters-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: end;
}

.search-container,
.sort-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-label {
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
}

.category-filters-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* ===== LOAD MORE BUTTON ===== */
.load-more-container {
    text-align: center;
    margin-top: 3rem;
}

.load-more-btn {
    min-width: 200px;
}

/* ===== NO IDEAS STATE ===== */
.no-ideas-container {
    text-align: center;
    padding: 4rem 0;
}

.no-ideas-card {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.no-ideas-icon {
    width: 80px;
    height: 80px;
    background: rgba(245, 158, 11, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

.no-ideas-icon i {
    font-size: 2rem;
    color: #f59e0b;
}

.no-ideas-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.no-ideas-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* ===== SUBMIT IDEA FAB ===== */
.submit-idea-fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.submit-idea-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.6);
}

/* ===== FOOTER ===== */
/* Footer styles removed - using minimal-footer.js component */

/* ===== MODAL ENHANCEMENTS ===== */
.modal-large {
    max-width: 800px;
}

.glass-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.glass-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.glass-input:focus {
    outline: none;
    border-color: rgba(16, 185, 129, 0.5);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.glass-input option {
    background: rgba(0, 0, 0, 0.9);
    color: white;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    cursor: pointer;
    font-size: 0.875rem;
}

.checkbox-label input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    accent-color: #10b981;
    cursor: pointer;
}

/* ===== LOADING ENHANCEMENTS ===== */
.loading-title {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
}

.loading-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}



/* ===== DARK MODE ENHANCEMENTS ===== */
.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-effect-strong {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff, #e5e7eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text.accent {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== RESPONSIVE ENHANCEMENTS ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .filters-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .glass-card {
        padding: 1.5rem;
    }

    .modal-content {
        margin: 1rem;
        padding: 1.5rem;
    }
}

/* ===== IDEA DETAIL MODAL STYLES ===== */
.idea-detail-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.idea-detail-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.idea-author {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.idea-detail-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.idea-detail-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.idea-detail-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.idea-detail-stats .stat-item i {
    color: #10b981;
}

.idea-detail-content {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.detail-section {
    margin-bottom: 2rem;
}

.detail-section h3 {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.detail-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

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

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-concept {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.badge-prototype {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.badge-testing {
    background: rgba(168, 85, 247, 0.2);
    color: #a855f7;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.badge-implementation {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-low {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.badge-medium {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.badge-high {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.idea-detail-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

/* ===== SCROLLBAR STYLING ===== */
.idea-detail-content::-webkit-scrollbar {
    width: 6px;
}

.idea-detail-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.idea-detail-content::-webkit-scrollbar-thumb {
    background: rgba(16, 185, 129, 0.5);
    border-radius: 3px;
}

.idea-detail-content::-webkit-scrollbar-thumb:hover {
    background: rgba(16, 185, 129, 0.7);
}

/* ===== RESPONSIVE MODAL ADJUSTMENTS ===== */
@media (max-width: 768px) {
    .idea-detail-title {
        font-size: 1.5rem;
    }

    .idea-detail-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .idea-detail-stats {
        gap: 1rem;
    }

    .detail-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .idea-detail-actions {
        flex-direction: column;
    }

    .idea-detail-content {
        max-height: 50vh;
    }
}

/* ===== MORE CATEGORIES BUTTON ===== */
.more-categories-btn {
    background: rgba(107, 114, 128, 0.2) !important;
    border-color: rgba(107, 114, 128, 0.3) !important;
    color: #9ca3af !important;
}

.more-categories-btn:hover {
    background: rgba(107, 114, 128, 0.3) !important;
    color: #d1d5db !important;
}

.more-categories-btn.expanded {
    background: rgba(16, 185, 129, 0.2) !important;
    border-color: rgba(16, 185, 129, 0.3) !important;
    color: #10b981 !important;
}

.more-categories-btn.expanded:hover {
    background: rgba(16, 185, 129, 0.3) !important;
}

/* ===== CATEGORY FILTERS ANIMATION ===== */
.filter-chip.additional {
    animation: slideInCategory 0.3s ease-out;
}

@keyframes slideInCategory {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ===== RESPONSIVE CATEGORY FILTERS ===== */
@media (max-width: 768px) {
    .category-filters {
        gap: 0.5rem;
    }

    .filter-chip {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .more-categories-btn {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .category-filters {
        justify-content: center;
    }

    .filter-chip {
        flex: 0 0 auto;
        min-width: fit-content;
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    white-space: nowrap;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.4);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

/* ===== GLASS CARDS ===== */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* ===== MODAL STYLES ===== */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow-y: auto;
}

.modal-content {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    width: 100%;
    max-width: 600px;
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
}

.modal-large {
    max-width: 800px;
}

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

.modal-header h2 {
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
    border-radius: 8px;
}

.modal-close:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

/* ===== FORM STYLES ===== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.glass-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.glass-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.glass-input:focus {
    outline: none;
    border-color: rgba(139, 92, 246, 0.5);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.glass-input option {
    background: rgba(0, 0, 0, 0.9);
    color: white;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== FOOTER STYLES ===== */
/* Footer styles removed - using minimal-footer.js component */

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .stats-container {
        gap: 1.5rem !important;
    }

    .stats-container>div {
        min-width: 100px !important;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }

    .modal-backdrop {
        padding: 1rem;
    }

    .modal-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .modal-backdrop {
        padding: 0.5rem;
    }
}

/* ===== LOADING STATES ===== */
.loading-container {
    text-align: center;
    padding: 4rem 0;
    position: relative;
    z-index: 10;
    grid-column: 1 / -1;
    /* Span all columns in grid */
}

.loading-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 3rem;
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #8b5cf6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-title {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
}

.loading-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* ===== FILTER CHIPS ===== */
.filter-chip {
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-chip:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-1px);
}

.filter-chip.active {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.3);
    color: #8b5cf6;
}

/* ===== IDEA CARDS ===== */
.idea-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.idea-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--card-gradient, linear-gradient(135deg, #8b5cf6, #7c3aed));
    border-radius: 16px 16px 0 0;
}

.idea-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.idea-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.idea-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.idea-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.idea-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.idea-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    justify-content: space-between;
}

.idea-stat {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
}

.idea-stat i {
    margin-right: 0.5rem;
    width: 16px;
}

.idea-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.idea-tag {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid;
    transition: all 0.3s ease;
}

.idea-tag:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.idea-category {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    border: 1px solid;
    transition: all 0.3s ease;
}

.idea-category:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.idea-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.btn-sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
    flex: 1;
    min-width: 0;
}

/* ===== FORCE GRID LAYOUT ===== */
#ideasGrid,
#trendingGrid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem !important;
    margin-bottom: 3rem !important;
}

/* ===== ENHANCED FORM STYLING ===== */
.glass-input:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.glass-input:focus {
    outline: none !important;
    border-color: rgba(139, 92, 246, 0.5) !important;
    background: rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1) !important;
}

.btn-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.4) !important;
}

/* ===== RESPONSIVE GRID OVERRIDES ===== */
@media (max-width: 1024px) {

    #ideasGrid,
    #trendingGrid,
    #categoriesGrid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 768px) {

    #ideasGrid,
    #trendingGrid,
    #categoriesGrid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
}

@media (max-width: 480px) {

    #ideasGrid,
    #trendingGrid,
    #categoriesGrid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
}

/* ===== TAB AND FILTER BUTTON STYLING ===== */
.tab-buttons-section {
    padding: 0 0 1rem 0 !important;
    position: relative !important;
    z-index: 10 !important;
}

.tab-buttons-container {
    display: flex !important;
    justify-content: center !important;
    gap: 1rem !important;
    flex-wrap: wrap !important;
    margin-bottom: 1rem !important;
    background: transparent !important;
    backdrop-filter: none !important;
    border: none !important;
    padding: 0 !important;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 50px !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    white-space: nowrap !important;
    backdrop-filter: blur(10px) !important;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-1px) !important;
    color: white !important;
}

.tab-btn.active {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed) !important;
    color: white !important;
    border-color: rgba(139, 92, 246, 0.3) !important;
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3) !important;
}

.filter-buttons-container {
    display: flex !important;
    justify-content: center !important;
    gap: 0.75rem !important;
    flex-wrap: wrap !important;
    margin-bottom: 2rem !important;
    padding: 0 !important;
    background: transparent !important;
    backdrop-filter: none !important;
    border: none !important;
    border-radius: 0 !important;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 0.5rem 1rem !important;
    border-radius: 25px !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    white-space: nowrap !important;
    backdrop-filter: blur(10px) !important;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-1px) !important;
    color: white !important;
}

.filter-btn.active {
    background: rgba(139, 92, 246, 0.2) !important;
    border-color: rgba(139, 92, 246, 0.3) !important;
    color: #8b5cf6 !important;
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.2) !important;
}

.tab-content {
    min-height: 400px !important;
}

.tab-content-container {
    position: relative !important;
    z-index: 10 !important;
}

/* ===== TAB CONTENT STYLING ===== */
.tab-content {
    animation: fadeIn 0.3s ease-in-out !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== ENSURE PROPER SPACING ===== */
.tab-buttons-section .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
}

/* ===== FILTER BUTTON IMPROVEMENTS ===== */
.filter-buttons-container {
    max-width: 800px !important;
    margin: 0 auto 2rem auto !important;
}

/* ===== RESPONSIVE TAB AND FILTER BUTTONS ===== */
@media (max-width: 768px) {
    .tab-buttons-container {
        gap: 0.5rem !important;
    }

    .tab-btn {
        padding: 0.5rem 1rem !important;
        font-size: 0.75rem !important;
    }

    .filter-buttons-container {
        padding: 1rem !important;
        gap: 0.5rem !important;
    }

    .filter-btn {
        padding: 0.4rem 0.8rem !important;
        font-size: 0.75rem !important;
    }
}

@media (max-width: 480px) {
    .tab-buttons-container {
        flex-direction: column !important;
        align-items: center !important;
    }

    .tab-btn {
        width: 100% !important;
        max-width: 200px !important;
        justify-content: center !important;
    }
}

/* ===== ENHANCED TIKTOK COMMENTS MODAL STYLES ===== */
/* TikTok-style modal with enhanced visual design */

/* TikTok Modal Animation */
@keyframes tikTokSlideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes tikTokSlideDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }

    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

/* Enhanced TikTok Modal Container */
#tikTokCommentsModal {
    animation: tikTokSlideUp 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

#tikTokCommentsModal.closing {
    animation: tikTokSlideDown 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19) !important;
}

/* Enhanced Comment Styling */
#tikTokCommentsModal .comment-item {
    transition: background-color 0.2s ease !important;
}

#tikTokCommentsModal .comment-item:hover {
    background: rgba(255, 255, 255, 0.03) !important;
}

/* Enhanced Like Button Animation */
#tikTokCommentsModal .tiktok-like-btn .heart-icon {
    transition: transform 0.2s ease !important;
}

#tikTokCommentsModal .tiktok-like-btn:hover .heart-icon {
    transform: scale(1.2) !important;
}

#tikTokCommentsModal .tiktok-like-btn.liked .heart-icon {
    animation: heartPulse 0.6s ease !important;
}

@keyframes heartPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

/* Enhanced Reply Button */
#tikTokCommentsModal .tiktok-reply-btn:hover {
    color: white !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 4px 8px !important;
}

/* Enhanced Input Focus */
#tikTokCommentsModal .comment-input-form:focus-within {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 0, 80, 0.3) !important;
    box-shadow: 0 0 0 2px rgba(255, 0, 80, 0.1) !important;
}

/* Enhanced Post Button */
#tikTokCommentsModal .post-btn:hover {
    color: #ff3366 !important;
    transform: scale(1.05) !important;
}

/* Enhanced Scrollbar */
#tikTokCommentsModal #tikTokCommentsList::-webkit-scrollbar {
    width: 2px !important;
}

#tikTokCommentsModal #tikTokCommentsList::-webkit-scrollbar-thumb {
    background: rgba(255, 0, 80, 0.3) !important;
    border-radius: 1px !important;
}

#tikTokCommentsModal #tikTokCommentsList::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 0, 80, 0.5) !important;
}

/* Enhanced Typography */
#tikTokCommentsModal {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
}

/* Enhanced Creator Badge */
#tikTokCommentsModal .creator-badge {
    background: linear-gradient(135deg, #ff0050, #ff3366) !important;
    box-shadow: 0 2px 8px rgba(255, 0, 80, 0.3) !important;
    animation: creatorGlow 2s ease-in-out infinite alternate !important;
}

@keyframes creatorGlow {
    from {
        box-shadow: 0 2px 8px rgba(255, 0, 80, 0.3);
    }

    to {
        box-shadow: 0 2px 12px rgba(255, 0, 80, 0.5);
    }
}

/* Enhanced Handle Bar */
#tikTokCommentsModal .modal-handle {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.4)) !important;
    cursor: pointer !important;
    transition: background 0.2s ease !important;
}

#tikTokCommentsModal .modal-handle:hover {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.6)) !important;
}

/* Enhanced Gradient Background */
#tikTokCommentsModal .comments-modal-container {
    background: linear-gradient(180deg, #1a1a1a 0%, #000000 100%) !important;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.05) !important;
}

/* Enhanced No Comments State */
#tikTokCommentsModal .no-comments-state {
    background: radial-gradient(circle, rgba(255, 0, 80, 0.05) 0%, transparent 70%) !important;
}

/* Responsive Enhancements */
@media (max-width: 480px) {
    #tikTokCommentsModal .comments-modal-container {
        max-width: 100% !important;
        border-radius: 20px 20px 0 0 !important;
    }
}

@media (min-width: 481px) {
    #tikTokCommentsModal .comments-modal-container {
        max-width: 420px !important;
        margin: 0 auto !important;
        border-radius: 16px 16px 0 0 !important;
    }
}

/* TikTok-style Comments System */
.comments-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 99999;
    display: none;
    align-items: flex-end;
    justify-content: center;
}

.comments-modal-container {
    background: linear-gradient(180deg, #1a1a1a 0%, #000000 100%);
    width: 100%;
    max-width: 420px;
    max-height: 85vh;
    border-radius: 20px 20px 0 0;
    display: flex;
    flex-direction: column;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.modal-handle-bar {
    width: 32px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    margin: 10px auto;
    flex-shrink: 0;
}

.comments-header {
    text-align: center;
    padding: 10px 20px 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.comments-header h3 {
    color: white;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.comments-count {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: 500;
}

.comments-scroll-area {
    flex: 1;
    overflow-y: auto;
    padding: 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 0, 80, 0.3) transparent;
}

.comments-scroll-area::-webkit-scrollbar {
    width: 3px;
}

.comments-scroll-area::-webkit-scrollbar-thumb {
    background: rgba(255, 0, 80, 0.3);
    border-radius: 3px;
}

.comment-item {
    display: flex;
    padding: 12px 16px;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: background 0.2s;
}

.comment-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.comment-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff0050, #ff3366);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
}

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

.comment-user-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.comment-username {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 700;
}

.creator-badge {
    background: #ff0050;
    color: white;
    font-size: 9px;
    font-weight: 700;
    padding: 1px 4px;
    border-radius: 2px;
    text-transform: uppercase;
}

.comment-text {
    color: white;
    font-size: 14px;
    line-height: 1.4;
    word-wrap: break-word;
    margin-bottom: 8px;
}

.comment-footer {
    display: flex;
    align-items: center;
    gap: 20px;
}

.comment-time {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.reply-btn,
.like-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
}

.reply-btn:hover {
    color: white;
}

.like-btn:hover {
    color: #ff0050;
}

.like-btn.liked {
    color: #ff0050;
}

.reply-item {
    padding-left: 56px;
    margin-top: -1px;
}

.reply-avatar {
    width: 24px;
    height: 24px;
    font-size: 11px;
}

.view-replies-btn {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    font-weight: 600;
    margin-top: 8px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.comment-input-area {
    padding: 12px 16px 20px 16px;
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.comment-input-form {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    padding: 6px 14px;
    gap: 10px;
    border: 1px solid transparent;
}

.comment-input-form:focus-within {
    border-color: rgba(255, 0, 80, 0.5);
    background: rgba(255, 255, 255, 0.12);
}

.comment-input-field {
    flex: 1;
    background: none;
    border: none;
    color: white;
    font-size: 14px;
    padding: 6px 0;
    outline: none;
}

.post-comment-btn {
    background: none;
    border: none;
    color: #ff0050;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    padding: 6px 0;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.comment-input-field:not(:placeholder-shown)+.post-comment-btn {
    opacity: 1;
}

.replying-to-banner {
    background: rgba(255, 0, 80, 0.1);
    color: #ff0050;
    padding: 4px 16px;
    font-size: 11px;
    font-weight: 600;
    display: none;
    justify-content: space-between;
    align-items: center;
}

.cancel-reply-btn {
    cursor: pointer;
    font-size: 14px;
}

/* Animations */
@keyframes tiktokSlideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

.comments-modal-container {
    animation: tiktokSlideUp 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (max-width: 480px) {
    .comments-modal-container {
        max-width: 100%;
        border-radius: 12px 12px 0 0;
    }
}


/* ===== BEAUTIFUL COMMENT MODAL STYLES ===== */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-backdrop {
    animation: fadeIn 0.3s ease-out;
}

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

.modal-content-premium {
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(30px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 24px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(139, 92, 246, 0.1) !important;
    position: relative;
    overflow: hidden;
}

.modal-content-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8b5cf6, #7c3aed, #8b5cf6);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

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

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: rotate(90deg);
}

/* Enhanced Comments Container Scrollbar */
#commentsContainer::-webkit-scrollbar {
    width: 6px;
}

#commentsContainer::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

#commentsContainer::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #8b5cf6, #7c3aed);
    border-radius: 3px;
    transition: background 0.3s ease;
}

#commentsContainer::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #7c3aed, #6d28d9);
}

/* Empty State Styling */
.no-comments-empty {
    text-align: center;
    padding: 3rem 2rem;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
    border-radius: 16px;
}

.no-comments-empty i {
    font-size: 3rem;
    color: rgba(139, 92, 246, 0.3);
    margin-bottom: 1rem;
    display: block;
}

/* Comment Input Focus Effect */
#commentInput:focus {
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2) !important;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content-premium {
        max-width: 95% !important;
        margin: 1rem;
    }
    
    #commentsContainer {
        max-height: 300px !important;
    }
}

@media (max-width: 480px) {
    .modal-backdrop {
        padding: 0.5rem !important;
    }
    
    .modal-inner-padding {
        padding: 1.5rem !important;
    }
    
    .modal-content-premium {
        border-radius: 16px !important;
    }
}


/* ===== COMMENT LIKE ANIMATION ===== */
@keyframes heartPulse {
    0% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.3);
    }
    50% {
        transform: scale(1.1);
    }
    75% {
        transform: scale(1.25);
    }
    100% {
        transform: scale(1);
    }
}

/* Like button states */
.like-comment-btn.liked {
    color: #ef4444 !important;
}

.like-comment-btn.liked i {
    animation: heartPulse 0.6s ease;
}

/* Reply indicator styling */
#replyIndicator {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ===== INLINE COMMENTS SECTION (Events-style) ===== */
.comments-section {
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    display: none;
}

.comments-section.expanded {
    display: block;
}

/* Comments Preview */
.comments-preview {
    padding: 0.5rem 0;
}

.view-all-comments {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.view-all-comments:hover {
    color: #8b5cf6;
}

/* Comments Full */
.comments-full {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.comments-list::-webkit-scrollbar {
    width: 4px;
}

.comments-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

.comments-list::-webkit-scrollbar-thumb {
    background: rgba(139, 92, 246, 0.5);
    border-radius: 2px;
}

.comments-list::-webkit-scrollbar-thumb:hover {
    background: rgba(139, 92, 246, 0.7);
}

/* Comment Item */
.comment-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: background 0.3s ease;
}

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

.comment-item.reply {
    margin-left: 2.5rem;
    background: rgba(139, 92, 246, 0.05);
}

.comment-item.preview {
    padding: 0.5rem 0;
    background: transparent;
}

.comment-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

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

.comment-text {
    margin-bottom: 0.5rem;
}

.comment-user {
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    margin-right: 0.5rem;
}

.comment-message {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    word-wrap: break-word;
}

.comment-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.comment-time {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
}

.comment-action {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s ease;
}

.comment-action:hover {
    color: #8b5cf6;
}

/* Heart Like Button */
.comment-like-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: all 0.3s ease;
}

.comment-like-btn:hover {
    color: #ef4444;
    transform: scale(1.1);
}

.comment-like-btn.liked {
    color: #ef4444;
}

.comment-like-btn i {
    font-size: 1rem;
}

.comment-like-btn .like-count {
    font-size: 0.75rem;
    font-weight: 600;
}

/* Comment Input Section */
.comment-input-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.comment-input-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
}

.comment-input-container:focus-within {
    border-color: rgba(139, 92, 246, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.comment-input {
    flex: 1;
    background: none;
    border: none;
    color: white;
    font-size: 0.875rem;
    padding: 0.25rem 0;
    outline: none;
}

.comment-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.post-comment-btn {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.post-comment-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.post-comment-btn i {
    font-size: 0.75rem;
}

/* Responsive */
@media (max-width: 768px) {
    .comment-item.reply {
        margin-left: 1.5rem;
    }
    
    .comments-list {
        max-height: 300px;
    }
}

