/* Enhanced Custom Styles */
        body {
            background: #1a1a1a;
            color: #ffffff;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .plant-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 8px;
            border-radius: 8px;
            border: 2px solid #333;
            background: #2a2a2a;
            cursor: pointer;
            transition: all 0.2s;
            min-height: 100px;
            justify-content: center;
        }
        
        .plant-item:hover {
            border-color: #22c55e;
            transform: scale(1.05);
        }
        
        .plant-item.selected {
            border-color: #22c55e;
            background: #16a34a;
        }
        
        .plant-emoji {
            font-size: 32px;
            margin-bottom: 4px;
            filter: brightness(1.2) contrast(1.1);
        }
        
        .plant-name {
            font-size: 11px;
            text-align: center;
            line-height: 1.2;
            font-weight: 500;
        }
        
        .plant-value {
            font-size: 9px;
            color: #fbbf24;
            font-weight: bold;
            margin-top: 2px;
        }
        
        .modifier-btn {
            background: #374151;
            border: 1px solid #4b5563;
            color: #fff;
            padding: 8px 12px;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s;
            margin: 2px;
            font-size: 12px;
            touch-action: manipulation;
        }
        
        .modifier-btn:hover {
            background: #4b5563;
        }
        
        .modifier-btn.active {
            background: #f59e0b;
            border-color: #f59e0b;
        }
        
        .modifier-btn.hidden {
            display: none;
        }
        
        .category-btn {
            background: #374151;
            border: 1px solid #4b5563;
            color: #fff;
            padding: 8px 16px;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s;
            margin: 4px;
            touch-action: manipulation;
        }
        
        .category-btn:hover {
            background: #4b5563;
        }
        
        .category-btn.active {
            background: #22c55e;
            border-color: #22c55e;
        }
        
        .slider {
            width: 100%;
            height: 6px;
            border-radius: 3px;
            background: #374151;
            outline: none;
            opacity: 0.7;
            transition: opacity 0.2s;
        }
        
        .slider:hover {
            opacity: 1;
        }
        
        .slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: #22c55e;
            cursor: pointer;
        }
        
        .plant-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
            gap: 12px;
            padding: 20px;
            border: 2px solid #374151;
            border-radius: 12px;
            background: #1f2937;
        }
        
        .plant-grid-container {
            max-height: 600px;
            overflow-y: auto;
            border-radius: 12px;
        }
        
        .plant-grid-container::-webkit-scrollbar {
            width: 8px;
        }
        
        .plant-grid-container::-webkit-scrollbar-track {
            background: #374151;
            border-radius: 4px;
        }
        
        .plant-grid-container::-webkit-scrollbar-thumb {
            background: #22c55e;
            border-radius: 4px;
        }
        
        .plant-grid-container::-webkit-scrollbar-thumb:hover {
            background: #16a34a;
        }
        
        .search-container {
            position: relative;
            max-width: 400px;
            margin: 0 auto 20px;
        }
        
        .search-input {
            width: 100%;
            background: #374151;
            border: 2px solid #4b5563;
            color: #fff;
            padding: 12px 16px 12px 48px;
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.2s;
        }
        
        .search-input:focus {
            outline: none;
            border-color: #22c55e;
        }
        
        .search-input::placeholder {
            color: #9ca3af;
        }
        
        .search-icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: #9ca3af;
        }
        
        .clear-search {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: #9ca3af;
            cursor: pointer;
            padding: 4px;
            transition: color 0.2s;
        }
        
        .clear-search:hover {
            color: #22c55e;
        }
        
        .mutation-search-container {
            position: relative;
            max-width: 300px;
            margin: 0 auto 15px;
        }
        
        .mutation-search-input {
            width: 100%;
            background: #374151;
            border: 2px solid #4b5563;
            color: #fff;
            padding: 10px 14px 10px 40px;
            border-radius: 6px;
            font-size: 14px;
            transition: border-color 0.2s;
        }
        
        .mutation-search-input:focus {
            outline: none;
            border-color: #f59e0b;
        }
        
        .mutation-search-input::placeholder {
            color: #9ca3af;
        }
        
        .mutation-search-icon {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: #9ca3af;
            font-size: 14px;
        }
        
        .mutation-clear-search {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            color: #9ca3af;
            cursor: pointer;
            padding: 2px;
            transition: color 0.2s;
        }
        
        .mutation-clear-search:hover {
            color: #f59e0b;
        }
        
        @media (max-width: 768px) {
            .plant-grid {
                grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
                gap: 8px;
                padding: 10px;
            }
            
            .plant-item {
                min-height: 85px;
                padding: 6px;
            }
            
            .plant-emoji {
                font-size: 28px;
            }
            
            .plant-name {
                font-size: 10px;
            }
            
            .plant-value {
                font-size: 8px;
            }
        }
        
        .result-display {
            background: linear-gradient(135deg, #1f2937, #374151);
            border: 2px solid #22c55e;
            border-radius: 12px;
            padding: 20px;
            margin: 20px 0;
        }
        
        .calculation-details {
            background: #374151;
            border-radius: 8px;
            padding: 16px;
            margin-top: 16px;
            font-size: 14px;
        }
        
        .plant-list-item {
            background: #374151;
            border-radius: 8px;
            padding: 12px;
            margin: 8px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .mobile-menu {
            transform: translateX(-100%);
            transition: transform 0.3s ease-in-out;
        }
        
        .mobile-menu.open {
            transform: translateX(0);
        }
        
        .nav-btn {
            background: #374151;
            border: 1px solid #4b5563;
            color: #fff;
            padding: 12px 20px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;  
            font-weight: 500;
            touch-action: manipulation;
        }
        
        .nav-btn:hover {
            background: #4b5563;
        }
        
        .nav-btn.primary {
            background: #3b82f6;
            border-color: #3b82f6;
        }
        
        .nav-btn.primary:hover {
            background: #2563eb;
        }
        
        .nav-btn.discord {
            background: #5865f2;
            border-color: #5865f2;
        }
        
        .nav-btn.discord:hover {
            background: #4f46e5;
        }
        
        .footer-link {
            color: #9ca3af;
            text-decoration: none;
            transition: color 0.2s;
        }
        
        .footer-link:hover {
            color: #22c55e;
        }
        
        .footer-section {
            margin-bottom: 2rem;
        }
        
        @media (min-width: 768px) {
            .footer-section {
                margin-bottom: 0;
            }
        }
        
        .weight-mode {
            background: #22c55e !important;
            border-color: #22c55e !important;
        }
        
        .weight-mode-indicator {
            background: #22c55e;
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: bold;
            margin-left: 10px;
        }
        
        /* FAQ Accordion Styles */
        .faq-item {
            background: #374151;
            border-radius: 8px;
            margin-bottom: 12px;
            overflow: hidden;
        }
        
        .faq-question {
            background: #4b5563;
            color: white;
            padding: 16px 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s;
        }
        
        .faq-question:hover {
            background: #6b7280;
        }
        
        .faq-question.active {
            background: #22c55e;
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, padding 0.3s ease-out;
        }
        
        .faq-answer.active {
            padding: 20px;
            max-height: 500px;
        }
        
        .faq-icon {
            transition: transform 0.3s;
        }
        
        .faq-question.active .faq-icon {
            transform: rotate(180deg);
        }
        
        .stats-display {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 12px;
            margin-top: 12px;
        }
        
        .stat-item {
            background: #4b5563;
            padding: 12px;
            border-radius: 6px;
            text-align: center;
        }
        
        .stat-label {
            font-size: 12px;
            color: #9ca3af;
            margin-bottom: 4px;
        }
        
        .stat-value {
            font-size: 16px;
            font-weight: bold;
            color: #22c55e;
        }
        
        /* No results message */
        .no-results {
            text-align: center;
            padding: 40px 20px;
            color: #9ca3af;
            font-style: italic;
        }
        
        /* PDF Optimization */
        @media print {
            body {
                background: white !important;
                color: black !important;
            }
            
            .plant-grid-container {
                max-height: none !important;
                overflow: visible !important;
            }
            
            .mobile-menu {
                display: none !important;
            }
            
            header {
                position: static !important;
            }

        }

        * Extra styles for static pages */
.page-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 40px 20px;
    line-height: 1.7;
}

.page-title {
    font-size: 2rem; /* बड़ा */
    font-weight: bold;
    color: #22c55e;
    margin-bottom: 1rem;
    text-align: center;
}

.section-title {
    font-size: 1.4rem; /* h3 से बड़ा */
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
    color: #fbbf24;
}

.page-text {
    font-size: 1rem;
    color: #d1d5db;
    margin-bottom: 1rem;
}
